Advertisement
coinwalk

snowy

Feb 11th, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 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. amo = 3
  14. ammo = 2
  15. mim = 0
  16. shit = balance*1.0001
  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.0001
  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. end
  51. if (chance==min) and bit >= ammo and !win then
  52. bethigh = true
  53. bit = 0
  54. box = 0
  55. end
  56. if (chance==min) and box >= ammo and !win then
  57. bethigh = false
  58. bit = 0
  59. box = 0
  60. end
  61. if (chance == cox) and bit >= amo then
  62. bethigh = true
  63. chance = min
  64. nextbet = balance/10000
  65. box = 0
  66. bit = 0
  67. resetseed()
  68. end
  69. if (chance == cox) and box >= amo then
  70. bethigh = false
  71. chance = min
  72. nextbet = balance/10000
  73. box = 0
  74. bit = 0
  75. resetseed()
  76. end
  77. if balance > good then
  78. stop()
  79. end
  80. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement