Advertisement
coinwalk

trial 5 snowy

Feb 11th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. bethigh = true
  2. good = 750000
  3. prebet = 0
  4. nextbet = prebet
  5. box = 0
  6. bit = 0
  7. min = 49.95
  8. max = 50.05
  9. base = 1
  10. multi = 2.2
  11. cox = 65
  12. chance = cox
  13. zog = 0
  14. amo = 2
  15. ammo = 3
  16. shit = balance*1.00001
  17. function dobet()
  18. if win and (chance==min) then
  19. mim+=1
  20. chance = min
  21. end
  22. if (chance==min) and (zog > 0) and win then
  23. nexbet = prebet
  24. mim = 0
  25. chance = cox
  26. end
  27. if (chance==min) and (zog > 0) and !win then
  28. nextbet = previousbet*multi
  29. chance = min
  30. end
  31. if balance > shit and win then
  32. nextbet = prebet
  33. zog = 0
  34. chance = cox
  35. shit = balance*1.00001
  36. end
  37. if (chance == min) and !win then
  38. nextbet = previousbet*multi
  39. end
  40. if lastBet.Roll < min then
  41. box+=1
  42. bit = 0
  43. end
  44. if lastBet.Roll > max then
  45. bit+=1
  46. box = 0
  47. end
  48. if lastBet.Roll < max and lastBet.Roll > min then
  49. bit = 0
  50. box = 0
  51. end
  52. if (chance==min) and bit >= amo and !win then
  53. bethigh = true
  54. end
  55. if (chance==min) and box >= amo and !win then
  56. bethigh = false
  57. end
  58. if (chance==cox) and bit >= ammo then
  59. bethigh = true
  60. chance = min
  61. nextbet = balance/1000000
  62. box = 0
  63. bit = 0
  64. resetseed()
  65. end
  66. if (chance==cox) and box >= ammo then
  67. bethigh = false
  68. chance = min
  69. nextbet = balance/1000000
  70. box = 0
  71. bit = 0
  72. resetseed()
  73. end
  74. if balance > good then
  75. stop()
  76. end
  77. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement