Create and Fuck your AI Slut -70% OFF
x
3.70 star(s) 19 Votes

PumperFull

Member
Aug 27, 2020
224
262
197
I've just made it to the morning after the MC slept at the Uncle's house. The MC slept on the couch and had morning coffee with Callie... I must say, this "project" seems mellow so far and I don't know what it is but it feels right, just slipping through the content leisurely and enjoying the calmness. I'm sure it'll ramp up later but it's nice... Thanks Virt, if you're here. I appreciate the work you're doing.
 

5mithers

Member
Aug 3, 2019
410
442
206
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?
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
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.
 
  • Like
Reactions: SpasmJack

5mithers

Member
Aug 3, 2019
410
442
206
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.
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.
 

SpasmJack

Newbie
Dec 29, 2024
59
77
67
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.
The most consistent would be
1)
default nierty_name = "Nierty"
2)
if charnames == True:
$ nierty_name = renpy.input("Would you like to change Nierty's name? (Default Nierty)")
$ nierty_name = nierty.strip()
if nierty_name == "":
$ nierty_name="Nierty"

This shit got really funky when I defaulted nierty="nierty" along the way. Deleting the stored variable via console did not persist while both console and URM said it was gone. Defining (as object after deleting string var) did nothing without errors. The variable would return with a vengeance that could not be defined (as object after initialisation :cool:). It think it got cached as default string somewhere because it would only work after deleting the local AND stored variable AND cache AND then restart. Renpy really gave me the middle finger here for something simple...: flushing a variable

In retrospect I probably should have started a new game and default the correct data type...
 
  • Like
Reactions: 5mithers

Woodstock_1983

Engaged Member
Sep 16, 2020
2,925
1,302
278
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.
 

PumperFull

Member
Aug 27, 2020
224
262
197
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 ;)
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 cheers
 
  • Thinking Face
Reactions: dedalo_69

Woodstock_1983

Engaged Member
Sep 16, 2020
2,925
1,302
278
Either the Dev or the one who created the mod needs to fix ALL the error screens, I hate having to ignore and then scroll back and then the screen flicker like it does. I don;t know hose to blame so I'm choosing both lol.
 

Woodstock_1983

Engaged Member
Sep 16, 2020
2,925
1,302
278
I forgot how the game plays out but, I wouldn't be surprised if in the long run, the MC is the most powerful person to ever exist. Even more powerful then the old man Charles lol.
 

Woodstock_1983

Engaged Member
Sep 16, 2020
2,925
1,302
278
I'm curious, is there any wrong choices or game over choices or choices that makes the other girls jealous of each other?
 

5mithers

Member
Aug 3, 2019
410
442
206
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.
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
 

Woodstock_1983

Engaged Member
Sep 16, 2020
2,925
1,302
278
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
How 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.
 

5mithers

Member
Aug 3, 2019
410
442
206
Not really related to my previous comment, but sure, I can help.

find the file renpy/common/00console.rpy

Open it, and go down to line 108: Change false to true.

Code:
    # If true, the console is enabled despite config.developer being False.
    config.console = True
Afterwards, save your changes and start up the game. While in the game press shift+O (basically, uppercase letter O), and you are in the console. Press the ESC key or type "exit" in the console to exit out if it and return to the game.
 
  • Like
Reactions: Woodstock_1983

PumperFull

Member
Aug 27, 2020
224
262
197
Hi dedalo_69
Just letting you know I started the game but held "Shift" and changed the rendering from automatic to the other 2 options, stopping and starting in between each. Then back to Automatic rendering and it seems to work now, I dunno, shit is strange LOL
 
  • Thinking Face
Reactions: dedalo_69
3.70 star(s) 19 Votes