Advertisement
Ypleitez

Untitled

Oct 19th, 2023
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. --What_If v1.12
  2. --By GeorgeReen
  3. --Easy to understand, but it basically reduces the chance after
  4. --x amount of bets till it hits or dies
  5. --There are spikes of bets everytime the chance resets so keep that in mind.
  6.  
  7.  
  8. game = "dice" --Not needed unless you swap between games
  9. chance = 48.5
  10. basebet = balance/10000
  11. nextbet = basebet
  12. bethigh = false
  13. ath = 0
  14. rr = balance
  15. cc = 4
  16. function dobet()
  17. bethigh = not bethigh
  18. if(balance>ath)then ath=balance end
  19. if win then
  20. if balance > rr then
  21. basebet = balance/10000
  22. rr = balance
  23. end
  24. end
  25. if win then
  26. nextbet = basebet
  27. chance = 48.5
  28. cc = 4
  29. else
  30. if currentstreak%cc==0 then
  31. cc = cc+3
  32. chance = chance - 10
  33. if chance < 20 then
  34. chance = 42
  35. end
  36. end
  37. nextbet = math.max(basebet,(ath-balance)/(99/chance-1.05))
  38. end
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement