Jen_73

Member
Jun 21, 2019
224
45
A small oversight in the new version:
If you give someone a handjob in the bus and let him come on our hand, the only way to get rid of the sperm on your hand is, to shower.

One would assume that you should be able to clean your hands in every bathroom (be it public or private)
 

plong

Member
Mar 16, 2019
119
132
A small oversight in the new version:
If you give someone a handjob in the bus and let him come on our hand, the only way to get rid of the sperm on your hand is, to shower.

One would assume that you should be able to clean your hands in every bathroom (be it public or private)
I think you can use wet-wipes, but you need to buy a bag/purse first to carry them around.
 

ohhellyea

Member
Jun 7, 2020
264
60
ok, so i misclicked, and lot my job as a singer at the casino, is there a command or any way to get it back?
 

ffive

Forum Fanatic
Jun 19, 2022
5,130
11,130
For what little it's worth, looking at the code it turns out the bug with strip bar payments is due to the game trying to calculate number of hours spent working by using:
Code:
(totalMinutes - stripMins) mod 60
unfortunately, this operation returns remainder of dividing number of minutes spent working by 60, instead of full worked hours. It should be simply
Code:
(totalMinutes - stripMins) / 60
instead. There's two places in BBungalow node that need this change, if someone wants to make a fix for it.

edit: regarding the BMI calculations error, it seems to stem from a simple overlook, daily calorie intake/burn records are added at the end of calArr array, while the change is calculated from average of first 3 elements. So in practice the game only ever pays attention to what happened on first 3 days, and uses that forever. A check should be added to kill first/oldest element of the array if the array size exceeds 3, before the average is calculated in DayCycle node:
Code:
!get 3 day average:
if arrsize('calArr') > 3:
    killvar 'calArr', 0
end
if arrsize('calArr') = 3:
    salo += (calArr[0] + calArr[1] + calArr[2]) / 3
    killvar 'calIntake'
end
edit2: attached 0.9.4 with above fixes applied. For easier debugging calories intake for current day and salo changes in last three days were added to Physical Stats in the phone app. Note, the fix won't do much for existing save files with already too large array. For these you'll need to enter killvar 'calArr' in the console first after loading the save, to allow salo tracking anew.
 
Last edited:

Crys Heart

Newbie
Oct 27, 2019
38
20
Is it just me or are the images broken? My character's pic doesn't load when I click on the appearance tab, and some of the gifs don't play either.....
 

JamesF0790

New Member
Oct 7, 2018
5
3
Odd, I'm not sure if this is intentional but I'm having this odd thing where the main character should be getting more feminine but suddenly the restaurant owner realises they're a boy and the guy at the front desk of the hostel starts to get suspicious. I'm not sure why either since the stats seem to be going in the other direction.
 

wwzvet

New Member
Oct 20, 2021
6
3
Does the boss at Hooters ever take it further than just 'rubbing to completion' on your pants? I've been working there trying to see if he ever goes further.
 

JamesF0790

New Member
Oct 7, 2018
5
3
Odd, I'm not sure if this is intentional but I'm having this odd thing where the main character should be getting more feminine but suddenly the restaurant owner realises they're a boy and the guy at the front desk of the hostel starts to get suspicious. I'm not sure why either since the stats seem to be going in the other direction.
Well I worked it out. If anybody was wondering the same thing it was because there's some sort of... grace period after you first arrive at the hostel.
 

ffive

Forum Fanatic
Jun 19, 2022
5,130
11,130
A few more errors, by the looks of it

* Melissa's makeover event can potentially not fire, since one of the ways it's set up schedules trigger time in minutes, while the check always presumes it's in days. So, it can wind up with stuff like event date being 250000+ days in the future, or in ~685 years.
edit: though looking deeper, the makeover date thing isn't actually implemented at all, is it. gg.

* using "get up" command in the casino while on a "date" with random NPC there locks up the game.

* if NPC asks for a dance in the casino and gets rejected, issuing "go dancing" command will make the PC dance with rejected NPC. Talk about stubborn.
 
Last edited:
3.10 star(s) 22 Votes