Advertisement
coinwalk

awesome bot by snowy

Jun 17th, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. b = (balance/100000)
  2. i = balance
  3. t = false
  4. c = 3
  5. h = 0
  6. y = 7
  7. chance = 49.5
  8. nextbet = b
  9. bethigh = false
  10. target = 50000
  11. resetstats()
  12.  
  13. function dobet()
  14. if win then
  15. h = h+1
  16. else
  17. h = h-1
  18. end
  19. if (h>=7) then
  20. nextbet = previousbet*2
  21. h = 0
  22. end
  23. if (h<=(y-10)) then
  24. nextbet = previousbet*2
  25. h = 0
  26. y = 5
  27. t = true
  28. end
  29. if ((balance>(i+(b*10))) or ((balance>=i) and (t==true))) then
  30. h = 0
  31. y = 7
  32. nextbet = b
  33. t = false
  34. i = i+((math.floor((balance-i)/(b*10)))*(b*10))
  35. end
  36. if (balance>=target) then
  37. stop()
  38. end
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement