Cake3Purple6Cheese948
Active Member
- Mar 9, 2023
- 521
- 156
- 166
currently, the faster way is to work at the gloryholeHow do I increase my character slut reputation?
if in your save you do get teleported there at the end of your day. Restart and buy a drink at the pit before.Anyone know how to enter the BJ contest that is announced right at the beginning. Thanks
Worked perfectly. Thanksif in your save you do get teleported there at the end of your day. Restart and buy a drink at the pit before.
Thank you for your feedback. I will check it out asapYou may want to know this.
Some variable stays even when you override a save.
I started a new save to get to the events i missed in my first run. But since i took the first savefile again, i didn't get the BJ contest, the pit night, the fat nerd, or Halloween which i wanted to see since unlike the 2 others the game didn't put me in front of it. Instead, I still had comments about my win in the contest. Furthermore, the shop guy didn't show up in this new save.
Oh and same bug as everyone for the terminal.
Oh and you can't buy an item twice at the dealer until you fully consumed it, don't know if it's voluntary.
And i tried to get into debt (0 balance), first day, ended up in a loop with julien since i can't choose a task after refusing veronica.
Anyone who getting terminal crashes, just put this file in `/game`.
for game maker `detect_dlc()` returns before `persistent.dlc_flags` is made. Always make it empty since this function is to check if a DLC is there, if a DLC gets removed it should clear when this function is run as well.
Also, you need to run this more than when the game starts. You should run this whenever the game loads. I wouldn't call this very often since it has to access the system's files and that can be a little expensive. Not allowing DLC to be installed on a old save sucks.
Also you are using an if chain to detect if a file exist in the dlc folder.
Just do what I did here.
Remove the extension and just save the file was found. This now runs the same speed for every new DLC you add. The more DLC you add, the more if statements you need to run this. Even if a file is found that's not a DLC name, it doesn't matter if we save it, because the code only checks if a certain name is found anyway.Code:for filename in dlc_files: period_location = filename.rfind('.') if period_location == -1: continue file_no_ext = filename[:period_location] persistent.dlc_flags[file_no_ext] = True
If you want a dlc name to be different, or really want to only save what is valid, use a dict instead.
Example
Code:dlc_names = { "dlc1.rpa": "The Best DLC", "dlcafdhajlweh.rpa": "The Final DLC", "cool.rpa": "The real Final DLC" } for filename in dlc_files: if filename not in dlc_names: continue dlc = dlc_names[filename] persistent.dlc_flags[dlc] = True
Bug with the game it self, he never added it in I believe.Thx for the DLC error fix, although when you have contract you are still expelled.
also after abortion couldn't get her pregnant again..
"preg_sponsorship_contract": Item(
name="Pregnancy Sponsorship Contract",
description="Official contract recognizing your pregnancy as part of a sanctioned program. Prevents expulsion.",
icon="gui/items/pregsponsorshipcontract.png",
cost=25000,
category="other",
blacklist_flag="has_sponsorship",
usable_from_inventory=False,
effect_data={
"message": " You’ve entered a pregnancy sponsorship agreement. Terms accepted. Benefits will be applied automatically.",
"effects": [{
"type": "set_flag",
"stat": "has_sponsorship"
}]
}
),
elif player.days_pregnant >= 125 and not player.pregnant_sponsor:
comic? This is a game using IAWhere can I find this comic?
I for one would love if we could make our MC a futa. Then we can knock up all the girls trying to be bullies. Satisfying revenge I thinkIf it’s requested by the community, why not
Removing Clover’s event (until later in the story with the introduction to how to win) and other irritants are my top priority for next versionI tried starting it again, and I still think the game is great until I get to the clover minigame, that's when it stops being fun.
Glad to hear that, thanks.Removing Clover’s event (until later in the story with the introduction to how to win) and other irritants are my top priority for next version
You are right, I used the wrong flag.It should beBug with the game it self, he never added it in I believe.
View attachment 5136140Python:"preg_sponsorship_contract": Item( name="Pregnancy Sponsorship Contract", description="Official contract recognizing your pregnancy as part of a sanctioned program. Prevents expulsion.", icon="gui/items/pregsponsorshipcontract.png", cost=25000, category="other", blacklist_flag="has_sponsorship", usable_from_inventory=False, effect_data={ "message": " You’ve entered a pregnancy sponsorship agreement. Terms accepted. Benefits will be applied automatically.", "effects": [{ "type": "set_flag", "stat": "has_sponsorship" }] } ),
Code that games you over.
He checks for the wrong flag.Code:elif player.days_pregnant >= 125 and not player.pregnant_sponsor:
Anyway added more files I fixed for this, but uhh, event might be broken.