Advertisement
Baliarta

CENGWUR

Apr 16th, 2023
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. base = balance/1500000
  2. nextbet = base
  3. target = 500
  4. multi = 1.5
  5. chance = 5
  6. losecount = 0
  7. bethigh = false
  8. function dobet()
  9. --Randomizer
  10. r=math.random(2)
  11. if r == 1 then
  12. bethigh=true
  13. else
  14. bethigh=false
  15. end
  16. if currentstreak <= -15 then
  17. nextbet = previousbet * 1.5
  18. chance = math.random(5,25)
  19. losecount+=1
  20. else
  21. if win then
  22. chance = 5
  23. nextbet = base
  24. end
  25. end
  26. if balance >= target then
  27. stop()
  28. print(" ")
  29. print("Winnneerrrr")
  30. print(" ")
  31. end
  32. print("chance : "..chance)
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement