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:0.005 to 0.5 script
Uploaded by: Animalbns
Discription:
This script is a slight change on the Double Martangle script that changes the chance to 25% with smaller bet multipliers. This script has done wonders for me and I hope it will for you all. ^_^





CommentsLogin or Register
seu1625:03:2019 23:06
Hello
I will try,but say :target achieved,after only one roll ?
Thanks
    Login or Register
Dicwex04:04:2019 23:44
Nice script. Sorry to say.. But to make it more safe and profitable.. I changed little bit and used with 10k sat. Run around 4 hrs continuously and got almost 25% profit. But i prefer to suggest to use it only 1/2 hr and with 15 min intervel.. following are the changes i made.

chance= 49.50
base=0.00000001
bethigh = true

nextbet = base  
investprofit = 0
wincount = 0
losecount=0
stopnow = false
first = true
second = false
secondwin = false
third = false
betcount=1

-- set profit target here (Final Balance after Winning)
profittarget= 0.00002

function dobet()

--Randomizer
r=math.random(2)

if r == 1 then
     bethigh=true
else
     bethigh=false
end

if betcount == 1 then
betcount=0
resetseed();
else
betcount=betcount+1
end

if (balance) >= profittarget then
stop();
print(balance)
print("TARGET ACHIEVED!!!")
end

if (balance) < (nextbet) then
stop();
print(balance)
print("INSUFFICIENT FUNDS")
end

done = false

   if win then

--     switch high/low every win
--     bethigh = false

         if(first) then
--          switch high/low on the first win
--          bethigh = !bethigh
            nextbet = base
            if(stopnow) then stop() end
         end 
         if(second) then
--          switch high/low on the second win
--          bethigh = !bethigh
            secondwin = true
            second = false
            third = true
            done = true 
         end
         if(third and !done) then
--          switch high/low on the third win
--          bethigh = !bethigh
            if(secondwin) then
--             switch high/low on the second and third win
--             bethigh = !bethigh   
               nextbet = base
               if(stopnow) then stop() end
            else
--              switch high/low on one and two lose third win
--              bethigh = !bethigh                
                nextbet = previousbet * 1.6
             end
             third = false
             first = true
         end 
   else
--    switch high/low on the every lose
--    bethigh = true
      if(first and !done) then
--        switch high/low on the first lose
--        bethigh = !bethigh
          first = false
          second = true
          done = true
       end
       if(second and !done) then
--         switch high/low on the second lose
--         bethigh = !bethigh
           secondwin = false
           second = false
           third = true
           done = true
        end
        if(third and !done) then
--          switch high/low on the third lose
--          bethigh = !bethigh
            third = false
            first = true
            print("GO 4 THE WIN!!!")
            if (secondwin) then 
--              switch high/low on the one lose two in thrird lose
--              bethigh = !bethigh
                nextbet = previousbet * 1.6
            else
--              switch high/low only if all three lose
--              bethigh = !bethigh
                nextbet = previousbet * 4.5
             end
            done = true
        end  
   end
end 
    Login or Register
Papanikolis929:05:2019 19:32
tried it also with 400k and busted.
    Login or Register
Papanikolis929:05:2019 19:32
This comment has been removed.
    Login or Register