Advertisement
coinwalk

Untitled

Sep 27th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. --so crazy you'll win
  2. --made by James William Snow
  3. --MEGA SNOWY BOT WITH CRAZY BOT TECHNOLOGY
  4. basebet = balance/10000
  5. base = basebet
  6. bethigh = false
  7. chance = 49.5
  8. have = balance
  9. old = balance
  10. darn = 2.5
  11. bug = balance
  12. target = 5000
  13. upper = 6.5
  14. downer = false
  15. nextbet = basebet
  16. resetstats()
  17.  
  18. function dobet()
  19. if (balance>(have+(base*upper))) then
  20. nextbet = lastBet.Amount*2
  21. base = nextbet
  22. upper = 4.5
  23. darn = 4.5
  24. have = balance
  25. end
  26. if (balance<(have-(base*darn))) then
  27. nextbet = lastBet.Amount*2
  28. base = nextbet
  29. downer = true
  30. darn = 4.5
  31. upper = 4.5
  32. have = balance
  33. end
  34. if ((balance>(old+(basebet*10))) or ((balance>=old) and (downer==true))) then
  35. base = basebet
  36. nextbet = basebet
  37. chance = 49.5
  38. downer = false
  39. darn = 2.5
  40. upper = 6.5
  41. have = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  42. pip = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  43. old = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  44. end
  45. if (balance>=target) then
  46. stop()
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement