CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x
Jun 18, 2022
431
1,500
You need to be BELOW 50 for the next event. That equal sign shouldn't be there. I had the same problem with it before figuring that out.
Below 50 hearts or 50 purity? cause if its the latter then Im confused. The only way to get to below 50 purity is to play the broken wings event and that won't trigger. Plus, I can't put it lower than 50, it's locked.

1734876031738.png
 

Bleebao

Newbie
Aug 3, 2020
15
4
The triggers for Sasha's foot massage event are in the watch file in the ac folder, under watch_tv_with(*people). Here's the line of code for the first check of the trigger.
if hero.is_male and len(people) == 1 and sasha in people and hero.has_skill("massage") and (1 <= game.week_day <= 5) and game.hour > 20:
This is a two step check the checks that come after this check just checks Sasha's sub score (Sasha needs to be dominant) and how many time's you've given her a foot rub so it can play the right event.

The rest of the event(s) past the trigger are located at ch/sasha in the file labeled base under the corresponding names.

The foot job scene however it's trigger is in the same file as the foot message scenes(ch/sasha in the file labeled base). Here's the trigger.

You don't have permission to view the spoiler content. Log in or register now.
where do you find these folders
 

rd3123

Member
Jul 26, 2017
267
124
Below 50 hearts or 50 purity? cause if its the latter then Im confused. The only way to get to below 50 purity is to play the broken wings event and that won't trigger. Plus, I can't put it lower than 50, it's locked.

View attachment 4363083
Have you done the rollerskating date yet? If so that might be the problem since she needs the purity lowered before that and I know that was the 50 lp event.
 

Ilovekatz19

Member
Jul 24, 2021
237
204
where do you find these folders
In the folder literally named game you'll find a bunch of RPA files. with programs such as UnRen.bat, , and/or you can extract them like you would a zip file. After you've extracted the RPAs you'll find all the folders I've mentioned in my previous messages.

Assuming you didn't use a program like to extract the RPAs you'll need to find a program like that can turn RPYCs into RPYs.
 

JessicaBelle

Newbie
Dec 21, 2017
64
202
Hello, i just discover this hot game recently and after having a lot of fun, i needed to open console to change a missed action, i got it repair but now i got this line of code on neerly every images when i play. How can i remove them, or what should i write in the console to make them dissapear thank you :)

1734915519256.png
 

Ilovekatz19

Member
Jul 24, 2021
237
204
Hello, i just discover this hot game recently and after having a lot of fun, i needed to open console to change a missed action, i got it repair but now i got this line of code on neerly every images when i play. How can i remove them, or what should i write in the console to make them dissapear thank you :)

View attachment 4365591
Just remove your access to the console. If you used UnRen.bat it's as simple as deleting the files unren-dev.rpy and unren-dev.rpyc located in the folder game.
 
  • Heart
Reactions: JessicaBelle

Malllem

Newbie
Jun 5, 2021
55
24
I have a question how do i get to lexi_female_event_09 . Is it the debt is paid event? I am on the suggest sex work route and i have more then 25k Money but i cant give her the money
 

Ilovekatz19

Member
Jul 24, 2021
237
204
can someone help fixing kleio root using unren? since i didnt join the band i cant progress
Here you go.
This first command is for if the studio isn't on the map.
Room.find("studio").unhide()

As for joining the band it seems game.flags.band = x controls that. 1 being the value it's set to if you do with the and 2 being the value it's set to when you .

game.flags.bandcrossdress = True is for if you wanna cross-dress.

Below are all the triggers that check game.flags.band.

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

zxcpud

New Member
Oct 11, 2023
7
1
Don't worry about that, as long as no red text appears under the command (indicating an error of some kind) it will be fine. If you need proof the command worked, on Friday and Wednesday at 18:00-00:00 the studio stud should appear in roughly the bottom left of the map.
thanks, but one more thing is there a way to unlock lexi when i already rejected her?
 

Ilovekatz19

Member
Jul 24, 2021
237
204
thanks, but one more thing is there a way to unlock lexi when i already rejected her?
I'll be honest with you I haven't really had any excuse to figure out of to set someone as not gone_forever, I think lexi.unset_gone_forever() will work but haven't tested.

My working theory is it's like name.hide() and since the command to undo name.hide() is literally just name.unhide() maybe name.set_gone_forever() fallows the same rules.

If that doesn't work maybe del lexi.set_gone_forever() will do it, but I'm less confident in this one just cause I'm pretty sure del is for removing stuff from lists and name.set_gone_forever() doesn't appear to be a list like in the case of DONE["event_name"].

If neither of those work use lexi.unhide(), then remove every instance of Not(IsGone()), that are under PersonTarget(lexi, from the code. To learn to edit the code just search for messages by me in this thread that mention RPA.
 
  • Like
Reactions: zxcpud

zxcpud

New Member
Oct 11, 2023
7
1
I'll be honest with you I haven't really had any excuse to figure out of to set someone as not gone_forever, I think lexi.unset_gone_forever() will work but haven't tested.

My working theory is it's like name.hide() and since the command to undo name.hide() is literally just name.unhide() maybe name.set_gone_forever() fallows the same rules.

If that doesn't work maybe del lexi.set_gone_forever() will do it, but I'm less confident in this one just cause I'm pretty sure del is for removing stuff from lists and name.set_gone_forever() doesn't appear to be a list like in the case of DONE["event_name"].

If neither of those work use lexi.unhide(), then remove every instance of Not(IsGone()), that are under PersonTarget(lexi, from the code. To learn to edit the code just search for messages by me in this thread that mention RPA.
in which file do i need to change code exatcly?
P.S. nvm found that but i dont have app to change it in,
dont know where i can convert rpyc into rpy
 
Last edited:

zxcpud

New Member
Oct 11, 2023
7
1
I'll be honest with you I haven't really had any excuse to figure out of to set someone as not gone_forever, I think lexi.unset_gone_forever() will work but haven't tested.

My working theory is it's like name.hide() and since the command to undo name.hide() is literally just name.unhide() maybe name.set_gone_forever() fallows the same rules.

If that doesn't work maybe del lexi.set_gone_forever() will do it, but I'm less confident in this one just cause I'm pretty sure del is for removing stuff from lists and name.set_gone_forever() doesn't appear to be a list like in the case of DONE["event_name"].

If neither of those work use lexi.unhide(), then remove every instance of Not(IsGone()), that are under PersonTarget(lexi, from the code. To learn to edit the code just search for messages by me in this thread that mention RPA.
in which file do i need to change code exatcly?
P.S. nvm found that but i dont have app to change it in,
dont know where i can convert rpyc into rpy
already edited and putted it into the game but things didnt change, love dosent increase
 
3.60 star(s) 295 Votes