Ren'Py Help me solve this problem

Pinkchutlover

New Member
Apr 23, 2023
4
0
I'm sorry, but an uncaught exception occurred.


While running game code:


File "renpy/common/00start.rpy", line 282, in script python:


ScriptError: could not find label 'start'.


-- Full Traceback --


Full traceback:


File "renpy/bootstrap-py", line 331, in bootstrap renpy. main main ()


File "renpy/main-py", line 662, in main


run(restart)


File "renpy/main-py", line 148, in run renpy execution. run context (True)


File "renpy/execution.py", line 922, in run context context. run ()


File "renpy/common/00start.rpy", line 282, in script python:


File "renpy/script-py", line 918, in lookup


raise ScriptError("could not find label "%s'." % str(original))


ScriptError: could not find label 'start'.


Windows-10-10.0.22621


Ren'Py 7.4.11.2266
 

TheSirMister

New Member
Aug 18, 2021
2
0
This likely results from yourself not having a "start" label.

The entrance point of a Ren'Py program is the start label. That's similar to a main function in e.g. Java, C++, etc.

So to fix it you will need to define a start label, optimally in a "script.rpy" file.

So create a script.rpy and create a start label:

Python:
label start:
  # Your story starts here
 

Pinkchutlover

New Member
Apr 23, 2023
4
0
This likely results from yourself not having a "start" label.

The entrance point of a Ren'Py program is the start label. That's similar to a main function in e.g. Java, C++, etc.

So to fix it you will need to define a start label, optimally in a "script.rpy" file.

So create a script.rpy and create a start label:

Python:
label start:
  # Your story starts here
Thanks