How to manually edit Crew Kiro into Bimbo Kiro?

Mad Dog

Well-Known Member
Jun 1, 2018
537
281
I know it's not recommended, but I've messed with my save files in text editors to make some changes.

I'm currently trying to figure out how to edit Crew-Non Bimbo Kiro into Crew-Bimbo Kiro.

Any tips in doing this?

Update: Found an extension on VSCode that makes the JSON files way easier to read.
 
Last edited:

TheShepard256

Well-Known Member
There's a lot of flags and TFs involved with Kiro's bimbofication, but I imagine most if not all of bimbo!Kiro's content will be accessible simply by giving her the Ditz Speech perk; for game mechanical reasons, you might also want to give her the Ever-Milk and MinCumQ perks (v1s of 5000 and 2000, respectively) and increase her refractory rate by 1. If you want to be more detailed, you should be able to find everything here: https://github.com/OXOIndustries/Ti.../includes/events/kiroCrewQuest/illustriaPo.as
 

Mad Dog

Well-Known Member
Jun 1, 2018
537
281
There's a lot of flags and TFs involved with Kiro's bimbofication, but I imagine most if not all of bimbo!Kiro's content will be accessible simply by giving her the Ditz Speech perk; for game mechanical reasons, you might also want to give her the Ever-Milk and MinCumQ perks (v1s of 5000 and 2000, respectively) and increase her refractory rate by 1. If you want to be more detailed, you should be able to find everything here: https://github.com/OXOIndustries/Ti.../includes/events/kiroCrewQuest/illustriaPo.as
Thanks. I ended up redoing the Kiro Quest on an older save, saving that as a new file, then comparing that Kiro-Bimbo file with the save I wanted to orginally edit on VSCode.
 

Mad Dog

Well-Known Member
Jun 1, 2018
537
281
@TheShepard256

So I got what I wanted from manually editing my file.

However, Kiro still appears in different bars with her non-Bimbo scenes and conversations.

I can ignore it, since the game still works fine. But I was wondering if you knew which tag/variable allows her to move to different bars?
 

TheShepard256

Well-Known Member
But I was wondering if you knew which tag/variable allows her to move to different bars?
roamingKiroAvailable(), which, strangely enough, doesn't account for the possibility of her being a bimbo - at least, not according to the old Flash code. However, it does account for Kiro being a crew member (in which case it always returns false)... but only for her non-bimbo version. Chances are, either I'm missing something or those are bugs that have probably since been fixed. I'd try setting flags["KIRO_RECRUITED"] = 1 and flags["KIRO_ONBOARD"] = 1 to add her to your crew; this works for both bimbo and non-bimbo, and should hopefully fix the problem (though I can't guarantee it).