Advertisement
Ypleitez

Untitled

Jan 6th, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. chance = 65
  2. chwin = 77
  3. chlose = {12.44,14.3,6.22,7.15,3.11,3.575,1.555,1.7875,0.7775,0.89375}
  4. chindex = 1
  5. use_first_index = false
  6. multi = 1.2
  7. bethigh = true
  8. div = 50000
  9. bb = balance / div
  10. nextbet = bb
  11. target = balance + 1000
  12.  
  13. function dobet()
  14. if balance >= target then stop() end
  15.  
  16. if win then
  17. chance = chwin
  18. bethigh = not bethigh
  19. nextbet = bb
  20. else
  21. chindex = math.random(1, #chlose)
  22. chance = chlose[chindex]
  23. nextbet = previousbet * multi
  24. end
  25.  
  26. if chance < chlose[1] and use_first_index then
  27. chance = chlose[1]
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement