Ypleitez

Untitled

Oct 20th, 2023
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. chance = 98
  2. bethigh = true
  3. basebet = 0.0002 + balance/5000
  4. nextbet = 0.0002 + balance/5000
  5. roundprofit = 0.00000001
  6. round = 0
  7. tp = 100000
  8.  
  9. function dobet()
  10. round = round + currentprofit
  11.  
  12. if(win) then
  13.  
  14. chance = chance-1
  15. nextbet = previousbet*2
  16.  
  17. else
  18.  
  19. chance = chance+2
  20. nextbet = previousbet/2
  21. end
  22.  
  23. if (round > roundprofit) then
  24. round = 0
  25. nextbet = 0.0002 + balance/5000
  26. chance = 98
  27.  
  28. end
  29. if nextbet < basebet then nextbet = 0.0002 + balance/5000 end
  30. if chance > 98 then chance = 98 end
  31. if chance < 90 then chance = 98 end
  32. if nextbet > balance then nextbet = previousbet/3 end
  33. end
Add Comment
Please, Sign In to add comment