Advertisement
coinwalk

snowy 750

Mar 7th, 2021
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. basebet = 0.01
  2. base = basebet
  3. chance = 80
  4. nextbet = basebet
  5. bethigh = false
  6. oldbal = balance
  7. target = 50000
  8. sux = 0
  9. wage = 0
  10.  
  11.  
  12. function dobet()
  13. wage = wage+previousbet
  14. if (not win) and (chance==80) then
  15. nextbet = previousbet*2
  16. chance = 24
  17. end
  18. if (not win) and (chance==24) then
  19. nextbet = ((wage/3)+basebet)
  20. sux = sux+1
  21. end
  22. if (win) and (chance==24) then
  23. sux = 0
  24. chance = 80
  25. end
  26. if (sux>=5) then
  27. nextbet = wage*10
  28. chance = 80
  29. sux = 0
  30. end
  31. if (balance>=oldbal) then
  32. nextbet = basebet
  33. sux = 0
  34. wage = 0
  35. oldbal = balance
  36. end
  37. if (balance>=target) then
  38. stop()
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement