Advertisement
coinwalk

works ye harr!!!!

Mar 1st, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. bethigh = true
  2. good = 40000
  3. prebet = balance/1024000
  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. function dobet()
  14. if win then
  15. chance = cox
  16. nextbet = prebet
  17. bethigh = true
  18. end
  19. if (chance==min) and !win then
  20. nextbet = previousbet*2
  21. end
  22. if lastBet.Roll < min then
  23. box+=1
  24. bit = 0
  25. end
  26. if lastBet.Roll > max then
  27. bit+=1
  28. box = 0
  29. end
  30. if lastBet.Roll > min and lastBet.Roll < max then
  31. bit = 0
  32. box = 0
  33. end
  34. if (chance == min) and bit >= 3 and !win then
  35. bethigh = true
  36. end
  37. if (chance == min) and box >= 3 and !win then
  38. bethigh = false
  39. end
  40. if (chance == cox) and bit >= 5 then
  41. bethigh = true
  42. nextbet = balance/10240
  43. chance = min
  44. box = 0
  45. bit = 0
  46. end
  47. if (chance == cox) and box >= 5 then
  48. bethigh = false
  49. nextbet = balance/10240
  50. chance = min
  51. box = 0
  52. bit = 0
  53. end
  54. if balance > good then
  55. stop()
  56. end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement