Mod Cheat Mod Ren'Py Nephilim Multi Mod[Duke Knox]

4.50 star(s) 2 Votes

Are you interested in the UI enhancement mod?


  • Total voters
    438
  • Poll closed .

Knox_

Member
Modder
Oct 1, 2023
284
1,120
276
Wanted to let you know I just got and error message when using your mod. I get to the third visit with Maia for the soul binding and when it comes time to verify I get an error message that says name 'mai_relationship' is not defined. I know the developer changed the code and I believe this has affected your code. I am sending you a save file so you can replicate and fix the error. I also only used your mod.
View attachment 5325501
The error means the variable mai_relationship isn’t defined in the latest version of the game - the developer probably changed the variable name in the code.

You can do a quick temporary fix by opening the Ren’Py console (Shift + O) and typing:

mai_relationship = 0

That’ll let you continue your save for now.

For a permanent fix, create a file named myfix.rpy inside game folder and open it using a text editor then include an initialization line like this:
Python:
init python:
    if "mai_relationship" not in globals():
        mai_relationship = 0

This ensures the variable is always defined even if the base game code changes again.
 

Jhustla

Newbie
Jul 3, 2018
57
118
143
Your temp fix moves the scene on but does not give us the scenes for the soul binding. She just tells him to leave her alone and he leaves. It does move the game on though. After removing the mod I was able to get the scenes. Hopefully this is fixed in the next game version release. Thanks for the help.
 

Knox_

Member
Modder
Oct 1, 2023
284
1,120
276
Your temp fix moves the scene on but does not give us the scenes for the soul binding. She just tells him to leave her alone and he leaves. It does move the game on though. After removing the mod I was able to get the scenes. Hopefully this is fixed in the next game version release. Thanks for the help.
Setting mai_relationship = 0 only stops the error, but maybe the scene triggers only if that value is True and the variable is a boolean(or above 0 depending on the script).
try setting:
mai_relationship = True
 

betazu

Newbie
Sep 27, 2017
29
20
207
Setting mai_relationship = 0 only stops the error, but maybe the scene triggers only if that value is True and the variable is a boolean(or above 0 depending on the script).
try setting:
mai_relationship = True

Hey this does work wonders for me! thank you so much!
 
4.50 star(s) 2 Votes