IDontGetWomen

Active Member
Sep 9, 2021
562
903
I'm sorry but games this large in file size unironically should default have a mega download or something. gofile gets too busy and then the other options are 8 hour long downloads lmao. Which is weird because the splits have mega downloads (but it's the old version) but the big one doesn't?
 

Pif paf

Engaged Member
Jr. Uploader
Feb 5, 2018
2,996
1,961
JGNeon's Walkthrough mod for Baddies Inc v0.1.13

Overview:
Partially based on LaikDink's previous mod, but with best choices highlighted, also in non-text choices
(And sometimes, a flag is set to true/yes doesn't necessarily means the best choice)​

Updated: 2025-01-05
Modder: JGNeon
Game Version: v0.1.13
Language: English

Features:
  • Walkthrough, highlights choices

Installation:
You don't have permission to view the spoiler content. Log in or register now.

Changelog:
You don't have permission to view the spoiler content. Log in or register now.

Download: -
Awesome ! (im)Patiently waiting for your update!
 

SonsOfLiberty

Discussion Dynamo
Compressor
Sep 3, 2022
25,509
221,769
Baddies Inc. [v0.1.14] [FOZ]

COMPRESSED:

Win/Lilnux:
- - -

Mac:
- - -
 
Last edited:

Raziel_8

Forum Fanatic
Dec 4, 2017
4,082
10,713
So, that point about ''reworked variables'', does this means he fixed all the errors, did he stop using persistant saves for all choices (like any normal dev), or was he just messing arround with some variables without adressing the real problems ?
 
  • Thinking Face
Reactions: onefingersalute

MixQQ

Active Member
Sep 8, 2019
665
3,613
So, that point about ''reworked variables'', does this means he fixed all the errors, did he stop using persistant saves for all choices (like any normal dev), or was he just messing arround with some variables without adressing the real problems ?
unfortunately these fucking variables are still broken :FacePalm: it's not possible to have multiple saves with different choices (n)

thankfully there is URM mod and we can easy change them..
 
  • Like
Reactions: Raziel_8

Raziel_8

Forum Fanatic
Dec 4, 2017
4,082
10,713
unfortunately these fucking variables are still broken :FacePalm: it's not possible to have multiple saves with different choices (n)

thankfully there is URM mod and we can easy change them..
Yeah, it's not fun to play thought, if you constantly need to check if the choices are all set/checked correctly...
So, what did he actually change at the variable system, if he neither fixed the errors, nor the persistent save crap ?
 
Last edited:
  • Thinking Face
Reactions: MixQQ

jonquilnatrix

Member
Feb 27, 2024
113
652
Yeah, it's not fun to play thought, if you constantly need to check if the choices are all set/checked correctly...
So, what did he actually change at the variable system, if he neither fixed the errors, nor the persistent save crap ?
So basically as far as variables all I'm seeing is that he is now calling "$ renpy.save_persistent()" after setting each variable. That basically just tells the game to immediately write to the persistent file each time a variable is changed, otherwise persistent variables are only saved when Renpy exits, so if there is crash or improper exit the variables would end up never being saved which if you then loaded a save afterwards could result in the persistent variable having it's default value instead of whatever you selected.
----

Anyways for the heck of it I used UnRen/Notepad++ to change all the script files to use regular variables instead of persistent if anyone wants to try it. Of course this will mean having to start a new game the first time as all of the base variables are starting off with no value. But it will allow you to have multiple path saves if that's what you really desire. Also note that you will need to either modify future script versions yourself or wait for someone else to do it. (It seriously takes less than five minutes if you have all the necessary stuff on your computer) I'll try to keep up with it, but can't guarantee that I can always get to it as soon as it's posted.


How to do it yourself:
1) Download an version of UnRen into either the BaddiesInc root folder (if using UnrenForAll) or "game" subfolder (if using Unren.bat) subfolder. Launch it and select extract RPAs. (Your choice about deleting the RPAs. I usually choose yes as it makes things cleaner).
2) Download and install a program like Notepad++ that lets you do text replacement on multiple files at once.
3) Launch the text replacement program and hit CTRL + F (or "Search" > "Find...") to launch find. Click "Find in Files, set the file type to "*.rpy", and set the Directory to the complete path to your "game\scripts" subfolder.
4) Replace "$ renpy.save_persistent()" with nothing
5) Replace "persistent." with nothing (the period after persistent is important!)
6) Repeat steps 4 and 5 but pointing the directory to the "utils" subfolder

7) Lastly in the utils folder open the smartwatch_2.rpy file and at the very top of it above the "init python:" block replace the word "default" with the word "define" for all the variables listed. (This is necessary because otherwise the init block is calling on those variables before they are defined by the default command. Persistent variables have their own base value so this wasn't an issue until we switched them to normal.) Save.

8) Start the game and if you did everything right there should be no errors.

The only issue I've run into doing this so far is for some reason the Scene Explainer does not want to go away now. For reasons currently beyond me, that screen is refusing to pass the "True" value to the variable to make it stop showing up everytime you reach a sex scene. So if you are having that issue and want it to go away then you can just download the extra attached "zz ScreenExplainer.rpy" file which contains a modified label that will rectify that and you won't see the explainer again unless you start a new playthrough. It should be future compatible unless the dev does a major overhaul to the explainer.

If anyone else discovers any issues, let me know and I will see what can be done...
 
Last edited:
  • Heart
Reactions: Aurelius Ambrosius
3.00 star(s) 15 Votes