Allan Trumbull
Forum Fanatic
- Sep 10, 2021
- 5,119
- 5,151
- 656
Don't worry - you never ever see her again (or even mention her).View attachment 5228569
If you put in an option to eraze the NTR-background and just have the ex vanish into thin air it should better be that way...![]()
Easy fix:Why does it go from picture 1 to picture 2 with or without the mod?
Another bug in the code. If you go the "I'll name things as I go along" route, there is an error when encountering Nierty.
View attachment 5227018
You try to call the variable while defining said variable. While it can be ignored and you can move on (and it then gets set to the default of Nierty), it's still a glitch in your game that players experience.
Taking another example from the code base (naming Emily's nickname), a quick fix would be:
Code:#Example fix: if charnames == True: $ nierty = renpy.input("Would you like to change Nierty's name? (Default Nierty)") $ nierty = nierty.strip() if nierty == "": $ nierty="Nierty"
Why does it go from picture 1 to picture 2 with or without the mod?
As SpasmJack pointed out: This bit of code is trying to set a variable while calling the variable. That doesn't work. Either set a value for the variable via the console in game, or simply click "ignore" and the game will then set the default value of Nierty afterwards.Easy fix:
1 open console
2 type: nierty = nie
3 hit enter/return
4 go outside
5 yell at the sun (important step!)
6 go back inside
7 play game
This is why it's always good to playtest your game with completely nonsensical variable values so you can spot when something was hard-coded vs. properly reading in the variable. I.e. Don't use the default of "Master", use Goofball,Numbnuts, etc. Does it break immersion? Sure. But that's not what play testing is for. Play testing is for spotting bugs.There's some "Daddy" stuff with Emily too, that comes up even if daddy is turned off, but I think they might be pathing issue.
The most consistent would beAs SpasmJack pointed out: This bit of code is trying to set a variable while calling the variable. That doesn't work. Either set a value for the variable via the console in game, or simply click "ignore" and the game will then set the default value of Nierty afterwards.
Heya Dedalo, just letting you know that the game won't let me do anything now. I can't use old saves, or even start a new game. The game launches but as soon as you try to use any of the buttons the game stops. Hopefully you can fix it. Thanks and cheersHi guys, I created this simple WT Mod for those who want to make their life easier in the game.
I hope you like it...
See you next time![]()
WT is glitched as, many apparently missing images. But in realty its problem with wt because without it game works fine!Hi guys, I created this simple WT Mod for those who want to make their life easier in the game.
I hope you like it...
See you next time![]()
I don't believe it's flickering. I believe it's missing images. See my previous posts about it. If you look in the top left it will say something like:Why does the game flicker when the scenes where the MC talks to the vampire and the princess about bringing too much to the Elves? The words shows but it flickers from the scene to a black screen constantly.
image images/ADay_7/ad7s2a02.webp not foundHow do you open the console? I'm tired of people saying to open a console to a game but doesn't describe how to open them.I don't believe it's flickering. I believe it's missing images. See my previous posts about it. If you look in the top left it will say something like:image images/ADay_7/ad7s2a02.webp not found
renpy/common/00console.rpy # If true, the console is enabled despite config.developer being False.
config.console = True