|
@@ -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>.'
|