1
0

amrul 570 B

1234567891011121314151617181920212223242526272829303132333435
  1. # amrul
  2. clr
  3. minut += 5
  4. kh = 0
  5. chnch = 0
  6. mb = 0
  7. du = 0
  8. series = 0
  9. chi = 100
  10. x_rul = 100
  11. gs 'stat'
  12. '<center><img src="images/casino/amrul.jpg"></center>'
  13. 'You lean over the table.'
  14. act 'Make a bet':
  15. st_1 = input 'Enter the amount'
  16. if money < st_1:
  17. msg 'You have enough money'
  18. gt 'roulette'
  19. elseif st_1 < 0:
  20. msg 'You can''t bet a negative amount.'
  21. gt 'amrul'
  22. elseif st_1 > 1000:
  23. msg 'The maximum rate is 1000 rubles'
  24. gt 'amrul'
  25. end
  26. money -= st_1
  27. gt 'rate'
  28. end
  29. act 'Move away from the table':gt 'roulette'
  30. --- amrul ---------------------------------