Advertisement
coinwalk

update v 3

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