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:
Script baseado na técnica de martingale. 
as apostas começam em valores de chances mais baixos e se houver perda as chances sobem.

Script based on martingale technique.
bets start at lower odds and if there is a loss chances go up.

Faça uma doação para contribuir com os testes de novos scripts
Make a donation to contribute with the tests of new scripts

address dogecoin:
---DSGHRrXsVHZxCotQtokBpsZ6mjgd7z5ZC4 ----





CommentsLogin or Register
Tomy4517:09:2020 20:31
Fixed script:



roundprofit = 0
b           = 0
Prebet      = 0.000001
nmin        = Prebet
nmax        = Prebet * 1.189325
n           = math.random(nmin*100000000, nmax*100000000)/100000000
base        = n
mult        = 1.01
s           = 0
-- 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