Advertisement
coinwalk

snowy trial

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