LUA Scripts
--- Por favor, se obtiver ganhos faça uma doação para que eu possa fazer teste em outros scripts --- Please, if you win, make a donation so that I can test in other scripts. --- Endereço/Address dogecoin --- DSGHRrXsVHZxCotQtokBpsZ6mjgd7z5ZC4 ------ martingale-based strategy. starts from a low chance and with losses the chances increase. Estrategia baseada em martingale. começa de uma chance baixa e com as perdas as chances aumentam.
Betting Stopped! [string "chunk"]:27: attempt to perform arithmetic on global 'roundprofit' (a nil value
-- BET Prebet = 0.000001 nmin = Prebet nmax = Prebet * 1.189325 n = math.random(nmin*100000000, nmax*100000000)/100000000 base = n mult = 1.01 s = 0 roundprofit = 0 b = balance -- chance chmin = 10 chmax = 30 ch1= 32 ch2= 55 ch = math.random(chmin*100.0, chmax*100.0)/100.0 chance = ch nextbet = Prebet ---Seeds seedmin = 5 seedmax = 10 function dobet() seedrandom = math.random(seedmin*100.0, seedmax*100.0)/100.0 n = math.random(nmin*100000000, nmax*100000000)/100000000 r = math.random(2) ch = math.random(chmin*100.0, chmax*100.0)/100.0 if r == 1 then bethigh = true else bethigh = false end roundprofit += currentprofit prof = (balance - b) * 100 / b print(" ----------------------------- ----------------------------- ") print(" Lucro - Profit: "..string.format("%.8f", profit)..string.format(" %.3f", prof).." % ") print(" ----------------------------- ----------------------------- ") print(" Profit Round: "..string.format(" %.8f", roundprofit)) print(" ----------------------------- ----------------------------- ") if win then ch = math.random(chmin*100.0, chmax*100.0)/100.0 chance = ch base = n s = 0 resetseed() else ch = math.random(ch1*100.0, ch2*100.0)/100.0 chance = ch s = s + base base = s/(100/chance/1.01-1)* mult for q=1, seedrandom do resetseed() end if(base < n) then base = n end end nextbet = base end
This comment has been removed.
Está dando erro conforme o comentário anterior
This is exactly the same script like two previous scripts. For fix this script put above function dobet() this: roundprofit = 0 b = 0