401_avt2 903 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # avt2
  2. *PL 'Game rules are very simple: toss a coin 100 rubles and you pull the lever. Jackpot million rubles.'
  3. *P '<center><img src="images\casino\avt.jpg"></center>'
  4. ACT 'Pull the lever':
  5. if money >= 100:
  6. x_10 = rand(1,1000)
  7. money = money - 100
  8. if x_10 = 1000:
  9. set money += 1000000
  10. msg 'You won the jackpot! Congratulations!'
  11. end
  12. if x_10 < 1000 and x_10 > 850:
  13. set money += 200
  14. msg 'Congratulations, you won 200 rubles'
  15. end
  16. if x_10 > 500 and x_10 <= 850:
  17. set money += 100
  18. msg 'Congratulations, you have won 100 rubles'
  19. end
  20. if x_10 <= 500:
  21. msg 'Alas, you lost, try again'
  22. end
  23. clr
  24. gt 'avt2'
  25. else
  26. msg 'And how are you going to play without money? Come back when you find the necessary amount'
  27. gt 'avt2'
  28. end
  29. END
  30. ACT 'Back to the Hall':
  31. gt 'igravt'
  32. END
  33. clr
  34. gs 'stat'
  35. set minut += 10
  36. --- avt2 ---------------------------------