Play game
Entered's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Innovation | #185 | 1.516 | 1.750 |
Theme | #192 | 1.299 | 1.500 |
Gameplay | #193 | 1.443 | 1.667 |
Graphics | #197 | 1.155 | 1.333 |
Audio | #198 | 0.938 | 1.083 |
Overall | #198 | 1.270 | 1.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
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.
The lag is caused by Replit's servers
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
Super laggy, but fun! I can just hold enter and I'm the world's first trillionaire!
the lag issue happens when you spam enter
I don't know what to do after 60s I got spammed with ">" all the way down. After that, there is error log.
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
Pro tip: you can hold down Enter.
Yes you could do that but LAG/latency will be a side effect or risk a syntax error!
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.
I will try and do this
it should now work
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
Looks good.
great!
thanks for your help end3r!
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.
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
I have removed the delay in line 177. try Entered V1.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
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'")