My Formula Script 2024
My Formula Script 2024
basebet = 1
iol =30
dow = -1.5
reset = 1
stoploss = 1000
bethigh = true
nextbet = basebet
round = 0
wager = 0
hibet = 0
largeloss = 0
highprofit = 0
startbal = balance
resetstats()
function dobet()
wager=wager+nextbet
round=round+currentprofit
if (win) then
nextbet = previousbet*(1+(dow/100))
else
nextbet = previousbet*(1+(iol/100))
end
if round>=reset or round<=-stoploss then
round=0
nextbet=basebet
end
if nextbet<basebet then nextbet=basebet
end
end