Advertisement
coinwalk

grrr

Mar 24th, 2020
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. chance = 33
  2. bex = 0
  3. bit = 0
  4. base = balance/1000000
  5. nextbet = base
  6. chit = balance*1.000001
  7. stip = balance*2
  8. bethigh = false
  9. function dobet()
  10. if !win then
  11. bex+=1
  12. bit+=1
  13. else
  14. bex = 0
  15. bit = 0
  16. end
  17. if (bex==2) then
  18. nextbet = previousbet*(math.random(20,25)/10)
  19. bex = 0
  20. end
  21. if (bit==3) then
  22. nextbet = previousbet*(math.random(20,25)/10)
  23. bit = 0
  24. end
  25. if nextbet > balance/64000 and win then
  26. nextbet = balance/1000000
  27. end
  28. if balance > chit and win then
  29. nextbet = balance/1000000
  30. chit = balance*1.000001
  31. end
  32. if balance > stip and win then
  33. stop()
  34. end
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement