Advertisement
coinwalk

best bot awesome 4some

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