Pages:
Author

Topic: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! - page 59. (Read 274841 times)

newbie
Activity: 51
Merit: 0
When I use Dicebot the client seeds inserted are different from the one in bitsler site account. Is there a way to get the same client seed from the bitsler site to the dicebot whenever I reset seeds.

Note: I don't want the client seed set by Bitsler automatically to be changed. Instead I want the that client seed( automatically set by Bitsler) to be inserted to Dicebot .

Also when I select reset seed after 1 win check box ,it just delays the seed change if the win happens earlier.I want the betting to stop if the win happens earlier and only continue betting after a seed change.
newbie
Activity: 29
Merit: 0
Seuntjie,
Looking to automate this pattern using DiceBot settings.
My description is repetitive as to be as clear as possible.
Can this be done with settings or prelist? Thanks for great bot!

For 2x payout, 49.5 odds, martingale:


Accumulated multiplier
X2- 1st loss
X4- 2nd loss (2x + 2x)
X8- parley if won
X16- reset on win, no parley if won
X32
X64
X128
X256 min bet- MAX, reset on loss or win

Multiply after loss but not more than 8 times to MAX 256x min bet

MAX bet is x256 min bet

1st win... do nothing, multiple x 1.0, repeat SAME (parley) bet
-- (reset to base after 2nd consecutive win, not 1st)
-- no parley if above x16 min bet
-- only one parley in series

