coinwalk

coolieo

Nov 29th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. chance = 44.4
  2. nextbet = balance/200000
  3. base = balance/200000
  4. bethigh = true
  5. target = 10000
  6. maxline = base*81
  7. multi = 2
  8. zog = 0
  9. insane = 0
  10. function dobet()
  11. if (win) then
  12. insane += 1
  13. zog = 0
  14. else
  15. zog += 1
  16. end
  17. if (math.fmod(zog,2)==0) and (zog > 0) then
  18. if (bethigh==true) then bethigh=false else bethigh=true end
  19. nextbet = previousbet*4
  20. end
  21. if nextbet > (base*16) and win then
  22. base = balance/200000
  23. nextbet = base
  24. insane = 0
  25. end
  26. if balance > target then
  27. stop()
  28. end
  29. end
Add Comment
Please, Sign In to add comment