It looks interesting but it's easily crashed by pressing 3 at the start on my computer.
Side Note: It looks like your game state is just global variables and `goto` statements in a windows batch file. I'm not sure whether to be impressed or horrified.
Hi! Euhh... I think there is a story here my friend, unity was not coorperating I suspect? I like how you pivoted to submitting a batch file instead. There were two big bugs that made it impossible to play though:
- milkLevel was not defined, so option 3 would always crash. Adding this to line 4 will resolve that issue: `set /a milkerLevel=1` - the file was encoded in UTF8, instead of ANSI. Windows does not like that and the whole thing would not display properly. `@echo off` was ignored for instance
Some other issues I found: - When upgrading right away the game crashes, because the totalMilk is not defined - The milkerLevel does not seem to do anything to the amount of milk milked each round
Sorry, I like that you submitted a game, but after prssing 1 2 3 and 4 a few times the fun was over for me. I had fun getting out all the issues though! :smiley:
Comments4
Side Note: It looks like your game state is just global variables and `goto` statements in a windows batch file. I'm not sure whether to be impressed or horrified.
- milkLevel was not defined, so option 3 would always crash. Adding this to line 4 will resolve that issue: `set /a milkerLevel=1`
- the file was encoded in UTF8, instead of ANSI. Windows does not like that and the whole thing would not display properly. `@echo off` was ignored for instance
Some other issues I found:
- When upgrading right away the game crashes, because the totalMilk is not defined
- The milkerLevel does not seem to do anything to the amount of milk milked each round
Sorry, I like that you submitted a game, but after prssing 1 2 3 and 4 a few times the fun was over for me. I had fun getting out all the issues though! :smiley: