Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --What_If v1.12
- --By GeorgeReen
- --Easy to understand, but it basically reduces the chance after
- --x amount of bets till it hits or dies
- --There are spikes of bets everytime the chance resets so keep that in mind.
- game = "dice" --Not needed unless you swap between games
- chance = 48.5
- basebet = balance/10000
- nextbet = basebet
- bethigh = false
- ath = 0
- rr = balance
- cc = 4
- function dobet()
- bethigh = not bethigh
- if(balance>ath)then ath=balance end
- if win then
- if balance > rr then
- basebet = balance/10000
- rr = balance
- end
- end
- if win then
- nextbet = basebet
- chance = 48.5
- cc = 4
- else
- if currentstreak%cc==0 then
- cc = cc+3
- chance = chance - 10
- if chance < 20 then
- chance = 42
- end
- end
- nextbet = math.max(basebet,(ath-balance)/(99/chance-1.05))
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement