Day 6 - Finished!

Managed to complete on time!(but still didn't work on a lot of details :(

I'm recording the walkthrough for each ending tomorrow, the game is being packaged and uploaded at the moment!


(log in to comment)

Comments

Hi!
The game won't work for me as is:

Traceback (most recent call last):
File "run_game.py", line 1, in <module>
from game import *
File "/home/terka/pyweek/29/29/nothing-suspicious-here/NothingSuspiciousHere/game.py", line 1, in <module>
from map import *
File "/home/terka/pyweek/29/29/nothing-suspicious-here/NothingSuspiciousHere/map.py", line 1, in <module>
from config import *
File "/home/terka/pyweek/29/29/nothing-suspicious-here/NothingSuspiciousHere/config.py", line 18, in <module>
font1 = pygame.font.Font("fonts\\AmaticSC-Regular.ttf", 25)
FileNotFoundError: [Errno 2] No such file or directory: 'fonts\\AmaticSC-Regular.ttf'

Only Windows uses backslashes for directory separators. Consider using os.path.sep instead.

Hi encukou, I'm so sorry about that! I will make another version that uses os.path.join instead.

Thank you very much for letting me know, I will make sure that this will be taken care of for my future entries!