Create and Fuck your AI Cum Slut –70% OFF
x

jackkamis

Member
Jul 4, 2022
108
65
128
Quick question, so I currently have Cassidy in the game and just survived the Investigation, so for Aletta I have 'a quite day in the office' still not complete so I looked at the hint and it said Cassidy needs to be gone? Is a code possible to get her gone just to complete this and back like she never left and what I have for her still completed?
 

lommeuld

New Member
May 7, 2020
8
2
109
It's what's used when checking for what Emma can do during sex 10 is just the value used for the check being talked about.

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

Edit: Grammar
Not knowing where the code is used, but this looks like a bug to me and it should be:
Python:
        return (emma.sexperience + emma.flags.loose) > size_limit
I.e. you'll pass the criteria with enough sexperience. Otherwise you'll very likely be at risk to have too much experience before this event can occur.
 

Arizona.Jr

New Member
Apr 17, 2019
11
3
13
can anyone tell me how to reset an event? using console. because the event of band practice was stuck. the band harem was clear, but the band firstgig not trigerred. and practice band button at studio dissapear. so i want to restart the band practice event. and one more thing, does anyone know what "aleta-sidesory=1" is. on "aletta's hobby", "aletta_event_04b" wont trigerred because aleta sidesory =1?
please.
thanks
 

Ilovekatz19

Active Member
Jul 24, 2021
616
608
246
Not knowing where the code is used, but this looks like a bug to me and it should be:
Python:
        return (emma.sexperience + emma.flags.loose) > size_limit
I.e. you'll pass the criteria with enough sexperience. Otherwise you'll very likely be at risk to have too much experience before this event can occur.
Nah, it's how it's supposed to be. Once you've extracted scripts.rpa you can find the equation in in fuck.rpy (.rpyc if you haven't undecrypted the file yet) located at ch/emma.

You see when the value calculated using emma.sexperience and emma.flags.loose is below size_limit emma_size_limit_calc(size_limit) is set as True

You can test this with the console. Just put in emma_size_limit_calc(x) replacing x with your choice of number, and setting the two variables used in the equation.

Most of the checks that make use of emma_size_limit_calc use it being true for the "bad" outcome. Essentially most of the checks look like this.

Python:
if emma_size_limit_calc(x):
    "Ouch! Too big."
else:
    "It's in."
Feel free to fact check me on the if statement part I only skimmed the search results I got. I used to mass search the files for the key phrase "emma_size_limit_calc"
 

Ilovekatz19

Active Member
Jul 24, 2021
616
608
246
can anyone tell me how to reset an event? using console. because the event of band practice was stuck. the band harem was clear, but the band firstgig not trigerred. and practice band button at studio dissapear. so i want to restart the band practice event. and one more thing, does anyone know what "aleta-sidesory=1" is. on "aletta's hobby", "aletta_event_04b" wont trigerred because aleta sidesory =1?
please.
thanks
You are on the right path setting flags to what they need to be, but "aleta-sidesory" isn't a valid variable, I'll do my best to explain what needs to be done using the event aletta_event_04b as an example since you mentioned it.

I'll start by providing the requirements to trigger said event as is listed in the code.
You don't have permission to view the spoiler content. Log in or register now.
IsDone( is what event(s) you need to have done, the check makes use of the DONE list. You can add events to the DONE list with the command ICODE]DONE["event_name"] = x[/ICODE] replacing x with a number, the number is what day you completed the event so in the code the x is usually game.days_played

