Basically, I made a game as a test, and when I logged out, went back in and tried to play it it wouldn't start, claiming that "start was defined twice" (I'm sorry, I didn't save the error messages and deleted the game.) After some messing around with the code, I discovered that the problem was that all the games I made were being saved as sub-folders in the "the_question" directory (the demo game that came with Ren'Py. I didn't have time to fix it then and deleted my game because I had messed up my script trying to find the error.
So I tried to make another game, and it did the same thing--the game directory was being saved in the "the_question" directory, and so start was being defined in the "the_question" game script and in my new game script; so naturally it couldn't run. I moved my new script into the Ren'Py folder, but then when I tried to launch it, it gave me the following traceback:
Code: Select all
I'm sorry, but an uncaught exception occurred.
WindowsError: [Error 3] The system cannot find the path specified: "C:\\Users\\Maya Pillay\\renpy-6.11.2\\the_question\\game\\Anandhi's bday/*.*"
Before loading the script.
-- Full Traceback ------------------------------------------------------------
File "C:\Users\Maya Pillay\renpy-6.11.2\renpy\bootstrap.py", line 270, in bootstrap
File "C:\Users\Maya Pillay\renpy-6.11.2\renpy\main.py", line 144, in main
WindowsError: [Error 3] The system cannot find the path specified: "C:\\Users\\Maya Pillay\\renpy-6.11.2\\the_question\\game\\Anandhi's bday/*.*"
Before loading the script.
Ren'Py Version: Ren'Py 6.11.2bSo I can only have one game at a time--writing one game, then writing another, is impossible as they are all being saved in the same directory, and if I try to move them out, ren'py cannot find the file.