IIRC, without cheats, it takes about three seasons to complete a pregnancy.is pregnancy forever? i cant go main story because of that and its not progressing its still early
Beach event is currently only written for male origin if I remember correctly. Current update was a beta leak so not all paths are finished.Is the beach path implemented yet? I got to the beach with Emily, but nothing else happens after I change into a swimsuit.
sense that sentence makes none. but based on my interpretation I would say the answer is. yes apk but not is upload here has.Is 0.3.1.12 only window only does apk has to?
Really doubtful any additional body shape mods will happen (at least for a long time). Each change to bodyshape requires every piece of clothing and every scene that shows that body part to have an extra image. If the change also causes shifts in other parts of the body to change, that may also require a lot more adjustments (like wider hips mot lining up / clipping through other characters in the scene).I hope the developer will add more body modifications like thighs or buttocks.
Thank you sorry about how worded my sentence i was half sleep when i was typing which site i can find apk or was referring patreon site?sense that sentence makes none. but based on my interpretation I would say the answer is. yes apk but not is upload here has.
The heroine can't wear underwear because of the "exhibitionist" perk? How to remove this perk?
Does "commando" perk get reworked next update?
Is there way avoid commodo perk that make underwear disappeared
I think this perk needs a rework, cause once you get it - all underwear are permanently banned for your character. Something like confidence/mood buff/debuff thing rather than what it is right now.
Glad to see I'm not the only one who saw that perk as completely antithetical to exhibitionism play.I've said the same thing. Either a mood buff/debuff though, definitely not confidence. But we won't know until either next build or when Sam_Tail says something.
\game\scripts\scripts\core\perk_system\perk_class.rpy
and commenting out the entire def perk_commando_wardrobe_update():
function, only leaving an empty return statement.Patreon only for now.Thank you sorry about how worded my sentence i was half sleep when i was typing which site i can find apk or was referring patreon site?
the only way to avoid it is by wearing underwear. but once you have it you won't be able to remove the perk without console commands. at least for now, this might be changed in the future.Is there way avoid commodo perk that make underwear disappeared
thanks i guess stop going bar keep selling underwear and stocking i had hard time replace them when they disappear on inventory buy section i had hard time going market stall random buy clothing i had hard time look for clothingPatreon only for now.
the only way to avoid it is by wearing underwear. but once you have it you won't be able to remove the perk without console commands. at least for now, this might be changed in the future.
In "\game\scripts\scripts\" there is only "locations" folder.Glad to see I'm not the only one who saw that perk as completely antithetical to exhibitionism play.
Personally I edited the game scripts to disable the perk's wardrobe nuking effect, but I hope the dev changes it soon so I don't have to keep redoing this every update.
What I did was editing\game\scripts\scripts\core\perk_system\perk_class.rpy
and commenting out the entiredef perk_commando_wardrobe_update():
function, only leaving an empty return statement.
You don't have permission to view the spoiler content. Log in or register now.
On 3.1.12 as well, and seeing the same thing you are. Did a search and there's no .rpy with that name in the game files for me either.In "\game\scripts\scripts\" there is only "locations" folder.
Did I look at the path to the folder incorrectly?
Did you extract the scripts.rpa using unren.bat found on this site?On 3.1.12 as well, and seeing the same thing you are. Did a search and there's no .rpy with that name in the game files for me either.
Ah, that would explain it.Did you extract the scripts.rpa using unren.bat found on this site?
Wouldn't commenting that out, or switching the 30 to something like 300 prevent you from getting the commando perk in the first place?def perk_commando_queue():
if not "commando_queue" in perk_commando.dict:
perk_commando.dict["commando_queue"] = []
if (t.hour % 3) == 0:
while len(perk_commando.dict["commando_queue"]) >= 30:
perk_commando.dict["commando_queue"].pop()
perk_commando.dict["commando_queue"].insert(0,If(not c.pants, True, False))
def perk_commando_qualify_checker():
if sum(i == True for i in perk_commando.dict["commando_queue"]) >= 25 and not player.has_perk(perk_commando) and len(perk_commando.dict["commando_queue"]) == 30:
return True
else:
return False