Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Please have at least 0.00100000 collateral
- -- and set betcalc using one of the following
- -- numbers, 7 loss streaks is usually the highest
- -- result with 60k bets, 100k bets and over 180k bets I have
- -- not yet seen a 8 loss streak.
- -- 6 max losses (ludicrous) - 100.938608
- -- 7 max losses (stupid) - 27.364138
- -- 8 max losses (risky) - 7.3446286
- -- 9 max losses (safe) - 1.9714477
- -- 10 max losses (safest) - 0.5291766
- -- 11 max losses (sleepy) - 0.1420417
- betcalc = 0.1420417
- --------------------------------------dont change anything after this line
- --------------------------------------execpt you know what you do
- if (betcalc < 0.01) then print("Please set betcalc then restart the script") stop() end
- function changebet()
- if (balance<=100.00000000) then
- print ("i'm so' crying,....loserr") stop()end
- if (balance>=3000.00000000) then
- print ("i'm so' happy,....but i'm..The Winnerr") stop()end
- randhilo= math.random(1,10)
- if(randhilo > 5) then
- return true
- else
- return false
- end
- end
- first = true
- done = true
- chance = 27.5
- bethigh = changebet()
- base = balance * (betcalc / 100000)
- curbet = base * 3.7255
- nextbet = base
- function dobet()
- base = balance * (betcalc / 100000)
- if (first) then
- if not(win) then
- chance = 50
- nextbet = curbet
- first = false
- done = true
- else
- randswitch= math.random(1,10)
- if (randswitch > 4) then
- bethigh = changebet()
- end
- end
- end
- if (not(first) and not(done)) then
- if win then
- chance = 27.5
- curbet = base * 3.7255
- nextbet = base
- first = true
- done = true
- randswitch= math.random(1,10)
- if (randswitch > 7) then
- bethigh = changebet()
- end
- else
- curbet = curbet * 3.7255
- bethigh = changebet()
- nextbet = curbet
- chance = 72.5
- end
- end
- done = false
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement