|
@@ -146,12 +146,10 @@ if coatH[defaultcoat] <= 0: defaultcoat = 0
|
|
|
!!Bonus from clothing and shoes
|
|
|
if succubusflag = 0 and $cheatBimbo ! '<b>ON</b>':
|
|
|
if bimbocl = 1:
|
|
|
- bimbocl = 0
|
|
|
- bimbo += 2
|
|
|
+ snapshotY += 2
|
|
|
end
|
|
|
if bimbosh = 1:
|
|
|
- bimbosh = 0
|
|
|
- bimbo += 1
|
|
|
+ snapshotY += 1
|
|
|
end
|
|
|
else
|
|
|
bimbocl = 0
|
|
@@ -183,8 +181,7 @@ if succubusflag = 1:
|
|
|
if bimbolevel > 0 and bimbo > 0: bimbowithdrawal = 40
|
|
|
elseif bimbolevel >= 1:
|
|
|
!!Checks how often sex has occured in the last 24 hours and for drops in bimbo score, for calculating withdrawal
|
|
|
- bimbo += ((stat['vaginal'] + stat['bj'] + stat['anal']) - snapshotX) - 3
|
|
|
- if bimbo > snapshotY:
|
|
|
+ if 3 > snapshotY + snapshotX - (stat['vaginal'] + stat['bj'] + stat['anal']):
|
|
|
bimbowithdrawal = 0
|
|
|
else
|
|
|
bimbowithdrawal += 1
|
|
@@ -193,7 +190,7 @@ end
|
|
|
|
|
|
if bimbo < 0: bimbo = 0
|
|
|
snapshotX = (stat['vaginal'] + stat['bj'] + stat['anal'])
|
|
|
-snapshotY = bimbo
|
|
|
+snapshotY = 0
|
|
|
|
|
|
!!------------------------------------------------------------------------------------------------------------
|
|
|
!! Exhibitionism
|