|
@@ -18,13 +18,15 @@ if $ARGS[0] = 'start':
|
|
|
clr
|
|
|
gs 'stat'
|
|
|
gs 'themes', 'indoors'
|
|
|
- '<center><b><font color="maroon">Sex Toys</font></b></center>'
|
|
|
+ '<center><b><font color="maroon">Dildopolis Inc.</font></b></center>'
|
|
|
'<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'The main counter displays various sex toys:'
|
|
|
'Lubricant - 145 <b>₽</b>'
|
|
|
'Dildo starting at - 800 <b>₽</b>'
|
|
|
'Vibrator - 800 <b>₽</b>'
|
|
|
'Strapon harness starting at 1,200 <b>₽</b>'
|
|
|
'Butt plug 1,200 <b>₽</b>'
|
|
|
+ *nl
|
|
|
'In the basement are the private booths for viewing porn movies (50 <b>₽</b> 15 minutes).'
|
|
|
|
|
|
act 'Leave': minut += 5 & gt 'Nord', 'redlight'
|
|
@@ -129,227 +131,442 @@ if $ARGS[0] = 'start':
|
|
|
act 'Look through the bras': minut += 1 & gt 'sexshop', 'bras'
|
|
|
act 'Look through the fetish shoes': minut += 1 & gt 'sexshop', 'shoes'
|
|
|
|
|
|
- if money >= 300:
|
|
|
- act 'Buy lubricant 300 <b>₽</b>':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- portion = input ("How much you want to buy?")
|
|
|
+ if money < 300 and karta + bankDebtLimit < 300:
|
|
|
+ 'You cannot afford lubricant.'
|
|
|
+ else
|
|
|
+ if money >= 300:
|
|
|
+ act 'Buy lubricant 300 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ portion = input ("How much you want to buy?")
|
|
|
+
|
|
|
+ if portion * 300 > money:
|
|
|
+ 'You do not have enough money.'
|
|
|
+ else
|
|
|
+ lubri += portion * 5
|
|
|
+ money -= portion * 300
|
|
|
+ minut += 5
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You buy some lubricant and pay the cashier.'
|
|
|
+ end
|
|
|
+ gs 'stat'
|
|
|
|
|
|
- if portion * 300 > money:
|
|
|
- 'You do not have enough money.'
|
|
|
- else
|
|
|
- lubri += portion * 5
|
|
|
- money -= portion * 300
|
|
|
- minut += 5
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought some lubricant and paid the cashier.'
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
end
|
|
|
- gs 'stat'
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 300:
|
|
|
+ act 'Buy lubricant 300 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ portion = input ("How much you want to buy?")
|
|
|
+
|
|
|
+ if portion * 300 > karta + bankDebtLimit:
|
|
|
+ 'You do not have enough credit.'
|
|
|
+ else
|
|
|
+ lubri += portion * 5
|
|
|
+ karta -= portion * 300
|
|
|
+ minut += 5
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You buy some lubricant and pay the cashier.'
|
|
|
+ end
|
|
|
+ gs 'stat'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
end
|
|
|
- else
|
|
|
- 'You cannot afford lubricant.'
|
|
|
end
|
|
|
+
|
|
|
+ if pornMagazine <= 1 and (money < 400 and karta + bankDebtLimit < 400):
|
|
|
+ 'You cannot afford the porn magazine.'
|
|
|
+ else
|
|
|
+ if pornMagazine <= 1 and money >= 400:
|
|
|
+ act 'Buy a porn magazine 400 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ money -= 400
|
|
|
+ pornMagazine = 50
|
|
|
+ gs 'stat'
|
|
|
+ 'You buy a porn magazine and pay the cashier.'
|
|
|
|
|
|
- if pornMagazine <= 1 and money >= 400:
|
|
|
- act 'Buy a porn magazine (400 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- money -= 400
|
|
|
- pornMagazine = 50
|
|
|
- gs 'stat'
|
|
|
- 'You bought a porn magazine and paid the cashier.'
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if pornMagazine <= 1 and karta + bankDebtLimit >= 400:
|
|
|
+ act 'Buy a porn magazine 400 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ karta -= 400
|
|
|
+ pornMagazine = 50
|
|
|
+ gs 'stat'
|
|
|
+ 'You buy a porn magazine and pay the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif pornMagazine <= 1:
|
|
|
- 'You cannot afford the porn magazine.'
|
|
|
end
|
|
|
|
|
|
- if money >= 800 and dildo = 0:
|
|
|
- act 'Buy 10cm dildo (800 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- dildo = 1
|
|
|
- money -= 800
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a dildo and paid the cashier.'
|
|
|
+ if dildo = 0 and (money < 800 and karta + bankDebtLimit < 800):
|
|
|
+ 'You cannot afford the 10cm dildo.'
|
|
|
+ else
|
|
|
+ if money >= 800 and dildo = 0:
|
|
|
+ act 'Buy 10cm dildo 800 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ dildo = 1
|
|
|
+ money -= 800
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a dildo and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 800 and dildo = 0:
|
|
|
+ act 'Buy 10cm dildo 800 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ dildo = 1
|
|
|
+ karta -= 800
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a dildo and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif dildo = 0:
|
|
|
- 'You cannot afford the 10cm dildo.'
|
|
|
end
|
|
|
|
|
|
- if money >= 850 and middildo = 0:
|
|
|
- act 'Buy 15cm long dildo (850 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- middildo = 1
|
|
|
- money -= 850
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a 15cm long dildo and paid the cashier.'
|
|
|
+ if middildo = 0 and (money < 850 and karta + bankDebtLimit < 850):
|
|
|
+ 'You cannot afford the 15cm dildo.'
|
|
|
+ else
|
|
|
+ if money >= 850 and middildo = 0:
|
|
|
+ act 'Buy 15cm long dildo 850 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ middildo = 1
|
|
|
+ money -= 850
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 15cm long dildo and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 850 and middildo = 0:
|
|
|
+ act 'Buy 15cm long dildo 850 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ middildo = 1
|
|
|
+ karta -= 850
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 15cm long dildo and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif middildo = 0:
|
|
|
- 'You cannot afford the 15cm long dildo.'
|
|
|
end
|
|
|
|
|
|
- if money >= 900 and largedildo = 0:
|
|
|
- act 'Buy 20cm long dildo (900 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- largedildo = 1
|
|
|
- money -= 900
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a 20cm long dildo and paid the cashier.'
|
|
|
+ if largedildo = 0 and (money < 900 and karta + bankDebtLimit < 900):
|
|
|
+ 'You cannot afford the 20cm dildo.'
|
|
|
+ else
|
|
|
+ if money >= 900 and largedildo = 0:
|
|
|
+ act 'Buy 20cm long dildo 900 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ largedildo = 1
|
|
|
+ money -= 900
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 20cm long dildo and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 900 and largedildo = 0:
|
|
|
+ act 'Buy 20cm long dildo 900 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ largedildo = 1
|
|
|
+ karta -= 900
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 20cm long dildo and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif largedildo = 0:
|
|
|
- 'You cannot afford the 20cm long dildo.'
|
|
|
end
|
|
|
|
|
|
- if money >= 950 and bigdildo = 0:
|
|
|
- act 'Buy 25cm long dildo (950 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- bigdildo = 1
|
|
|
- money -= 950
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a 25cm long dildo and paid the cashier.'
|
|
|
+ if bigdildo = 0 and (money < 950 and karta + bankDebtLimit < 950):
|
|
|
+ 'You cannot afford the 25cm dildo.'
|
|
|
+ else
|
|
|
+ if money >= 950 and bigdildo = 0:
|
|
|
+ act 'Buy 25cm long dildo 950 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ bigdildo = 1
|
|
|
+ money -= 950
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 25cm long dildo and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 950 and bigdildo = 0:
|
|
|
+ act 'Buy 25cm long dildo 950 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ bigdildo = 1
|
|
|
+ karta -= 950
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 25cm long dildo and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif bigdildo = 0:
|
|
|
- 'You cannot afford the 25cm long dildo.'
|
|
|
end
|
|
|
|
|
|
- if money >= 1000 and extradildo = 0:
|
|
|
- act 'Buy 30cm long dildo (1,000 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- extradildo = 1
|
|
|
- money -= 1000
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a 30cm long dildo and paid the cashier.'
|
|
|
+ if extradildo = 0 and (money < 800 and karta + bankDebtLimit < 800):
|
|
|
+ 'You cannot afford the 10cm dildo.'
|
|
|
+ else
|
|
|
+ if money >= 1000 and extradildo = 0:
|
|
|
+ act 'Buy 30cm long dildo (1,000 <b>₽</b>)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ extradildo = 1
|
|
|
+ money -= 1000
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 30cm long dildo and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 1000 and extradildo = 0:
|
|
|
+ act 'Buy 30cm long dildo (1,000 <b>₽</b>)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ extradildo = 1
|
|
|
+ karta -= 1000
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 30cm long dildo and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif extradildo = 0:
|
|
|
- 'You cannot afford the 30cm long dildo.'
|
|
|
end
|
|
|
|
|
|
- if money >= 1100 and superdildo = 0:
|
|
|
- act 'Buy 35cm long dildo (1,100 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- superdildo = 1
|
|
|
- money -= 1100
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a 35cm long dildo and paid the cashier.'
|
|
|
+ if superdildo = 0 and (money < 800 and karta + bankDebtLimit < 800):
|
|
|
+ 'You cannot afford the 10cm dildo.'
|
|
|
+ else
|
|
|
+ if money >= 1100 and superdildo = 0:
|
|
|
+ act 'Buy 35cm long dildo (1,100 <b>₽</b>)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ superdildo = 1
|
|
|
+ money -= 1100
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 35cm long dildo and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 1100 and superdildo = 0:
|
|
|
+ act 'Buy 35cm long dildo (1,100 <b>₽</b>)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ superdildo = 1
|
|
|
+ karta -= 1100
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 35cm long dildo and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif superdildo = 0:
|
|
|
- 'You cannot afford the 35cm long dildo.'
|
|
|
end
|
|
|
|
|
|
- if money >= 1200 and maddildo = 0:
|
|
|
- act 'Buy 40cm long dildo (1,200 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- maddildo = 1
|
|
|
- money -= 1200
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a 40cm long dildo and paid the cashier.'
|
|
|
+ if maddildo = 0 and (money < 800 and karta + bankDebtLimit < 800):
|
|
|
+ 'You cannot afford the 10cm dildo.'
|
|
|
+ else
|
|
|
+ if money >= 1200 and maddildo = 0:
|
|
|
+ act 'Buy 40cm long dildo (1,200 <b>₽</b>)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ maddildo = 1
|
|
|
+ money -= 1200
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 40cm long dildo and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 1200 and maddildo = 0:
|
|
|
+ act 'Buy 40cm long dildo (1,200 <b>₽</b>)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ maddildo = 1
|
|
|
+ karta -= 1200
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a 40cm long dildo and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop','start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif maddildo = 0:
|
|
|
- 'You cannot afford the 40cm long dildo.'
|
|
|
end
|
|
|
|
|
|
- if money >= 800 and vibrator = 0:
|
|
|
- act 'Buy vibrator (800 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- vibrator = 1
|
|
|
- money -= 800
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a vibrator and paid the cashier.'
|
|
|
+ if vibrator = 0 and (money < 800 and karta + bankDebtLimit < 800):
|
|
|
+ 'You cannot afford the 10cm dildo.'
|
|
|
+ else
|
|
|
+ if money >= 800 and vibrator = 0:
|
|
|
+ act 'Buy vibrator (800 <b>₽</b>)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ vibrator = 1
|
|
|
+ money -= 800
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a vibrator and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif vibrator = 0:
|
|
|
- 'You cannot afford the vibrator.'
|
|
|
- end
|
|
|
+ if karta + bankDebtLimit >= 800 and vibrator = 0:
|
|
|
+ act 'Buy vibrator (800 <b>₽</b>)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ vibrator = 1
|
|
|
+ karta -= 800
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a vibrator and paid the cashier.'
|
|
|
|
|
|
- if money >= 1200 and strapon = 0 and (dildo + middildo + largedildo + bigdildo + extradildo + superdildo + maddildo = 0):
|
|
|
- act 'Buy a strapon with a 15cm dildo (1,200 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- strapon = 1
|
|
|
- dildo = 1
|
|
|
- money -= 1200
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a strapon and paid the cashier.'
|
|
|
-
|
|
|
- act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif money >= 500 and strapon = 0 and (dildo + middildo + largedildo + bigdildo + extradildo + superdildo + maddildo ! 0):
|
|
|
- act 'Buy a strapon harness (500 <b>₽</b>)':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- strapon = 1
|
|
|
- money -= 500
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a strapon and paid the cashier.'
|
|
|
+ end
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ if strapon = 0:
|
|
|
+ if (money < 1200 and karta + bankDebtLimit < 1200) and (dildo + middildo + largedildo + bigdildo + extradildo + superdildo + maddildo = 0):
|
|
|
+ 'You cannot afford the strapon.'
|
|
|
+ if money >= 1200:
|
|
|
+ act 'Buy a strapon with a 15cm dildo 1,200 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ strapon = 1
|
|
|
+ dildo = 1
|
|
|
+ money -= 1200
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a strapon and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 1200:
|
|
|
+ act 'Buy a strapon with a 15cm dildo 1,200 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ strapon = 1
|
|
|
+ dildo = 1
|
|
|
+ karta -= 1200
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a strapon and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ elseif (money < 500 and karta + bankDebtLimit < 500) and (dildo + middildo + largedildo + bigdildo + extradildo + superdildo + maddildo ! 0):
|
|
|
+ if money >= 1200:
|
|
|
+ act 'Buy a strapon harness 500 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ strapon = 1
|
|
|
+ money -= 500
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a strapon and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 1200:
|
|
|
+ act 'Buy a strapon harness 500 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ strapon = 1
|
|
|
+ karta -= 500
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a strapon and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
+ end
|
|
|
end
|
|
|
- elseif strapon = 0:
|
|
|
- 'You cannot afford a strap on.'
|
|
|
end
|
|
|
|
|
|
- if money >= 800 and analplug = 0:
|
|
|
- act 'Buy butt plug 800 <b>₽</b>':
|
|
|
- *clr & cla
|
|
|
- menu_off = 1
|
|
|
- minut += 5
|
|
|
- analplug = 1
|
|
|
- money -= 800
|
|
|
- gs 'stat'
|
|
|
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
- 'You bought a butt plug and paid the cashier.'
|
|
|
+ if analplug = 0 and (money < 800 and karta + bankDebtLimit < 800):
|
|
|
+ 'You cannot afford the butt plug.'
|
|
|
+ else
|
|
|
+ if money >= 800 and analplug = 0:
|
|
|
+ act 'Buy butt plug 800 <b>₽</b> (cash)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ analplug = 1
|
|
|
+ money -= 800
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a butt plug and paid the cashier.'
|
|
|
|
|
|
- act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
+ end
|
|
|
+ if karta + bankDebtLimit >= 800 and analplug = 0:
|
|
|
+ act 'Buy butt plug 800 <b>₽</b> (card)':
|
|
|
+ *clr & cla
|
|
|
+ menu_off = 1
|
|
|
+ minut += 5
|
|
|
+ analplug = 1
|
|
|
+ karta -= 800
|
|
|
+ gs 'stat'
|
|
|
+ '<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
|
|
|
+ 'You bought a butt plug and paid the cashier.'
|
|
|
+
|
|
|
+ act 'Move away from the counter':gt 'sexshop', 'start'
|
|
|
+ end
|
|
|
end
|
|
|
- elseif analplug = 0:
|
|
|
- 'You cannot afford the butt plug.'
|
|
|
end
|
|
|
end
|
|
|
|