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:UM2xV10x_v2b
Uploaded by: GlenArven
Discription:
The ultimate martingale script! 
The only thing you do is pick your 2x basebet. Based on your available balance the script will determine your minimum balance and your 2x bet multiplier. 1.1x bets are included to spice it up a little. They are safe 4 to 5 looser rolls. Meaning you would have to roll five or six 1.1x reds to loose the 1.1x bets. And the 1.1x bets are determined by the script and your balance. I added more automation for better calculation on the 1.1x bet. It will work for a wider range of balances now.

Martingales are very slow and maybe safe. But, if you get bored just change the basebet and see what happens. All of the current settings are displayed every roll. 
2x multiplier, low count, high count, Maximum Available Rolls, Maximum Number of Losses, Number of 1.1x bets, and the current Minimum Balance. 

If you like this script, donations are accepted @ 113JwiMN19MyziPEDohuFDrhujgzGrnqz4





CommentsLogin or Register
GlenArven01:03:2017 13:15
The first line of the following section of code should be changed in the version you dl. 
if (math.fmod(runCnt, 100) == 0 or runCnt == 0)) then
should be changed to 
if (win or (runCnt == 0)) then

This will keep the minbal variable updated more frequently. Could save you some coin.




if (win or (runCnt == 0)) then
    -- Function to set minbal
    -- Based on balance and multiplier. 
    m = lmulti   -- 2.25                             -- Will always be base multiplier
    b = basebet

    cnt1 = 0
    car1 = 0
    car2 = 0
    car1 = b
    for cnt1 = 0, 30 do
        car2 = car1 + (b * m^(cnt1 + 1))
        if (balance > (2 * car2)) then
            minbal = car2
        end
        car1 = car2
    end
end
-- END Function to set minbal
    Login or Register
juip11102:03:2017 21:59
Hi GlenArven ! Im testing your script very big imporvement have does respect your oldest ! I've added a sleep function to your script after function dobet to disable the minimum bet delay difference and use random to put second from bets ... 
Ive tried to add plugins to lua script but not founded now ..
According to Lua wiki http://lua-users.org/wiki/SleepFunction
simple sleep but cause still off the GUI but work props

--sleep
local ritardo = math.random(3,17)
print(os.clock())
print(ritardo)

local start = os.clock()
while os.clock() - start < ritardo do end

Its work not as 10th second precision but with large gain work whell.
Can please contact me on µTox A1Vm or by mail whitedreamoff6[àt]gmail-com
Regards
    Login or Register
HiDevin103:03:2017 20:40
This script is great Glen! nice job. I'm considering to donate after hitting a profit range ~ 400,000 sats from 1400 o-o
    Login or Register
GlenArven03:03:2017 21:53
I made another small but important fix to the script.
The following statement should be added between "currentstreak reverse" and "Begin Test"

if (lcnt == hcnt) then                              --<< Must be after currentstreak reverse and before test
    reverse = false
end


Place this statement between line 196 and the following statement block. It just turns off the reverse switch but I think it is important.

Thx for the interest.
    Login or Register
Michael7505:03:2017 23:27
Hi, can you paste on comments this script with all improvements?
    Login or Register
seuntjie06:03:2017 07:40
Id' rather he upload a new script.
    Login or Register
biku11211:03:2017 22:11
This comment has been removed.
    Login or Register