1
0
Bläddra i källkod

Tweaked strip tips

alecsp 2 år sedan
förälder
incheckning
b62279d58c
1 ändrade filer med 5 tillägg och 5 borttagningar
  1. 5 5
      locations/stwork.qsrc

+ 5 - 5
locations/stwork.qsrc

@@ -220,8 +220,8 @@ end
 if $ARGS[0] = 'tipcalculator':
 	*nl
 	'You now have a chance to add up any tips you gained from your last show.'
-	!20% chance that tattoos increase tips
-	if rand (0, 4) = 0:
+	!33% chance that tattoos and piercings increase tips
+	if rand (0, 2) = 0:
 		striptip += stripKoef
 	end
 	if striptip < 25:
@@ -234,7 +234,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) * 5
+			paymoneyrand = rand(3, striptip/10) * 5
 			money += paymoneyrand
 			pcs_mood += rand(1,5)
 			'The customers were pleased with your performance. They gave you <<paymoneyrand>> <b>₽</b> in tips.'
@@ -243,13 +243,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/5)) * 5
+			paymoneyrand = rand(10, striptip/5) * 5
 			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(20, striptip/5) * 5
+		paymoneyrand = rand(20, striptip/3) * 5
 		money += paymoneyrand
 		pcs_mood += rand(5,20)
 		'The customers were mesmerized by your dancing and tipped you <<paymoneyrand>> <b>₽</b>.'