Browse Source

[fixed] Anal exp could degrade below 0 and the trait acreen didn't give the info it should when working on lvl 1, also couldn't increase exp by more than 1 per day

Kevin_Smarts 2 years ago
parent
commit
294c889fd1
2 changed files with 6 additions and 6 deletions
  1. 4 4
      locations/cikl.qsrc
  2. 2 2
      locations/traits.qsrc

+ 4 - 4
locations/cikl.qsrc

@@ -240,13 +240,13 @@ bimbo_flag = 0
 !!	Butt slut
 !!------------------------------------------------------------------------------------------------------------
 
-if orgasm_anal > orgasm_anal[1]: 
-	buttslut_exp += 1
+if orgasm_anal > orgasm_anal[1]:
+	if traits['buttslut_lvl'] > 0: buttslut_exp += orgasm_anal - orgasm_anal[1]
 else
-	buttslut_exp -= 1
+	if buttslut_exp > 1: buttslut_exp -= 1
 end
 orgasm_anal[1] = orgasm_anal
-if orgasm_anal >= 10 and traits['buttslut_lvl'] = 0: traits['buttslut_lvl'] = 1
+if orgasm_anal > 10 and traits['buttslut_lvl'] = 0: traits['buttslut_lvl'] = 1
 if traits['buttslut_exp'] >= 15 and traits['buttslut_lvl'] = 1: traits['buttslut_lvl'] = 2 & traits['buttslut_exp'] = 0
 if traits['buttslut_exp'] >= 50 and traits['buttslut_lvl'] = 2: traits['buttslut_lvl'] = 3
 if traits['buttslut_exp'] <= 0 and traits['buttslut_lvl'] = 3: traits['buttslut_lvl'] = 2 & traits['buttslut_exp'] = 0

+ 2 - 2
locations/traits.qsrc

@@ -153,8 +153,8 @@ if $ARGS[0] = 'menu':
 	!!exp earned from anal sex but degrades over time. Level 3 can be lost but lvl1 and 2 cannot
 	'<center><b>Buttslut</b></center>'
 	if traits['buttslut_lvl'] = 0:
-		'You need to have more anal orgasms to gain this trait. To reach lvl 1 you need to gain more anal orgasm exp.'
-		'You currently have <<traits[''buttslut_exp'']>> experience. Having more anal orgasms will increase this, otherwise it will degrade over time.'
+		'You need to have more anal orgasms to gain this trait. To reach lvl 1 you need to have more anal than 10 anal orgasms.'
+		'You currently have had <<orgasm_anal>> anal orgasms.'
 	elseif traits['buttslut_lvl'] = 1:
 		'You have this trait at level 1. To reach lvl 2 you need to gain more anal orgasm exp.'
 		'You currently have <<traits[''buttslut_exp'']>> experience. Having more anal orgasms will increase this, otherwise it will degrade over time.'