- Aug 26, 2017
- 75
- 62
Quick coding lesson.You don't have permission to view the spoiler content. Log in or register now.Code:I'm sorry, but an uncaught exception occurred. While running game code: File "game/chapter10.rpy", line 336, in script T "*FUCK FUCK FUCK! Guess I now have to deal with the consequences of my stupid actions!*" Exception: Sayer 'T' is not defined. -- Full Traceback ------------------------------------------------------------ Full traceback: File "game/chapter10.rpy", line 336, in script T "*FUCK FUCK FUCK! Guess I now have to deal with the consequences of my stupid actions!*" File "Z:\Users\thoriverson\Documents\v\TheAdventurousCouple-pc\renpy\ast.py", line 624, in execute who = eval_who(self.who, self.who_fast) File "Z:\Users\thoriverson\Documents\v\TheAdventurousCouple-pc\renpy\ast.py", line 537, in eval_who raise Exception("Sayer '%s' is not defined." % who.encode("utf-8")) Exception: Sayer 'T' is not defined. Windows-XP-5.1.2600-SP3 Ren'Py 6.99.14.2.3333 Chapter 10 Thu Jan 10 01:38:19 2019
Open chapter10.rpy under \game\ using Notepad++ (lets you see line numbers).
Variables in Ren-Py are case sensitive. Go to line 336 and change the "T" to a "t" at the beginning of the line.
Save the file, delete chapter10.rpyc and restart the game. It will build a new chapter10.rpyc.