Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --chance = math.random (30,45.2381) -- % Chance to Win
- basebet = balance * 0.0001 -- Prebet Value
- target = 0.1 -- Adjust your Target Profit here
- base = balance * 0.0005 -- BaseBet after prebet losses
- prebet = 5 -- Prebets before the Main betting
- targetbal = balance + target
- HiLoOnWin = true -- True if random High or Low bets
- initbalance = balance
- change = 1
- mult = 2.1 -- Multiplier after a loss
- loststreak = 0
- hiloss = 0
- counter = 0
- nextbet = basebet
- wincount = 0
- resetseed()
- resetbuiltin()
- local total_vaulted = 0
- global_goal = targetbal * 0.1
- global_vault = targetbal * 0.05
- partial_goal = targetbal * 0.01
- partial_vault = targetbal * 0.005
- -- // BODY OF THE SCRIPT // --
- -- // DON'T TOUCH IF YOU DON'T KNOW WHAT YOU'RE DOING // --
- function dobet()
- counter+=1
- if counter == 500 then
- start()
- counter = 0
- end
- print("")
- print("Counter:"..counter)
- print("Highest Loss Streak:"..hiloss)
- print("Current Profit:"..string.format("%3.8f",balance-initbalance))
- print("Total Vaulted:"..total_vaulted)
- print("")
- if win then
- loststreak = 0
- end
- if HiLoOnWin then
- wincount += 1
- change = math.random(1,3)
- if wincount >= change then
- --bethigh = not bethigh
- wincount = 0
- end
- end
- nextbet = basebet
- if !win then
- loststreak+=1
- if loststreak > hiloss then
- hiloss = loststreak
- end
- end
- if loststreak == prebet then
- nextbet = base
- end
- if loststreak > prebet then
- print ("===================================")
- print (" <<< RECOVER MODE >>> ")
- print ("===================================")
- chance = math.random (20,45.2381)
- nextbet = previousbet * mult
- end
- if loststreak > math.random(6,10) then
- print ("===================================")
- print (" <<< STOP LOSS..! >>> ")
- print ("===================================")
- resetprofit()
- resetpartialprofit()
- start()
- end
- if(profit > global_goal) then
- if(site.CanVault) then
- print ("===================================")
- print (" <<< BOOOM..!! >>> ")
- print ("===================================")
- vault(global_vault)
- total_vaulted = total_vaulted+global_vault
- end
- resetprofit()
- else
- if(partialprofit > partial_goal) then
- if(site.CanVault) then
- print ("===================================")
- print (" ...TO VAULT... ")
- print ("===================================")
- vault(partial_vault)
- total_vaulted = total_vaulted+partial_vault
- end
- resetpartialprofit()
- end
- end
- end -- End of dobet() --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement