123456789101112131415161718192021222324252627282930313233343536 |
- # amrul
- clr
- minut += 5
- kh = 0
- chnch = 0
- mb = 0
- du = 0
- series = 0
- chi = 100
- x_rul = 100
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/city/industrial/casino/amrul.jpg"></center>'
- 'You lean over the table.'
- act 'Make a bet':
- st_1 = input 'Enter the amount'
- if money < st_1:
- msg 'You have enough money'
- gt 'roulette'
- elseif st_1 < 0:
- msg 'You can''t bet a negative amount.'
- gt 'amrul'
- elseif st_1 > 1000:
- msg 'The maximum rate is 1000 <b>₽</b>'
- gt 'amrul'
- end
- money -= st_1
- gt 'rate'
- end
- act 'Move away from the table':gt 'roulette'
- --- amrul ---------------------------------
|