Pages:
Author

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

full member
Activity: 159
Merit: 101
i don't bet that high. seems like i have to find anything else than this dice-game Sad

Let me rephrase: Yolodice is fast. Yolodice is REALLY fast when you bet over 100 sats.

let me rephrase: i don't bet that high. i have no script which is safe enough and no balance which is big enough to bid that high
legendary
Activity: 1717
Merit: 1125
i don't bet that high. seems like i have to find anything else than this dice-game Sad

Let me rephrase: Yolodice is fast. Yolodice is REALLY fast when you bet over 100 sats.
full member
Activity: 159
Merit: 101
hey Seuntjie

I play with your dicebot on yolodice. In the beginning the bets are at lightning speed but with time they get slower and slower. Can't speed be like the same as the beginning with the bot.

Stop and hide the embedded chart, set your live bets panel to display only 1 bet, minimize the bot.

do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?

No Idea. The issue with bit-exo seems to be a cloudflare issue that could resolve itself. I will have to look into it when I get the time (Which won't be this weekend). I'm not sure when I will have time to update dice.seuntjie.com to v2 of the API.

can you recommend any other sites with the same "botting-Speed" like bit-exo or yr own app?

Yolodice is very fast as long as you bet over 100 sats.


i don't bet that high. seems like i have to find anything else than this dice-game Sad
legendary
Activity: 1717
Merit: 1125
hey Seuntjie

I play with your dicebot on yolodice. In the beginning the bets are at lightning speed but with time they get slower and slower. Can't speed be like the same as the beginning with the bot.

Stop and hide the embedded chart, set your live bets panel to display only 1 bet, minimize the bot.

do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?

No Idea. The issue with bit-exo seems to be a cloudflare issue that could resolve itself. I will have to look into it when I get the time (Which won't be this weekend). I'm not sure when I will have time to update dice.seuntjie.com to v2 of the API.

can you recommend any other sites with the same "botting-Speed" like bit-exo or yr own app?

Yolodice is very fast as long as you bet over 100 sats.
full member
Activity: 159
Merit: 101
do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?

No Idea. The issue with bit-exo seems to be a cloudflare issue that could resolve itself. I will have to look into it when I get the time (Which won't be this weekend). I'm not sure when I will have time to update dice.seuntjie.com to v2 of the API.

can you recommend any other sites with the same "botting-Speed" like bit-exo or yr own app?
hero member
Activity: 560
Merit: 500
hey Seuntjie

I play with your dicebot on yolodice. In the beginning the bets are at lightning speed but with time they get slower and slower. Can't speed be like the same as the beginning with the bot.
legendary
Activity: 1007
Merit: 1000
Thanks for the reply. How would I do something like:
if last10bets > x or last10bets < y then
You'd do something like this:

Code:
if lastBell.Roll >= 50 then
  HighCount = HighCount + 1
  LowCount = 0
else
  LowCount = LowCount +1
  HighCount = 0
end

if HighCount >= 10 then
  print("10 high rolls")
  stop()
elseif LowCount >=10 then
  print("10 low rolls")
  stop()
end
Perfect. That will work. Thanks.

That's a bit hard coded for 50% chance to win. You could alternatively try something like:

Code:
if (high and win) or (low and !win) then 
highcount+=1
lowcount=0
elseif (high and !win) or (low and win) then
lowcount+=1
highcount=0
end

What are high and low?  Must be boolean, but how are they calculated, and can they both be false?  IE chance is 2% and the result is between 2 - 98. 

New hidden secrete...  Smiley
newbie
Activity: 121
Merit: 0
Thanks for the reply. How would I do something like:
if last10bets > x or last10bets < y then
You'd do something like this:

Code:
if lastBell.Roll >= 50 then
  HighCount = HighCount + 1
  LowCount = 0
else
  LowCount = LowCount +1
  HighCount = 0
end

if HighCount >= 10 then
  print("10 high rolls")
  stop()
elseif LowCount >=10 then
  print("10 low rolls")
  stop()
end
Perfect. That will work. Thanks.

That's a bit hard coded for 50% chance to win. You could alternatively try something like:

Code:
if (high and win) or (low and !win) then 
highcount+=1
lowcount=0
elseif (high and !win) or (low and win) then
lowcount+=1
highcount=0
end
Well I changed it around a bit to better suit my application of it. I'll try this new bit too though, it seems simpler. Thanks.
legendary
Activity: 1717
Merit: 1125
do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?

No Idea. The issue with bit-exo seems to be a cloudflare issue that could resolve itself. I will have to look into it when I get the time (Which won't be this weekend). I'm not sure when I will have time to update dice.seuntjie.com to v2 of the API.
legendary
Activity: 1717
Merit: 1125
Thanks for the reply. How would I do something like:
if last10bets > x or last10bets < y then
You'd do something like this:

Code:
if lastBell.Roll >= 50 then
  HighCount = HighCount + 1
  LowCount = 0
else
  LowCount = LowCount +1
  HighCount = 0
end

if HighCount >= 10 then
  print("10 high rolls")
  stop()
elseif LowCount >=10 then
  print("10 low rolls")
  stop()
end
Perfect. That will work. Thanks.

That's a bit hard coded for 50% chance to win. You could alternatively try something like:

Code:
if (high and win) or (low and !win) then
highcount+=1
lowcount=0
elseif (high and !win) or (low and win) then
lowcount+=1
highcount=0
end
full member
Activity: 159
Merit: 101
do you know when it will be possible again to use the bot for bit-exo and dice.seuntjie?
newbie
Activity: 121
Merit: 0
Thanks for the reply. How would I do something like:
if last10bets > x or last10bets < y then
You'd do something like this:

Code:
if lastBell.Roll >= 50 then
  HighCount = HighCount + 1
  LowCount = 0
else
  LowCount = LowCount +1
  HighCount = 0
end

if HighCount >= 10 then
  print("10 high rolls")
  stop()
elseif LowCount >=10 then
  print("10 low rolls")
  stop()
end
Perfect. That will work. Thanks.
HCP
legendary
Activity: 2086
Merit: 4361
Thanks for the reply. How would I do something like:
if last10bets > x or last10bets < y then
You'd do something like this:

Code:
if lastBell.Roll >= 50 then
  HighCount = HighCount + 1
  LowCount = 0
else
  LowCount = LowCount +1
  HighCount = 0
end

if HighCount >= 10 then
  print("10 high rolls")
  stop()
elseif LowCount >=10 then
  print("10 low rolls")
  stop()
end
newbie
Activity: 121
Merit: 0
Hello,
I really enjoy your bot  Cheesy
I was wondering if it would be possible to add an additional stop condition for prerolling, or if it already exists. Currently, if I want to stop after prerolling I can stop after x amount of losses in a row. It would be useful if the bot could stop after x amount of losses on either high or low, regardless of which way I'm betting. So, if I'm betting high and haven't had x losses in a row yet but there have been x losses in a row on the low side, the bot would stop and I could then bet accordingly.
Thanks for you time.

https://bot.seuntjie.com/programmermode.aspx
Thanks for the reply. How would I do something like:
if last10bets > x or last10bets < y then
legendary
Activity: 1717
Merit: 1125
Hello,
I really enjoy your bot  Cheesy
I was wondering if it would be possible to add an additional stop condition for prerolling, or if it already exists. Currently, if I want to stop after prerolling I can stop after x amount of losses in a row. It would be useful if the bot could stop after x amount of losses on either high or low, regardless of which way I'm betting. So, if I'm betting high and haven't had x losses in a row yet but there have been x losses in a row on the low side, the bot would stop and I could then bet accordingly.
Thanks for you time.

https://bot.seuntjie.com/programmermode.aspx
newbie
Activity: 121
Merit: 0
Hello,
I really enjoy your bot  Cheesy
I was wondering if it would be possible to add an additional stop condition for prerolling, or if it already exists. Currently, if I want to stop after prerolling I can stop after x amount of losses in a row. It would be useful if the bot could stop after x amount of losses on either high or low, regardless of which way I'm betting. So, if I'm betting high and haven't had x losses in a row yet but there have been x losses in a row on the low side, the bot would stop and I could then bet accordingly.
Thanks for you time.
legendary
Activity: 2198
Merit: 1150
Freedom&Honor
Would be nice if you added a stop function on a specific series of numbers, would be nice for jackpots on plenty of websites.

That's what the programmer mode is for.

You can easily add just add a little bit of extra logic while still using the built in settings:

Code:
enablesrc=true
enablezz=true
lastlastbet=-1
function dobet()
nextbet=martingale(win)
--or
--nextbet=labouchere(win)
--or
--nextbet=fibonacci(win)
-- etc etc
if lastBet.Roll==77.77 and lastlastbet==77.77 then
ching()
stop()
end
lastlastbet=lastBet.Roll
end

Thanks!
Don't know much coding so couldn't do it myself  Cheesy
Niice
legendary
Activity: 1717
Merit: 1125
Hi,

when i try to login at yolodice i get the messeage "id":1, "result":false
I could login yesterday without problems but today it doesn't work anymore. Can you help?

Now it worked


Works fine for me in version 3.3.8. Check that your API key is enabled, has permission to play and that you're using the correct private key. Or try generating a new API key on YD and using that key.
full member
Activity: 159
Merit: 101
Hi,

when i try to login at yolodice i get the messeage "id":1, "result":false
I could login yesterday without problems but today it doesn't work anymore. Can you help?

Now it worked
legendary
Activity: 1717
Merit: 1125
Would be nice if you added a stop function on a specific series of numbers, would be nice for jackpots on plenty of websites.

That's what the programmer mode is for.

You can easily add just add a little bit of extra logic while still using the built in settings:

Code:
enablesrc=true
enablezz=true
lastlastbet=-1
function dobet()
nextbet=martingale(win)
--or
--nextbet=labouchere(win)
--or
--nextbet=fibonacci(win)
-- etc etc
if lastBet.Roll==77.77 and lastlastbet==77.77 then
ching()
stop()
end
lastlastbet=lastBet.Roll
end
Pages:
Jump to: