12345678910111213141516171819202122232425262728293031323334353637 |
- # amrul
- *clr & cla
- menu_off = 1
- 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 'Move away from the table':gt 'roulette'
- 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
- --- amrul ---------------------------------
|