Ver Fonte

[fixed] Having limited bimbo variable to fix a different issueit was breaking the withdrawal and making it impossible to avoid. Should be fixed now.

KevinSmarts há 6 anos atrás
pai
commit
09af25ed61
1 ficheiros alterados com 4 adições e 7 exclusões
  1. 4 7
      locations/cikl.qsrc

+ 4 - 7
locations/cikl.qsrc

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