423_rate 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # rate
  2. *PL '<right><img src="images\casino\stavkaru.jpg"></right>'
  3. *NL
  4. *P 'What will be put?'
  5. ACT 'Red / Black':
  6. cla
  7. act 'Red':
  8. кч = 1
  9. gt 'RESULTS'
  10. end
  11. act 'Black':
  12. кч = 2
  13. gt 'RESULTS'
  14. end
  15. END
  16. ACT 'Even / Odd':
  17. cla
  18. act 'Even':
  19. чнч = 1
  20. gt 'RESULTS'
  21. end
  22. act 'Odd':
  23. чнч = 2
  24. gt 'RESULTS'
  25. end
  26. END
  27. ACT 'Small / Large':
  28. cla
  29. act 'Small: 1-18':
  30. мб = 1
  31. gt 'RESULTS'
  32. end
  33. act 'Large: 19-36':
  34. мб = 2
  35. gt 'RESULTS'
  36. end
  37. END
  38. ACT 'Dozen':
  39. cla
  40. act 'first dozen: 1-12':
  41. дю = 1
  42. gt 'RESULTS'
  43. end
  44. act 'Two Dozen: 13-24':
  45. дю = 2
  46. gt 'RESULTS'
  47. end
  48. act 'third dozen: 25-36':
  49. дю = 3
  50. gt 'RESULTS'
  51. end
  52. END
  53. ACT 'Series':
  54. cla
  55. act 'first row: 1,4,7,10,13,16,19,22,25,28,31,34':
  56. ряд = 1
  57. gt 'RESULTS'
  58. end
  59. act 'second row 2,5,8,11,14,17,20,23,26,29,32,35':
  60. ряд = 2
  61. gt 'RESULTS'
  62. end
  63. act 'third row: 3,6,9,12,15,18,21,24,27,30,33,36':
  64. ряд = 3
  65. gt 'RESULTS'
  66. end
  67. END
  68. ACT 'Number':
  69. чи = input 'Enter a number from 0-36'
  70. if чи < 0 and чи > 36:
  71. msg 'Said that it was only from 0 to 36'
  72. gt 'rate'
  73. end
  74. gt 'RESULTS'
  75. END
  76. ACT 'Nothing':
  77. gt 'amrul'
  78. END
  79. кч = 0
  80. чнч = 0
  81. мб = 0
  82. дю = 0
  83. ряд = 0
  84. чи = 100
  85. clr
  86. gs 'stat'
  87. set minut += 5
  88. --- rate ---------------------------------