authors2 869 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # authors2
  2. *pl 'Rules of the game are very simple:toss a coin 100 rubles and pull 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 -= 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 win 200 rubles'
  15. end
  16. if x_10 > 500 and x_10 <= 850:
  17. set money += 100
  18. msg 'congratulations, you win 100 rubles'
  19. end
  20. if x_10 <= 500:msg 'Alas you lose, try again'
  21. clr
  22. gt 'authors2'
  23. else
  24. msg 'And how are you going to play without money? Come back when you find the necessary amount'
  25. gt 'authors2'
  26. end
  27. end
  28. act 'Back to the hall':gt 'igravt'
  29. clr
  30. gs 'stat'
  31. set minut += 10
  32. --- authors2 ---------------------------------