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:stable profit script. thanks to Seuntjie for makinig the dicebot software
Uploaded by: longxu
Discription:
We are playing 49.5 chance A simple few line of script will make you profit! but you have to follow the instruction. I make a short video and upload on youtube watch it you will understand I guess.

https://www.youtube.com/watch?v=1DIwcugWGdQ






CommentsLogin or Register
cryptomonk29:06:2019 08:27
thanks, i watched the video; a matter to think about..
    Login or Register
cryptomonk29:06:2019 08:30
This comment has been removed.
    Login or Register
cryptomonk03:12:2019 17:54
This comment has been removed.
    Login or Register
Robert30:09:2019 22:36
Sorry for this. But I made little bit changes to make it safer.

--READ ME!!!
--1 coin to play basebet at 0.00000512
--10 coin to play basebet at 0.00005120
--100 coin to play basebet at 0.00051200
--stop take profit at 0.00512000 if basebet=0.00000512
--stop take profit at 0.05120000 if basebet=0.00005120
--stop take profit at 0.51200000 if basebet=0.00051200
--play only you see uptrend on the chart!!!! for the first 500bets
--if you see chart are flat stop and re-start. This mean unstable
-----------------------------------------------------------
-----------------------------------------------------------
chance  = 66
basebet = 0.00000001 -- at least 1 coin to play basebet at 0.00000512
nextbet = basebet
bethigh = false
resetstats()
target = balance+0.00001000 -- profit stop base on basebet 
-----------------------------------------------------------
-----------------------------------------------------------
function dobet()

print("")
print("     ---  Code By Chris  ---") -- you can modify to your own name
print("     BETTING CURRENCY : ".." --- "..string.upper(currency).." --- ") -- this is showing your current currency
print("")
    
if win then nextbet=basebet end
--
if balance>=target then stop() alarm() end
--
if currentstreak>=2 then nextbet=basebet end
if currentstreak>=2 then resetstats() alarm() end
if currentstreak>=-1 then nextbet=basebet end 
if currentstreak==1 then
    nextbet = wagered*2
end
-----------------------------------------------------------
-----------------------------------------------------------
end
end
    Login or Register
Robert30:09:2019 22:39
my base bet is balance/100000
    Login or Register