Xantys Posted March 3, 2019 #1 Posted March 3, 2019 This technique is based on 2x payout. Instead of betting always 'high' or always 'low' let's try to use a more complex betting algorithm by trying to replicate RNG (random number generator). The formula covers 6 bets with regard whether to place you bet 'under' or 'over' 50. Step 1. Observe last 3 outcomes and repeat just the same 'high' or 'low' pattern. For example, last 3 rolls where 3, 80, 18. Your next 3 bets will be 'low', 'high', 'low'. Step 2. Now continue using the opposite pattern. Suppose last 3 rolls were 15, 25, 70. Your next 3 bets will be 'high', 'high', 'low'. Your game will consist of repeating this 'Same' and 'Opposite' pattern based on last 3 rolls. You'll be trying to beat random by random. I've been playing quite long by this formula using Martingale progression. Needless to say, there's no guarantee. So please be very cautious and have good luck
Moderator maverick528 Posted March 3, 2019 Moderator #2 Posted March 3, 2019 Dont know if it works or not (will try later), but at least is a different approach to the usual one, "keep betting high (for example) until your balance dies". Are you using manual betting for this, or do you have some script for using it? Thanks for sharing.
EpicGord Posted March 3, 2019 #3 Posted March 3, 2019 Seems intresting and different approach...I will try it with doge first lol
MonkeySyrup Posted March 3, 2019 #4 Posted March 3, 2019 Thanks for interesting strategy. I'll definitely try it
coeghacked Posted March 3, 2019 #5 Posted March 3, 2019 sounds a good strategy to use here. but this is only for what x2 can I use on x3 on my favorite payout? because in dice im just playing x3 no less or more
Xantys Posted March 3, 2019 Author #6 Posted March 3, 2019 "Are you using manual betting for this...?" - Yes, I'm playing manually. I just can't write the scripts "can I use on x3 on my favorite payout" - Sure, just keep in mind that the original definition is 'low' is below 50 and 'high' is above 50.
coeghacked Posted March 3, 2019 #7 Posted March 3, 2019 ah okay i will try later. for now i want try with faucet doge thanks for sharing and explain
ekzxc Posted March 3, 2019 #8 Posted March 3, 2019 1 hour ago, Xantys said: This technique is based on 2x payout. Instead of betting always 'high' or always 'low' let's try to use a more complex betting algorithm by trying to replicate RNG (random number generator). The formula covers 6 bets with regard whether to place you bet 'under' or 'over' 50. Step 1. Observe last 3 outcomes and repeat just the same 'high' or 'low' pattern. For example, last 3 rolls where 3, 80, 18. Your next 3 bets will be 'low', 'high', 'low'. Step 2. Now continue using the opposite pattern. Suppose last 3 rolls were 15, 25, 70. Your next 3 bets will be 'high', 'high', 'low'. Your game will consist of repeating this 'Same' and 'Opposite' pattern based on last 3 rolls. You'll be trying to beat random by random. I've been playing quite long by this formula using Martingale progression. Needless to say, there's no guarantee. So please be very cautious and have good luck Thank you for sharing your strategy, a new thing to try for me. I'll give you a feedback if this works fine for me. Thank you for the info.
williamshennie9 Posted March 3, 2019 #9 Posted March 3, 2019 Seems like a decent strat. I will test it out, but the martingale part is where it gets risky because martingale almost always leads to a bust in the long term...
coeghacked Posted March 3, 2019 #10 Posted March 3, 2019 1 minute ago, williamshennie9 said: Seems like a decent strat. I will test it out, but the martingale part is where it gets risky because martingale almost always leads to a bust in the long term... maybe you must change that name to martinfail lol im always use flat bet never do martinfail
felipev1994 Posted March 3, 2019 #11 Posted March 3, 2019 looks interesting, is very hard get win with 2x, but i will try.
Rantly Posted March 3, 2019 #12 Posted March 3, 2019 Very smart, I thought of that before but I don’t know never worked, will be trying again thanks !
williamshennie9 Posted March 3, 2019 #13 Posted March 3, 2019 50 minutes ago, coeghacked said: maybe you must change that name to martinfail lol im always use flat bet never do martinfail It should be called martingfail That would be a far more fitting name. Yeah, I agree with you, flat base bet is the safest option in terms of not busting by doubling your bet on each loss
sankasanka Posted March 3, 2019 #14 Posted March 3, 2019 interesting tecnique , i usuaaly play 2x but i am always losing it, going to try you gameplay hope it will comes with luck thanks for sharing
peel1 Posted March 3, 2019 #15 Posted March 3, 2019 Seems good ill try it out thanks for sharing . its quite a interesting strat i hope it works lol
cryptoguru Posted March 3, 2019 #16 Posted March 3, 2019 I got 9 reds in a few bets, so that "strategy" is retarded af.
Moderator AlphaStorm Posted March 3, 2019 Moderator #17 Posted March 3, 2019 Just thought of sharing something interesting ... maybe someone will like this script. I recommend first testing it on a cheap coin. This will help avoid losses and give an approximate assessment of his work) chance = 49 nextbet = 0.00000001 x = 1 prof = 0 won = 0 piont = math.random(1,4) function sidechange() if win then won +=1 end if bethigh and won >= piont then bethigh = false won = 0 end if !bethigh and won >= piont then bethigh = true won = 0 end end function sidechange2() if !bethigh then bethigh = true elseif bethigh then bethigh = false end end function dobet() if currentstreak <= -5 then sidechange2() end if balance >= prof then prof = balance end if !win then nextbet = previousbet*x x += 0.025 chance -= 0.025 end if win and balance >= prof then sidechange() chance = 49 won +=1 nextbet = 0.00000001 piont = math.random(1,4) x = 1 end print(won) end ** Do not insert the script from the forum immediately to the DiceBot. This will give an error in the bot. Copy it into a text file, save it, and then copy the code from the file.
KiXxnTRiXx Posted March 3, 2019 #18 Posted March 3, 2019 Interesting observation, do you actually have some sort of written down results when youve tested this out?.. Could be a nice tool to have if this is actually a thing.. how long did you test and observe in getting these outcomes? but unfortunately, it also will not remain so.. nothing will have the same patterns for too long.. not only is the system programmed to learn players strategy and beat them overtime, the system also changes its patterns so that players would not have this kind pf advantages.. strategies is always in constant change, and will have to leep tweaking in order to adapt to many changes they do to the games.. nonetheless, as i said, very interesting observation! thank you for taking the time in testing and sharing your observations! cheers!
Shaniqua Posted March 3, 2019 #19 Posted March 3, 2019 thanks for the time you put into making the scrypt, i have been wanting to use dicebot and have little experience, so this would give me more of a push to actually do it! thanks for the input guys
bicoinman Posted March 3, 2019 #20 Posted March 3, 2019 Thanks for interesting strategy. I've try it for few time and bust ... i will try it again tomorow in a long time thank you fo this great strategy
skillex Posted March 4, 2019 #21 Posted March 4, 2019 Usually theres always the time of just series reds so far as Im always playing dice since 2014 so be careful also sometimes of that. Maybe try to preroll first everytime using any type of multiplier even on martingale. But anyway thanks for the share of your strategy.
Cheetos1337 Posted March 4, 2019 #22 Posted March 4, 2019 You guys are fucking stupid... It's 50-50 on each bets anyways, high or low. So if you leave your auto betting going forever you're going to lose no matter what. Martingale is ass.
Shaniqua Posted March 4, 2019 #23 Posted March 4, 2019 38 minutes ago, Cheetos1337 said: You guys are fucking stupid... It's 50-50 on each bets anyways, high or low. So if you leave your auto betting going forever you're going to lose no matter what. Martingale is ass. no need to be rude and call people stupid, lets keep the community a respectful and safe place guys... oh and you leave autobett going forever regardless of the strategy you will bust due to the house edge. so um yeah. dont leave autobet on forever guys : )
bicoinman Posted March 4, 2019 #24 Posted March 4, 2019 today, this formula have been fake for me ... wery fake and fake shit off
bmg Posted March 14, 2019 #25 Posted March 14, 2019 That sounds pretty interesting. If it works for you on your dice games then thats super awesome . Good luck
Featured Comment
Archived
This topic is now archived and is closed to further replies.