Browse Source

[fixed] Tips from stripping which were meant to be more generous ended up far too generous. Toned it back down

Kevin_Smarts 2 years ago
parent
commit
b5fd290e31
1 changed files with 3 additions and 3 deletions
  1. 3 3
      locations/stwork.qsrc

+ 3 - 3
locations/stwork.qsrc

@@ -216,7 +216,7 @@ if $ARGS[0] = 'tipcalculator':
 		if rand(0,5) = 0:
 		if rand(0,5) = 0:
 			'The customers were pleased with your performance, not enough to both tipping you.'
 			'The customers were pleased with your performance, not enough to both tipping you.'
 		else
 		else
-			paymoneyrand = rand(3,10) * 10
+			paymoneyrand = rand(3,10) * 3
 			money += paymoneyrand
 			money += paymoneyrand
 			pcs_mood += rand(1,5)
 			pcs_mood += rand(1,5)
 			'The customers were pleased with your performance. They gave you <<paymoneyrand>> <b>₽</b> in tips.'
 			'The customers were pleased with your performance. They gave you <<paymoneyrand>> <b>₽</b> in tips.'
@@ -225,13 +225,13 @@ if $ARGS[0] = 'tipcalculator':
 		if rand(0,10) = 0:
 		if rand(0,10) = 0:
 			'The customers followed your movements between their conversations. You deserved some tips but luck was against you and you got nothing.'
 			'The customers followed your movements between their conversations. You deserved some tips but luck was against you and you got nothing.'
 		else
 		else
-			paymoneyrand = rand(10,(striptip/2)) * 10
+			paymoneyrand = rand(10,(striptip/2)) * 3
 			money += paymoneyrand
 			money += paymoneyrand
 			pcs_mood += rand(3,10)
 			pcs_mood += rand(3,10)
 		'The customers followed your movements between their conversations. After counting out your tips it amounts to <<paymoneyrand>> <b>₽</b>.'
 		'The customers followed your movements between their conversations. After counting out your tips it amounts to <<paymoneyrand>> <b>₽</b>.'
 		end
 		end
 	else
 	else
-		paymoneyrand = rand(10,striptip) * 10
+		paymoneyrand = rand(10,striptip) * 3
 		money += paymoneyrand
 		money += paymoneyrand
 		pcs_mood += rand(5,20)
 		pcs_mood += rand(5,20)
 		'The customers were mesmerized by your dancing and tipped you <<paymoneyrand>> <b>₽</b>.'
 		'The customers were mesmerized by your dancing and tipped you <<paymoneyrand>> <b>₽</b>.'