1st loss after repeating SAME (parley) winning bit... multiply x4 previous losing bet
-- (only one x4 after a loss in this series (change once), all other losses are x2 until MAX

2nd consecutive win in a row... RESET to base

1st win after repeating SAME (parley) bet... RESET to base

1st loss after a win... multiply x2
-- Unless the win was a repeat of a SAME (parley) win bet, then x4, only once in series

Loss after a loss... multiply x2 always, until MAX

Loss x2 - unless right after SAME bet from win, then x4 once

1st loss after SAME bet is x4, once only

Always RESET after 2nd win in series

1st W- same bet
2nd W in row- RESET to base
2nd W in series SAME bet after loss (parley) unless x8 min bet then reset after win

EXAMPLE:
Min bet- loss- x2
.001- min
.002- 1st double after loss, repeat .02 bet next if this wins, reset if it wins again
.004- 2nd double after loss, parley SAME if won, unless 2nd win in series then RESET
.008- 3rd double after loss, parley SAME if 1st WIN after loss, otherwise RESET if 2nd win in series
.016- 4th double after loss, RESET if won
.032- 5th double after loss, RESET if won
.064- 6th double after loss, RESET if won
.128- 7th double after loss, RESET if won
.256- 8th, MAX, RESET after loss or win

My challenge mostly setting it to parley only once when winning x4 or x8 or x16 of min bet, and... having 1st loss after 1st win increasing x4 only once. Thanks




This one might do the work in the programmers mode:

Code:
chance=49.5
parley=true
basebet=0.001
highestParley=0.008
nextbet=basebet
maxBet=0.256

function dobet()
if win then
if parley and previousbet<=highestParley then
nextbet=previousbet
parley=false
else
nextbet=basebet
parley=true
end
else
if previousbet==maxBet then
nextbet=basebet
parley=true
else
nextbet=previousbet*2
end
end
end

If you have any further questions I think the right place to discuss would be this thread

Thanks so much. I will test it out and report back.
legendary
Activity: 1717
Merit: 1125
Is there any issues logging into Bitsler with version 3.3.5 ? I tried to login but it kept giving me an error. I noticed the login page seems to have a captcha at the moment so are logins not working for this reason?

Please see "I am unable to log in to site x (Failed to log in or create new account) even though I'm sure my username is correct. Please Help!" on https://bot.seuntjie.com/FAQs.aspx#faq25
legendary
Activity: 1736
Merit: 1023
Is there any issues logging into Bitsler with version 3.3.5 ? I tried to login but it kept giving me an error. I noticed the login page seems to have a captcha at the moment so are logins not working for this reason?
hero member
Activity: 813
Merit: 507
Seuntjie,
Looking to automate this pattern using DiceBot settings.
My description is repetitive as to be as clear as possible.
Can this be done with settings or prelist? Thanks for great bot!

For 2x payout, 49.5 odds, martingale:


Accumulated multiplier
X2- 1st loss
X4- 2nd loss (2x + 2x)
X8- parley if won
X16- reset on win, no parley if won
X32
X64
X128
X256 min bet- MAX, reset on loss or win

Multiply after loss but not more than 8 times to MAX 256x min bet

MAX bet is x256 min bet

1st win... do nothing, multiple x 1.0, repeat SAME (parley) bet
-- (reset to base after 2nd consecutive win, not 1st)
-- no parley if above x16 min bet
-- only one parley in series

1st loss after repeating SAME (parley) winning bit... multiply x4 previous losing bet
-- (only one x4 after a loss in this series (change once), all other losses are x2 until MAX

2nd consecutive win in a row... RESET to base

1st win after repeating SAME (parley) bet... RESET to base

1st loss after a win... multiply x2
-- Unless the win was a repeat of a SAME (parley) win bet, then x4, only once in series

Loss after a loss... multiply x2 always, until MAX

Loss x2 - unless right after SAME bet from win, then x4 once

1st loss after SAME bet is x4, once only

Always RESET after 2nd win in series

1st W- same bet
2nd W in row- RESET to base
2nd W in series SAME bet after loss (parley) unless x8 min bet then reset after win

EXAMPLE:
Min bet- loss- x2
.001- min
.002- 1st double after loss, repeat .02 bet next if this wins, reset if it wins again
.004- 2nd double after loss, parley SAME if won, unless 2nd win in series then RESET
.008- 3rd double after loss, parley SAME if 1st WIN after loss, otherwise RESET if 2nd win in series
.016- 4th double after loss, RESET if won
.032- 5th double after loss, RESET if won
.064- 6th double after loss, RESET if won
.128- 7th double after loss, RESET if won
.256- 8th, MAX, RESET after loss or win

My challenge mostly setting it to parley only once when winning x4 or x8 or x16 of min bet, and... having 1st loss after 1st win increasing x4 only once. Thanks




This one might do the work in the programmers mode:

Code:
chance=49.5
parley=true
basebet=0.001
highestParley=0.008
nextbet=basebet
maxBet=0.256

function dobet()
if win then
if parley and previousbet<=highestParley then
nextbet=previousbet
parley=false
else
nextbet=basebet
parley=true
end
else
if previousbet==maxBet then
nextbet=basebet
parley=true
else
nextbet=previousbet*2
end
end
end

If you have any further questions I think the right place to discuss would be this thread
newbie
Activity: 29
Merit: 0
Seuntjie,
Looking to automate this pattern using DiceBot settings.
My description is repetitive as to be as clear as possible.
Can this be done with settings or prelist? Thanks for great bot!

For 2x payout, 49.5 odds, martingale:


Accumulated multiplier
X2- 1st loss
X4- 2nd loss (2x + 2x)
X8- parley if won
X16- reset on win, no parley if won
X32
X64
X128
X256 min bet- MAX, reset on loss or win

Multiply after loss but not more than 8 times to MAX 256x min bet

MAX bet is x256 min bet

1st win... do nothing, multiple x 1.0, repeat SAME (parley) bet
-- (reset to base after 2nd consecutive win, not 1st)
-- no parley if above x16 min bet
-- only one parley in series

1st loss after repeating SAME (parley) winning bit... multiply x4 previous losing bet
-- (only one x4 after a loss in this series (change once), all other losses are x2 until MAX

2nd consecutive win in a row... RESET to base

1st win after repeating SAME (parley) bet... RESET to base

1st loss after a win... multiply x2
-- Unless the win was a repeat of a SAME (parley) win bet, then x4, only once in series

Loss after a loss... multiply x2 always, until MAX

Loss x2 - unless right after SAME bet from win, then x4 once

1st loss after SAME bet is x4, once only

Always RESET after 2nd win in series

1st W- same bet
2nd W in row- RESET to base
2nd W in series SAME bet after loss (parley) unless x8 min bet then reset after win

EXAMPLE:
Min bet- loss- x2
.001- min
.002- 1st double after loss, repeat .02 bet next if this wins, reset if it wins again
.004- 2nd double after loss, parley SAME if won, unless 2nd win in series then RESET
.008- 3rd double after loss, parley SAME if 1st WIN after loss, otherwise RESET if 2nd win in series
.016- 4th double after loss, RESET if won
.032- 5th double after loss, RESET if won
.064- 6th double after loss, RESET if won
.128- 7th double after loss, RESET if won
.256- 8th, MAX, RESET after loss or win

My challenge mostly setting it to parley only once when winning x4 or x8 or x16 of min bet, and... having 1st loss after 1st win increasing x4 only once. Thanks


legendary
Activity: 1717
Merit: 1125
Is it normal for primedice to have a very slow betting speed?

Rarely three bets get through in a second but most of the time a single bet takes above 10 seconds.

I guess the low bet amount I am using right now is the main reason but maybe there is something else I am missing?

try setting your betting speed to 1 bet/s

Is there a variable to set the betting speed in programmers  mode?

No, but setting the speed in the advanced mode works for programmer mode as well.
I was startled yesterday when on logging out of 999dice (Doge) with basebet 0.0025 doge and logging in to Crypto-games (Btc) same script but with basebet adjusted to 0.0000001 Btc. On starting the script once more, I noticed the bet actually started off with 0,0025 Btc until a win before reverting to the new setting, meaning the last session was carried over until a win and I think that can quite a spoiler with little balance. How can this be prevented?

Some people switch sites and want to specifically carry over the session. If you're using a programmer mode script, it's up to the script to reset to base when you start. the bot only does what the script tells it to. If you're using advanced mode and changed the base bet BEFORE clicking start, it should have changed the base bet to the new base.
hero member
Activity: 1134
Merit: 517
I was startled yesterday when on logging out of 999dice (Doge) with basebet 0.0025 doge and logging in to Crypto-games (Btc) same script but with basebet adjusted to 0.0000001 Btc. On starting the script once more, I noticed the bet actually started off with 0,0025 Btc until a win before reverting to the new setting, meaning the last session was carried over until a win and I think that can quite a spoiler with little balance. How can this be prevented?
hero member
Activity: 813
Merit: 507
Is it normal for primedice to have a very slow betting speed?

Rarely three bets get through in a second but most of the time a single bet takes above 10 seconds.

I guess the low bet amount I am using right now is the main reason but maybe there is something else I am missing?

try setting your betting speed to 1 bet/s

Is there a variable to set the betting speed in programmers  mode?
legendary
Activity: 1717
Merit: 1125
Is it normal for primedice to have a very slow betting speed?

Rarely three bets get through in a second but most of the time a single bet takes above 10 seconds.

I guess the low bet amount I am using right now is the main reason but maybe there is something else I am missing?

try setting your betting speed to 1 bet/s
hero member
Activity: 813
Merit: 507
Is it normal for primedice to have a very slow betting speed?

Rarely three bets get through in a second but most of the time a single bet takes above 10 seconds.

I guess the low bet amount I am using right now is the main reason but maybe there is something else I am missing?
legendary
Activity: 1717
Merit: 1125
It is possible to use primedice on both  its  website and also on dicebot at the same time when logged in. But in Bitsler if I login to through dicebot ,then I am automatically logged out from website and vice-versa. It will be  easy if dice bot can be used simultaneously on bitsler's site and on dicebot like primeedice.

That's bitsler, not me. I can't do anything about it.
newbie
Activity: 51
Merit: 0
It is possible to use primedice on both  its  website and also on dicebot at the same time when logged in. But in Bitsler if I login to through dicebot ,then I am automatically logged out from website and vice-versa. It will be  easy if dice bot can be used simultaneously on bitsler's site and on dicebot like primeedice.
legendary
Activity: 1717
Merit: 1125
Can you increase the maximum bets count it currently shows 500+. Can you make it to show the real number?

No, I've been planning on removing that stat because it's impossible to calculate correctly in many cases and as it is, it only takes a small portion of the settings into account, I just forget the whole time. Don't use it.
full member
Activity: 168
Merit: 100
Can you increase the maximum bets count it currently shows 500+. Can you make it to show the real number?
full member
Activity: 324
Merit: 100
Crypto Games not working?Huh?

It still working and fine, make sure you select the correct site.
By the way thank you for this awesome bot i use it for a couple of week i have fun when i use it. Smiley
More power to the creator of this bot

I have very little use for power, money on the other hand I could always use some of

I think alot of people would play your dice site if you opened one Tongue

legendary
Activity: 1717
Merit: 1125
Crypto Games not working?Huh?

It still working and fine, make sure you select the correct site.
By the way thank you for this awesome bot i use it for a couple of week i have fun when i use it. Smiley
More power to the creator of this bot

I have very little use for power, money on the other hand I could always use some of
sr. member
Activity: 602
Merit: 262
Crypto Games not working?Huh?

It still working and fine, make sure you select the correct site.
By the way thank you for this awesome bot i use it for a couple of week i have fun when i use it. Smiley
More power to the creator of this bot
legendary
Activity: 1717
Merit: 1125
is it safe to use on JD now?

remember there being an issue with tripling bets when martingale

afaik it works on JD now. Haven't recently had any complaints about duplicate bets on jd.
full member
Activity: 324
Merit: 100
is it safe to use on JD now?

remember there being an issue with tripling bets when martingale
Pages:
Jump to: