Good day everyone,
So... Apparently there is a bit of content with Tsunade as the nurse, according to the game files, however, since nobody has been able to solve the renpy issue with the nursery room trigger, we haven't been able to see it through normal gameplay.
I don't know if anyone, who's more knowledgable about renpy than me can help us fix this, but its apparently something really simple (You are trying to call or execute the function before it was defined), at least from what I could get.
PLEASE, someone help us modify that goddamn file.
Here's my source >
You must be registered to see the links
Error (shortened traceback):
```
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/tmap/Map2.rpy", line 127, in <module>
NameError: name 'nursetriggers' is not defined
File "tmap/Map.rpyc", line 499, in script call
File "tmap/Map2.rpyc", line 127, in script
File "C:\Users\earh_\Documents\Personal\ParodySexLife-v0.40-pc\renpy\ast.py", line 1131, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "C:\Users\earh_\Documents\Personal\ParodySexLife-v0.40-pc\renpy\python.py", line 1061, in py_exec_bytecode
exec(bytecode, globals, locals)
File "game/tmap/Map2.rpy", line 127, in <module>
NameError: name 'nursetriggers' is not defined
Example in code of a solution for these kinds of errors; The error is on the definition of the trigger, which you can find, after decompiling the script, on the file bonuscharacterstuff.rpy
Try to alter the order of the 2 parts:
def nursetriggers():
if fprotag == False:
if bonuscharacter == 3:
store.bsextime()
store.b3 = True
renpy.call("tsunade")