LUA Scripts
Double Bonus martingale. The main one with 49.5% chance of winning and a Bonus one with a 990 factor. Best to use with a balance of at least 0.1 BTC or 1 ETH (or anything equivalent in other cryptos) The main martingale stops when the threshold is reached, this will kick in the bonus martingale. The profits from the main martingale will fund the bonus martingale. If during the bonus martingale the profit goes negative, the robot will return to the main martingale. You don't need to adjust anything as the base is calibrated on the balance to ensure you do not go bust. I still leave some options for you to adjust the parameters.
0.1 balance? nah. I used 1000 litoshis on yolodice, and it's still going ( now 3700 litoshis ) great script, maybe I'll use a bigger balance to test on in the future :)
Yeah you are right. thanks for the feedback. Actually using it with 100k satoshis now with a base of 2 satoshis and it is working nicely. obviously the higher the balance the less likely the main martingale will bust.
https://i.imgur.com/ua2j3oa.png Still going, and up 4k but could have been higher :D using base=balance*1.1/(multup^11-1) not the default 20 you put :P Really good script to be honest, you can run this on yolodice for like days as i've been doing and get a good level up on wagering because I already wagered around 90x of my balance.
i like the script, almost perfect! except the very dangerous part of using the counter for nextbet and NOT resetting the reverse counter after the jackpot run. did cost me 0.1 LTC it makes the nextbet after the first win since jackpot : base*(2.05^'tries before jackpot') i think i got it fixed by adding reversecounter=0 to the end of jackpot part. : -- ------------------- -- Bonus martingale -- -- ------------------- if win then ching() main=1 reversecounter=0 nextbet=base chance=49.5 bethigh=true else nextbet=previousbet*multjackpot end -- ---------------------------------- -- Stop Loss for the bonus martingale -- ---------------------------------- if profit<0 then ching() main=1 reversecounter=0 nextbet=base chance=49.5 bethigh=true countjackpot=0 revcountjackpot=0 end end
add "counter = 0" AS WELL
I've made the correction in script, but there's only stuff that I've realized that isn't working properly : I've been using XRP from the Bitsler with this script and the bonus martingale doesn't stop when it reaches negative profit from the main martingale after 2000 pre-rolls as default. Could you take a look the script below to find out any mistakes made? -- ------------------- -- Bonus martingale -- -- ------------------- if win then ching() main = 1 reversecounter = 0 counter = 0 nextbet = base chance = 49.5 bethigh = true else nextbet=previousbet*multjackpot end -- ---------------------------------- -- Stop Loss for the bonus martingale -- ---------------------------------- if profit<0 then ching() main = 1 reversecounter = 0 counter = 0 nextbet = base chance = 49.5 bethigh = true countjackpot = 0 revcountjackpot = 0 end end print("streak " ..counter) print("reverse streak " ..reversecounter) print("jackpot " ..countjackpot .." " ..revcountjackpot) -- ------------------ -- Take Profit ------ --------------------- if profit>1000 then stop() end end