Play game
Minesimulator's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Fun - Did you have a good experience? | #17 | 2.167 | 3.250 |
Creativity - Was the idea good? | #18 | 2.500 | 3.750 |
Functionality - Did it work, were there any major bugs? | #19 | 2.333 | 3.500 |
Overall | #20 | 1.800 | 2.700 |
Appearance - How were the graphics/art? | #23 | 1.333 | 2.000 |
Sounds - Did sound make the game better? | #24 | 0.667 | 1.000 |
Ranked from 4 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
A bold idea to separate the UI into a text window for output and a separate UI window for input. But I think it would be more user-friendly to unify those in the same window.
The game idea is nice, but I felt a lot like the game killed me off randomly even though I didn't make a mistake (at least none which was obvious to me). Frustrating deaths which aren't the player's fault is something you might want to avoid.
Like minecraft but without the time investment, i like it! The text adventure style was a nice change of pace and having GamerSkill as a stat was really funny to me.
"Due to dug straight down into lava player got the foolish mistake ending" :(
I did win once by killing the enderdragon, but only by chance. It's a nice minecraft-player simulator even though the UI is crude.
Thanks for the feedback. I'll go for a better UI next time.
Sorry, but I couldn't get it to run. Can you maybe add some detailed instructions how to run it for people who have never worked with Python before?
As I said in the game description, this is a Python file, so you will need python installed. You can download the version for your OS here: https://www.python.org/downloads/. Make sure you download version 3.x (the latest is 3.7), as it will not work with version 2.x (sorry).
Extract the minesimulator.zip file attached to the game into a folder. Make sure all three included files are present.
I have not used any external libraries so you should definitely be OK to run it as long as you have a normal installation of Python.
I tried to run it in the command line and got an error message:
You are using Python 2.x.
In this version the tkinter module is called Tkinter (note the capital T). You can either download version 3.x, or rewrite in the files where you see tkinter to Tkinter.
If I enter "python --version" (in the same directory) it says " Python 3.7.4". Running a Search&Replace over all 3 files to change "tkinter" to "Tkinter" did not help either. Same error message, but now it complains about Tkinter not found with a capital T:
Hmmmm...
The tkinter module is part of the standard Python library so it is extremely usual that you do not have it (neither tkinter nor Tkinter). You may have renamed the tkinter file. The only think I can think of then is to reinstall Python.
I'm sorry you weren't able to play the game without troubles. I'll make sure to pack my game into a directly executable file next time.
I solved it: When I installed Python I selected the option to only install py launcher and not IDLE. For some reason, tkinter is only bundled with the development environment.
I might post a comment about the game itself later.
Simple game - reminds me of the type of games we used to type in from magazines many years ago. Kept me entertained for a while working out the criteria of the game.
I'm glad you enjoyed it.