Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --100x Wager (controlled-Bust-Edition) Script by kryptowilli
- --Donations: BTC: 1Lk23MhbreNB4veLSawu9Wdcu6yhYNsCBR
- chance = 80
- basebet = balance/1000
- nextbet = basebet
- multi = 0.5
- rstats = 10
- WAG = 0
- maxgreen = 0
- maxgreencounter = 0
- maxgreenprofit = 0
- Betcounter = 0
- Xprofit = 0
- function dobet()
- --counter
- if win then
- WAG += previousbet
- Betcounter += 1
- maxgreencounter += 1
- Xprofit += (previousbet+currentprofit)-previousbet
- nextbet = previousbet + (currentprofit*multi)
- end
- if not win then
- WAG += previousbet
- Betcounter += 1
- maxgreencounter = 0
- Xprofit = 0
- nextbet = basebet
- end
- --maxgreen counter
- if win and maxgreencounter > maxgreen then
- maxgreen = maxgreencounter
- end
- --maxgreenprofit
- if win and Xprofit > maxgreenprofit then
- maxgreenprofit = Xprofit
- end
- --stats console
- if Betcounter%rstats ==0 then
- print("======================================================================")
- print("")
- print("")
- print("Balance: "..string.format("%.8f", balance))
- print("")
- print("Profit: "..string.format("%.8f", profit))
- print("")
- print("Wager: "..string.format("%.8f", WAG))
- print("")
- print("Maxgreen: "..maxgreen)
- print("")
- print("Maxgreenprofit: "..string.format("%.8f", maxgreenprofit))
- print("")
- print("Bet count: "..Betcounter)
- print("")
- print("")
- print("======================================================================")
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment