Advertisement
coinwalk

lua master snowy

Sep 20th, 2020 (edited)
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. fraction = 52300
  2. basebet = balance/fraction
  3. chance = 49.95
  4. nextbet = basebet
  5. bethigh = false
  6. james = balance
  7. target = 9000
  8. bin = 0
  9. lol = basebet*2
  10. jim = basebet
  11. snow = balance
  12. william = balance
  13. resetstats()
  14. function dobet()
  15. if (balance>(james+(basebet*2))) then
  16. nextbet = previousbet*2
  17. end
  18. if !win then
  19. bin+=1
  20. end
  21. if (bin>=4) and balance<james then
  22. nextbet = previousbet*2
  23. bin = 0
  24. end
  25. if balance>james then
  26. bin = 0
  27. end
  28. if (balance>=(james+(basebet*7))) and win then
  29. nextbet = basebet
  30. bin = 0
  31. james = balance
  32. william = balance
  33. end
  34. if balance>target then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement