http://www.otome-games.com/index.php/ma ... l=&start=6
It says to make it easier to choices menu scene I could create a new file, scenes.rpy and I did but..
When I run the game it kept saying an exception has occurred and I'm not sure what I've did wrong because I follow everything from there.
While running game code:
File "game/script.rpy",line 30, in script call
File "game/script.rpy", line 30, in script call
ScriptError: could not find label 'day1'.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "C:\Users\ASUS\Downloads\renpy-6.15.2-sdk\renpy\execution.py", line 288, in run
node.execute()
File "C:\Users\ASUS\Downloads\renpy-6.15.2-sdk\renpy\ast.py", line 1147, in execute
rv = renpy.game.context().call(label, return_site=self.next.name)
File "C:\Users\ASUS\Downloads\renpy-6.15.2-sdk\renpy\execution.py", line 365, in call
return renpy.game.script.lookup(label)
File "C:\Users\ASUS\Downloads\renpy-6.15.2-sdk\renpy\script.py", line 537, in lookup
raise ScriptError("could not find label '%s'." % str(label))
ScriptError: could not find label 'day1n'.
Windows-7-6.1.7601-SP1
Ren'Py 6.15.2.281
A Ren'Py Game 0.0
(script)
Code: Select all
m "Oh between I'm going to this cafe with my friends."
m "Wanna tag along?"
menu:
"Sure.":
call day1
"Nah, I've homeworks to do.":
call day1n
n "Well then time to head home."
n "Mom, I'm home."Code: Select all
label day1:
n "..."
return
label day1n:
m "Bummer."
return