1
0

rate.qsrc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # rate
  2. clr
  3. cla
  4. minut += 5
  5. kh = 0
  6. chnch = 0
  7. mb = 0
  8. du = 0
  9. series = 0
  10. chi = 100
  11. gs 'stat'
  12. '<right><img <<$set_imgh>> src="images/locations/city/industrial/casino/stavkaru.jpg"></right>'
  13. 'What will be put?'
  14. act 'Red / Black':
  15. act 'Red':
  16. kh = 1
  17. gt 'result'
  18. end
  19. act 'Black':
  20. kh = 2
  21. gt 'result'
  22. end
  23. end
  24. act 'Even / Odd':
  25. act 'Even':
  26. chnch = 1
  27. gt 'result'
  28. end
  29. act 'Odd':
  30. chnch = 2
  31. gt 'result'
  32. end
  33. end
  34. act 'Small / Large':
  35. act 'Small: 1-18':
  36. mb = 1
  37. gt 'result'
  38. end
  39. act 'Large: 19-36':
  40. mb = 2
  41. gt 'result'
  42. end
  43. end
  44. act 'Dozen':
  45. act 'first dozen: 1-12':
  46. du = 1
  47. gt 'result'
  48. end
  49. act 'Two Dozen:13-24':
  50. du = 2
  51. gt 'result'
  52. end
  53. act 'third dozen:25-36':
  54. du = 3
  55. gt 'result'
  56. end
  57. end
  58. act 'Series':
  59. act 'First row: 1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34':
  60. series = 1
  61. gt 'result'
  62. end
  63. act 'Second row: 2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 35':
  64. series = 2
  65. gt 'result'
  66. end
  67. act 'Third row: 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36':
  68. series = 3
  69. gt 'result'
  70. end
  71. end
  72. act 'Number':
  73. chi = input 'Enter a number from 0-36'
  74. if chi < 0 and chi > 36:
  75. msg 'Said that it was only from 0 to 36'
  76. gt 'rate'
  77. end
  78. gt 'result'
  79. end
  80. act 'Nothing':gt 'amrul'
  81. --- rate ---------------------------------