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 năm trước cách đây
mục cha
commit
b5fd290e31
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      locations/stwork.qsrc

+ 3 - 3
locations/stwork.qsrc

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