Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

EnteredView game page

Submitted by Ladybug Studios — 3 days, 1 hour before the deadline
Add to collection

Play game

Entered's itch.io page

Results

CriteriaRankScore*Raw Score
Innovation#1851.5161.750
Theme#1921.2991.500
Gameplay#1931.4431.667
Graphics#1971.1551.333
Audio#1980.9381.083
Overall#1981.2701.467

Ranked from 12 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted(+1)

Nice idea to create a console game. It lags quite a bit, which is a pitty for a "clicker" game. I also got quite often the "Sorry you cant afford this upgarde yet" message eventhough I did not try to purchase anything.

I did see that you upgraded the game after the submission, right? Of course you could do that if you host it externally, but I think it is a bit unfair. Having bugs in the game you could not fix in time is part of a game jam.

Developer

The lag is caused by Replit's servers

Developer

I think that the cant afford upgrde message pops up due to the fact that it runs through the conditional statment that checks that they can afford an upgrade

Submitted(+1)

Super laggy, but fun! I can just hold enter and I'm the world's first trillionaire!

Developer

the lag issue happens when you spam enter

Submitted(+1)

I don't know what to do after 60s I got spammed with ">" all the way down. After that, there is error log.

Developer (1 edit)

was it keybord interupt?

if so, refresh browser and try again as the server was overloaded with requests 

don't spam enter on athe last 10 secs of typing time as python expects an INT for the score 

Submitted(+1)

Pro tip: you can hold down Enter.

Developer (1 edit)

Yes you could do that but LAG/latency will be a side effect or risk a syntax error!

Host(+1)

Can you mark it as a web game with the "play in browser" option? Otherwise it will be removed, and I already see the link itself is working fine.

Developer

I will try and do this

Developer

it should now work 

Developer (1 edit) (+1)

it is marked as play in browser on my dashboard so should not need to be removed 

please let me know if i need to do anything else

Host(+1)

Looks good.

Developer

great!

thanks for your help end3r!

Submitted(+1)

Interesting game, playing it I noticed some good and bad parts about it. 

The good parts:

1. The game looks great.

2. The interface is well designed.

3. The game is well made.

4. The fact that it takes you to another page so that you can run the game was not a problem for me, because the interface of that page was easy to understand.


The bad parts:

1. The game moves slowly, I mean I kept pressing Enter for 10 seconds and I think I accumulated enough Enters, but it takes forever to list them on the screen.

2. The game always displays the following sequence which I did not understand how to get rid of it (perhaps because the game lacks a tutorial): 

"for the upgrade shop type 'shop'

Sorry, you can't afford this upgrade yet

Gamedev.js Jam 2023

The theme is 'TIME' and this is how we have implemented the theme - Typing Time!

If you want to play 'Typing Time', type 'TIME' (case sensitive, all caps)

clicks: 31

click power: 1"

3. The game has the following error that I have not been able to fix (it appears with every enter:

"Traceback (most recent call last):

  File "main.py", line 177, in <module>

    time.sleep(3)

KeyboardInterrupt"


The game is ok, but it deserves a closer check considering that those who are going to play are people who know nothing about the game and when such an error appears, they don't know how to fix it.

Developer(+1)

I think the lag issue is due to replit's servers

there seems to be an bug where python thinks you wanted to purchase an upgrade but can't afford it.

in will look at the program and remove the syntax error if i can

Thanks for playing Entered and for your feedback and bug report

Ladybug studios

Developer(+1)

I have removed the delay in line 177. try Entered V1.1 

Developer(+1)

Heere is some information on The error


KeyboardInterrupt exception is a part of Python’s built-in exceptions. When the programmer presses the ctrl + c or ctrl + z command on their keyboards, when present in a command line(in windows) or in a terminal(in mac os/Linux), this abruptly ends the program amidst execution

Developer(+1)

The sequence is programmed to always display

Here is an extrct from the  code

this is indented into a while loop

print("clicks: ",clicks)

    

  print("click power: ",click_power)

  test=input()

  clicks=clicks+click_power

  print("for the upgrade shop type 'shop'")