IsDayOfWeek( is what days of the week the event can be triggered. game.week_day = x (Monday = 1|Sunday = 7) lets you change the day of the week.

IsHour( is when in the day the event can be triggered. game.hour = x (0-23) lets you control the hours of the day.

HeroTarget( just means and variables within the parentheses will start with hero.

IsGender( is just a check of the gender you chose.

MinStat( is the lowest the stat within the parentheses can be. Stat variables after the the first part denoting who the variable is tied to just uses the stat's name and can have .min and .max slapped on the end.

IsRoom( is what room you're in.

PersonTarget( is like HeroTarget( but will have the character's name as the first thing within the parentheses and all variables within the parentheses will start with name. (replace name with the character's name).

IsFlag( is what the flag listed within the parentheses has to be set to (if there's nothing after the flag name then the flag needs to be True). Flag variables after the the first part denoting who the variable is tied to put flags. between the first part and the flag's name.

"do_once": True means the the event simply being on the DONE list makes it impossible to trigger. You can use del DONE["event_name"] to remove an event from the list.

With all that being said here are all the commands for each part of the above listed code. Mind you not all these commands will be necessary to retrigger the event.
You don't have permission to view the spoiler content. Log in or register now.

This helpful?
 

Arizona.Jr

New Member
Apr 17, 2019
11
3
13
You are on the right path setting flags to what they need to be, but "aleta-sidesory" isn't a valid variable, I'll do my best to explain what needs to be done using the event aletta_event_04b as an example since you mentioned it.

I'll start by providing the requirements to trigger said event as is listed in the code.
You don't have permission to view the spoiler content. Log in or register now.
IsDone( is what event(s) you need to have done, the check makes use of the DONE list. You can add events to the DONE list with the command ICODE]DONE["event_name"] = x[/ICODE] replacing x with a number, the number is what day you completed the event so in the code the x is usually game.days_played

IsDayOfWeek( is what days of the week the event can be triggered. game.week_day = x (Monday = 1|Sunday = 7) lets you change the day of the week.

IsHour( is when in the day the event can be triggered. game.hour = x (0-23) lets you control the hours of the day.

HeroTarget( just means and variables within the parentheses will start with hero.

IsGender( is just a check of the gender you chose.

MinStat( is the lowest the stat within the parentheses can be. Stat variables after the the first part denoting who the variable is tied to just uses the stat's name and can have .min and .max slapped on the end.

IsRoom( is what room you're in.

PersonTarget( is like HeroTarget( but will have the character's name as the first thing within the parentheses and all variables within the parentheses will start with name. (replace name with the character's name).

IsFlag( is what the flag listed within the parentheses has to be set to (if there's nothing after the flag name then the flag needs to be True). Flag variables after the the first part denoting who the variable is tied to put flags. between the first part and the flag's name.

"do_once": True means the the event simply being on the DONE list makes it impossible to trigger. You can use del DONE["event_name"] to remove an event from the list.

With all that being said here are all the commands for each part of the above listed code. Mind you not all these commands will be necessary to retrigger the event.
You don't have permission to view the spoiler content. Log in or register now.

This helpful?
Thank you for the elaborate reply, now i know what to do. before, i just try to set aletta sidestory using console but to not avail. because i think it is start on winter so days played keep moving but event not trigerred? or i keep moving around till the date passed the requirment to triggered. yeah atleast i know the problem now.
and please help me, how to reset practice band progress using comand? or atleast how to unhide practice band button in studio because it is gone, and i cant trigger firsgig event. thankyou again
 
Last edited:

Arizona.Jr

New Member
Apr 17, 2019
11
3
13
oh no, i messed up big thing. after finish samantha path D. now she is part of home harem. and i cant proceed with emma. because halfway through it, sam and emma ask to meet at cofee shop, then emma leave the game. is there any way to fix it? because it is to far to restart or load after samatha finish path D.
 

Crunchywater

New Member
Sep 13, 2019
1
0
168
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "cl/class_room.rpyc", line 6, in script
  File "game/cl/class_room_ren.py", line 8, in <module>
ImportError: cannot import name 'basestring' from 'renpy' (/data/data/cyou.joiplay.runtime.renpy.v8d4d1/files/private/renpy/__init__.pyc)

-- Full Traceback ------------------------------------------------------------

Traceback (most recent call last):
  File "cl/class_room.rpyc", line 6, in script
  File "renpy/ast.py", line 1187, in execute
  File "renpy/python.py", line 1260, in py_exec_bytecode
  File "game/cl/class_room_ren.py", line 8, in <module>
ImportError: cannot import name 'basestring' from 'renpy' (/data/data/cyou.joiplay.runtime.renpy.v8d4d1/files/private/renpy/__init__.pyc)
Joiplay starting game
 

BillyKidd007

New Member
Nov 19, 2024
8
3
22
looking for help to undo an event. The good/evil harem where you take lexi to the beach and harmony shows up, i'm looking for how to make it not have happened.
 

Ilovekatz19

Active Member
Jul 24, 2021
616
608
246
and please help me, how to reset practice band progress using comand?
I'm going to need more details are you trying to rest the practice progress bar or are you trying redo ?
or atleast how to unhide practice band button in studio because it is gone, and i cant trigger firsgig event. thankyou again
This is the button you mean right?
You don't have permission to view the spoiler content. Log in or register now.

It just requires the girls to all be in the studio, your stats to be above a certain value, and for hero.flags.band to be set to 2, and can only be done once a day so if you've already done it once that day DONE["practice_band"] = 1 will let you do it again.

oh no, i messed up big thing. after finish samantha path D. now she is part of home harem. and i cant proceed with emma. because halfway through it, sam and emma ask to meet at cofee shop, then emma leave the game. is there any way to fix it? because it is to far to restart or load after samatha finish path D.
First load a save of before you went to the appointment. Then remove the appointment from the calendar with hero.calendar.find_and_remove(label="emma_event_09_appointment"). Now use hero.calendar.add(game.days_played + 1, LabelAppointment((0, 23), ["emma"], "", "emma_event_09_okayed")) to set up an appointment and go to the appointmnt and just let it play out.

If you for some reason can't load a previous save then first you're going to need to bring Emma back. emma.flags.gone_forever = False, emma.love.max = name.love = 120, and emma.unhide(). From here just set up the appointment as I provided above.

looking for help to undo an event. The good/evil harem where you take lexi to the beach and harmony shows up, i'm looking for how to make it not have happened.
del DONE["harmony_lexi_showdown"]
 

Arizona.Jr

New Member
Apr 17, 2019
11
3
13
I'm going to need more details are you trying to rest the practice progress bar or are you trying redo ?

This is the button you mean right?
You don't have permission to view the spoiler content. Log in or register now.

It just requires the girls to all be in the studio, your stats to be above a certain value, and for hero.flags.band to be set to 2, and can only be done once a day so if you've already done it once that day DONE["practice_band"] = 1 will let you do it again.


First load a save of before you went to the appointment. Then remove the appointment from the calendar with hero.calendar.find_and_remove(label="emma_event_09_appointment"). Now use hero.calendar.add(game.days_played + 1, LabelAppointment((0, 23), ["emma"], "", "emma_event_09_okayed")) to set up an appointment and go to the appointmnt and just let it play out.

If you for some reason can't load a previous save then first you're going to need to bring Emma back. emma.flags.gone_forever = False, emma.love.max = name.love = 120, and emma.unhide(). From here just set up the appointment as I provided above.


del DONE["harmony_lexi_showdown"]
Such a big help. thank you so much
 

Lord Bradley

Well-Known Member
May 28, 2019
1,332
3,440
451
Since when is NTR common in this game? I remember in order to get NTR with Alexis you had to play pixel perfect with various complicated mechanics that needed to align just right for you to see all scenes. Or is that message put in OP simply because some people whined about it existing behind 50 different stop signs?
 

Kohan54

Member
Dec 1, 2021
224
247
167
Bree MC not getting anything for 2 patches.... honestly shocked that the whole Bree thing wasn't scrapped at this point.

Welp another month or so of waiting.
 

Lupiscanis

Active Member
Dec 24, 2016
767
1,462
378
Since when is NTR common in this game? I remember in order to get NTR with Alexis you had to play pixel perfect with various complicated mechanics that needed to align just right for you to see all scenes. Or is that message put in OP simply because some people whined about it existing behind 50 different stop signs?
Yeah, that confused me too. There's a couple of sporadic options with other characters too, but 'common' seems a bit of a weird assertion.
 
  • Like
Reactions: Ilovekatz19
3.60 star(s) 320 Votes