Advertisement
coinwalk

Untitled

Oct 3rd, 2022
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 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 = 0.0001
  5. base = basebet
  6. bethigh = false
  7. chance = 49.5
  8. have = balance
  9. old = balance
  10. darn = 2.5
  11. upper = 6.5
  12. target = (balance*2)
  13. downer = false
  14. tar = balance
  15. nextbet = basebet
  16. resetstats()
  17.  
  18. function dobet()
  19. if (balance>(have+(base*upper))) then
  20. nextbet = base*2
  21. base = base*2
  22. darn = 4.5
  23. have = balance
  24. end
  25. if (balance<(have-(base*darn))) then
  26. nextbet = base*2
  27. base = base*2
  28. downer = true
  29. darn = 4.5
  30. upper = 4.5
  31. have = balance
  32. end
  33. if (((downer==true) and (balance>=old)) or (balance>(old+(basebet*10)))) then
  34. nextbet = basebet
  35. base = basebet
  36. nextbet = basebet
  37. upper = 6.5
  38. darn = 2.5
  39. downer = false
  40. tar = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  41. have = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  42. old = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  43. end
  44. if (balance<=(tar-(basebet*20))) then
  45. nextbet = basebet
  46. base = basebet
  47. nextbet = basebet
  48. upper = 6.5
  49. darn = 2.5
  50. downer = false
  51. have = balance
  52. tar = balance
  53. end
  54. if (balance>=target) then
  55. stop()
  56. end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement