Advertisement
coinwalk

2021 snowy mega bot

Sep 5th, 2021
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. ---snowy mega bot lua script
  2. ---for use with paradice.in on mydicebot
  3. ---created 2021
  4. bob = 1000000
  5. b = balance/50000
  6. x = bob
  7. g = true
  8. chance = 49.5 --- chance for 2x
  9. bethigh = false
  10. nextbet = b
  11. f = 0
  12. target = balance*1000
  13. old = balance
  14. v = bob
  15. resetstats()
  16.  
  17. function dobet()
  18. if win then
  19. v = v-1
  20. else
  21. v = v+1
  22. end
  23. if (v<=(x-6)) then
  24. nextbet = previousbet*2
  25. x = v
  26. end
  27. if (v>=(x+4)) then
  28. nextbet = previousbet*2
  29. x = v
  30. end
  31. if (balance>=(old+(b*10))) then
  32. nextbet = b
  33. v = bob
  34. x = bob
  35. lol = true
  36. old = balance
  37. end
  38. if (balance>target) then
  39. stop()
  40. end
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement