Advertisement
Baliarta

KALO HOKI

Apr 21st, 2024 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. startbase   = 0.0001
  2. nextbet     = startbase
  3. chance      = 80
  4. chancex     = {1,5,2,10,3,5,4,10,5,10,17}
  5. chindex     = 1
  6. first_index = false
  7.  
  8. function dobet()
  9. if win and (partialprofit > 0) then
  10. chance = 80
  11. nextbet = startbase
  12. resetpartialprofit ()
  13. else
  14. if chance < 50 then
  15. chance = 80
  16. multi  = 1 + ((chance/100) * 1.14) 
  17. nextbet = previousbet * multi
  18. end
  19. if chance == 80 then
  20. chindex = math.random(1, #chancex)
  21. chance  = chancex[chindex]  
  22. multi   = 1 + ((chance/100) * 1.8) 
  23. nextbet = previousbet * multi
  24. end
  25. nextbet = nextbet * multi
  26. multi   = multi + 0.25
  27. end
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement