Advertisement
coinwalk

snowy mega 5yrs in making

Sep 13th, 2021
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. bob = 1000000
  2. b = balance/50000 ---basebet
  3. x = bob
  4. chance = 49.5 ---2x
  5. bethigh = false
  6. nextbet = b
  7. target = balance*1000
  8. old = balance
  9. v = bob
  10. resetstats()
  11.  
  12. function dobet()
  13. if win then
  14. v = v+1
  15. else
  16. v = v-1
  17. end
  18. if (v<=(x-4)) then
  19. nextbet = previousbet*2
  20. x = v
  21. end
  22. if (v>=(x+7)) then
  23. nextbet = previousbet*2
  24. x = v
  25. end
  26. if (balance>=(old+(b*10))) then
  27. nextbet = b
  28. v = bob
  29. x = bob
  30. y = bob
  31. old = balance
  32. end
  33. if (balance>target) then
  34. stop()
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement