Jump to content

2x betting formula


Xantys

Featured Comment

Posted

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
Posted

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.

 

Posted

"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. 

Posted
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.

Posted
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 :D im always use flat bet never do martinfail :D 

Posted
50 minutes ago, coeghacked said:

maybe you must change that name to martinfail lol :D im always use flat bet never do martinfail :D 

It should be called martingfail :D 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 :)

  • Moderator
Posted

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.

Posted

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!

Posted

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

Posted

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. :) 

Posted

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.

Posted
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 : )

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

Privacy Policy Terms of Use