Need help with the bot or want someone to talk to?
FORUM.SEUNTJIE.COM

The forum is a good platform for asking or offering help with programmer mode scripts

LUA Scripts

Download a script for your bot, or upload your own to share with other users. Login or Register to upload

How do I use this?


Name:P 1.0
Uploaded by: Punisher
Discription:
--- 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.





CommentsLogin or Register
bobwood21:12:2018 05:11
Betting Stopped!
[string "chunk"]:27: attempt to perform arithmetic on global 'roundprofit' (a nil value
    Login or Register
Punisher26:12:2018 15:34

-- 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
    Login or Register
BetaBitcoin22:12:2018 00:55
This comment has been removed.
    Login or Register
BetaBitcoin22:12:2018 00:56
Está dando erro conforme o comentário anterior
    Login or Register
Punisher26:12:2018 15:35

-- 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
    Login or Register
amit88801:01:2019 04:11
This comment has been removed.
    Login or Register
Tomy4518:09:2020 10:32
This is exactly the same script like two previous scripts.


For fix this script put above function dobet() this:

roundprofit = 0
b           = 0
    Login or Register