Pages:
Author

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

legendary
Activity: 1717
Merit: 1125
Is it possible to add a function of trailing stop?
When the bot is in profit.It will automatically stop when the profit drops, say 0.00001000.
This will help to secure the profit. Thanks.

Not in the advanced mode. You can do this in the programmer mode though.
HCP
legendary
Activity: 2086
Merit: 4361
This is by design.

... Loads of useful stuff info ...

Ok... Thanks... very useful and good to know info there Smiley

In the meantime, I have figured out a "hackish" work around that works for my situation... instead of trying to use the stop() command outside the dobet(), I just initialise the bet amount to 0. This causes the site to refuse the bet as an invalid amount and the script will halt without any danger to my bankroll Cheesy

The whole point of this was to enable me to add in some sanity checks on my variable settings and stop if I had mis-typed something and didn't notice (again Tongue)

newbie
Activity: 14
Merit: 0
Is it possible to add a function of trailing stop?
When the bot is in profit.It will automatically stop when the profit drops, say 0.00001000.
This will help to secure the profit. Thanks.
legendary
Activity: 3808
Merit: 1723
i love this bot, it made me so much money!

Care to share your strategy or is it a secret?

Been trying this bot out for the last few months and pretty much most of the strageies I've created have made no money or lost money. The strategies that worked in the past, failed to work in the future.

Honestly the only sure way of winning any actual money would be to start with the faucet however due to the Captcha and small faucet amounts, its not possible.
Don't trust him, there is no such thing called strategy in gambling. Seunjti already said if this bot doesn't increase your winning chance or you will always win in gambling. This bot only make your bet easier and you can try any strategy with this bot.

I know.

The only method that I think that might work supposedly is as follows.

Say the house edge is 1%. So you got 51 Losses and 49 Wins every 100 Bets.

So probalistically after 100,000 bets you should have 51,000 Losses and 49,000 Wins.


However say you program the bot to detect huge shifts in the bets.

For example,

Say after 10,000 bets you are at losing 6000 Bets and won only 4000 Bets. According to the house edge and probability law, you should have 5100 Losses and 4900 Wins. So for the next 5000 bets or so you should roll more wins than losses to bring the house edge back to parity.

I haven't tried this method yet.

I like your way of thinking. Have you made any headway on trying this method out yet? I am very curious what the results will show and of course your angle of attack.

Good luck with your strategy - but don't the odd reset each time you bet?

I got some free time and might try this out with multiple sites this week sometime.

Yes you are correct, there really isn't a perfect time when it resets or not.

But I am just saying that as Bets -> Infinity then your win/lose ratio should be 49-51% or so.

So if you got a really bad/good luck you can bet the other way until it balances out all your bets.

No idea if this will actually work however.
legendary
Activity: 1717
Merit: 1125
This is by design. When you enter start(), the bot executes ALL of the code in the code box, so it defines sets global variables (like nextbet) and defines the dobet function. It does not execute the dobet function. It places a bet using the nextbet, chance and bethigh values. Once the result is received, it calls the dobet function.

The dobet function is there to process the result of a bet. it can't process the result of a bet if there hasn't been a bet yet.

Here's a steemit article that explains the process the programmer mode uses: https://steemit.com/dicebot/@seuntjie/dicebot-programmer-mode-tutorial-02-process

A stop command outside of the dobet function wouldn't do anything. Internally the bot handles the start() function as:

  • Set Available LUA variables
  • Parse code in code box.
  • get variables from lua environment
  • indicate internally the bot is running auto bet (start the bot)
  • place the initial bet

If you use a stop command outside of the dobet function:
  • Set Available LUA variables
  • Parse code in code box.
  • Indicate to the bot to stop from the stop function. Stop betting processes etc
  • get variables from lua environment
  • indicate internally the bot is running auto bet (start the bot)
  • place the initial bet

If you don't want the bot to bet, don't start it.
HCP
legendary
Activity: 2086
Merit: 4361
Hi Seuntjie...

Not sure if this is by design or a bug. But I have discovered that there is no way to stop the bot from making at least 1 bet.

After an unfortunately accident where I set the bot running with an incorrect value set and YOLO'd 10 million credits in one hit (worth around 0.002 BTC) and LOST Sad, I decided a little double-check code was in order before the bot starting betting to try and ensure it wouldn't happen again.

However, the bot seems to be ignoring stop() commands that are placed outside the dobet() function and just starts betting!!?!  Huh

So I made up a little test script as follows:

Code:
nextbet = 0.00000001

stop()

function dobet()

    stop()

end

Theoretically, it should stop() and not do anything right??

However... this is what happens:



The bot seems to ignore the first stop() command and just goes ahead and does whatever is in the dobet() function anyway!!?!  Huh

Is that by design or a bug?  I have tested with 3.3.1 and 3.3.0 and both exhibit the same behaviour.
legendary
Activity: 1717
Merit: 1125
There has been and will be for the next few hours some intermittent downtime on my site. I'm working on a few things on the server.

Edit: site should be running normally again.
hero member
Activity: 1386
Merit: 503
Hey seuntjie, i have problem with your bot, can you check this for me?
this is bot i try login on rollin and start the bot for the first time yes its working fine but after few minutes about 30 minutes or so bot will stop working and get notice "You need to be logged in." but when i click the button start bet Hi/Low its running well again and dont need to re-login. so what happened? this problem with your bot or with rollin? Thanks
-snip-

This is most likely your computer time that is slightly off. make sure your computers time is correct to the second.

okay, i will change my computer time +0 UTC . thanks Smiley

Edit: i have another problem, after i change my computer time and trying to relogin and then i start the bot but got notice "insufficient balance". i guess this error now from API rollin or something else  Huh



You didn't need to change your timezone, just make sure your time is correct for your timezone. It seems that you also changed your number format settings along with your timezone (so you probably changed your region). Make sure your number format uses a period as decimal separator, and not a comma.
okay its works again now, thanks
legendary
Activity: 1717
Merit: 1125
Can we have duckdice.io added to your bot too? It will be really good if we are able to roll that site through your bot.

I talked to duckdice admins about it briefly. the didn't seem interested (yet). Maybe you can convince them.

Hey seuntjie, i have problem with your bot, can you check this for me?
this is bot i try login on rollin and start the bot for the first time yes its working fine but after few minutes about 30 minutes or so bot will stop working and get notice "You need to be logged in." but when i click the button start bet Hi/Low its running well again and dont need to re-login. so what happened? this problem with your bot or with rollin? Thanks
-snip-

This is most likely your computer time that is slightly off. make sure your computers time is correct to the second.

okay, i will change my computer time +0 UTC . thanks Smiley

Edit: i have another problem, after i change my computer time and trying to relogin and then i start the bot but got notice "insufficient balance". i guess this error now from API rollin or something else  Huh



You didn't need to change your timezone, just make sure your time is correct for your timezone. It seems that you also changed your number format settings along with your timezone (so you probably changed your region). Make sure your number format uses a period as decimal separator, and not a comma.
hero member
Activity: 1386
Merit: 503
Hey seuntjie, i have problem with your bot, can you check this for me?
this is bot i try login on rollin and start the bot for the first time yes its working fine but after few minutes about 30 minutes or so bot will stop working and get notice "You need to be logged in." but when i click the button start bet Hi/Low its running well again and dont need to re-login. so what happened? this problem with your bot or with rollin? Thanks
-snip-

This is most likely your computer time that is slightly off. make sure your computers time is correct to the second.

okay, i will change my computer time +0 UTC . thanks Smiley

Edit: i have another problem, after i change my computer time and trying to relogin and then i start the bot but got notice "insufficient balance". i guess this error now from API rollin or something else  Huh

hero member
Activity: 560
Merit: 500
Can we have duckdice.io added to your bot too? It will be really good if we are able to roll that site through your bot.
newbie
Activity: 52
Merit: 0
i love this bot, it made me so much money!

Care to share your strategy or is it a secret?

Been trying this bot out for the last few months and pretty much most of the strageies I've created have made no money or lost money. The strategies that worked in the past, failed to work in the future.

Honestly the only sure way of winning any actual money would be to start with the faucet however due to the Captcha and small faucet amounts, its not possible.
Don't trust him, there is no such thing called strategy in gambling. Seunjti already said if this bot doesn't increase your winning chance or you will always win in gambling. This bot only make your bet easier and you can try any strategy with this bot.

I know.

The only method that I think that might work supposedly is as follows.

Say the house edge is 1%. So you got 51 Losses and 49 Wins every 100 Bets.

So probalistically after 100,000 bets you should have 51,000 Losses and 49,000 Wins.


However say you program the bot to detect huge shifts in the bets.

For example,

Say after 10,000 bets you are at losing 6000 Bets and won only 4000 Bets. According to the house edge and probability law, you should have 5100 Losses and 4900 Wins. So for the next 5000 bets or so you should roll more wins than losses to bring the house edge back to parity.

I haven't tried this method yet.

I like your way of thinking. Have you made any headway on trying this method out yet? I am very curious what the results will show and of course your angle of attack.

Good luck with your strategy - but don't the odd reset each time you bet?
legendary
Activity: 1717
Merit: 1125
Hey seuntjie, i have problem with your bot, can you check this for me?
this is bot i try login on rollin and start the bot for the first time yes its working fine but after few minutes about 30 minutes or so bot will stop working and get notice "You need to be logged in." but when i click the button start bet Hi/Low its running well again and dont need to re-login. so what happened? this problem with your bot or with rollin? Thanks



This is most likely your computer time that is slightly off. make sure your computers time is correct to the second.
hero member
Activity: 1386
Merit: 503
Hey seuntjie, i have problem with your bot, can you check this for me?
this is bot i try login on rollin and start the bot for the first time yes its working fine but after few minutes about 30 minutes or so bot will stop working and get notice "You need to be logged in." but when i click the button start bet Hi/Low its running well again and dont need to re-login. so what happened? this problem with your bot or with rollin? Thanks

legendary
Activity: 1717
Merit: 1125
Seuntjie,

A quick question regarding the "Maximum Bets" value in the stats window... is that the Bot's best "guess" at how many bets I can make using current settings before the dreaded "Bet is larger than Balance" message appears? Wink





Yeah, it's a GUESS. It only works with martingale and takes only a few calculations into account. I wouldn't use it if you don't have the most basic martingale settings set. I've actually been planning on removing it from the bot.
HCP
legendary
Activity: 2086
Merit: 4361
Seuntjie,

A quick question regarding the "Maximum Bets" value in the stats window... is that the Bot's best "guess" at how many bets I can make using current settings before the dreaded "Bet is larger than Balance" message appears? Wink



sr. member
Activity: 294
Merit: 250
Hi, what is the fastest gambling site the bot works?
I know that bigger bets means faster bets, but any site in particular have a higher speed?
Thank you

999Dice
BetKing
Betterbets
Bitdice
Bitsler
BitVest.IO
CoinMillions
crypto-games
FortuneJack
Just-dice
KingDice
Monerodice
MoneyPot
NitrogenSports
Prime Dice
Provably.IO
Rollin.IO
SafeDice
Satoshi Dice
WealthyDice
YoloDice



Currently YoloDice is the fastest by far. I think my moneypot app is the fastest after that. Bitvest and rollin is also pretty fast. I think the rest are all about the same speed.

I don't really have good data on this. My internet is extremely slow, most sites are only slow because my internets latency is too high and transfer speeds are too low. Some users with better internet and that are closer to the servers might have better info on that.


Why not try by yourself? Honestly i didn't tried all those sites, i've just tried Bitsler, Justdice, and Safedice. I can say bitsler is faster from these sites i tried. Not sure if we can run fortunejack on seunjti bot, last time i tried, there is a problem with their couldflare.

Fortunejack still doesn't work

KingDice.com has play.php response of 160ms, not something that can be easily beaten lol
legendary
Activity: 1717
Merit: 1125
Hi, what is the fastest gambling site the bot works?
I know that bigger bets means faster bets, but any site in particular have a higher speed?
Thank you

999Dice
BetKing
Betterbets
Bitdice
Bitsler
BitVest.IO
CoinMillions
crypto-games
FortuneJack
Just-dice
KingDice
Monerodice
MoneyPot
NitrogenSports
Prime Dice
Provably.IO
Rollin.IO
SafeDice
Satoshi Dice
WealthyDice
YoloDice



Currently YoloDice is the fastest by far. I think my moneypot app is the fastest after that. Bitvest and rollin is also pretty fast. I think the rest are all about the same speed.

I don't really have good data on this. My internet is extremely slow, most sites are only slow because my internets latency is too high and transfer speeds are too low. Some users with better internet and that are closer to the servers might have better info on that.


Why not try by yourself? Honestly i didn't tried all those sites, i've just tried Bitsler, Justdice, and Safedice. I can say bitsler is faster from these sites i tried. Not sure if we can run fortunejack on seunjti bot, last time i tried, there is a problem with their couldflare.

Fortunejack still doesn't work
legendary
Activity: 1680
Merit: 1001
Hi, what is the fastest gambling site the bot works?
I know that bigger bets means faster bets, but any site in particular have a higher speed?
Thank you

Why not try by yourself? Honestly i didn't tried all those sites, i've just tried Bitsler, Justdice, and Safedice. I can say bitsler is faster from these sites i tried. Not sure if we can run fortunejack on seunjti bot, last time i tried, there is a problem with their couldflare.
newbie
Activity: 9
Merit: 0
Hi, what is the fastest gambling site the bot works?
I know that bigger bets means faster bets, but any site in particular have a higher speed?
Thank you

999Dice
BetKing
Betterbets
Bitdice
Bitsler
BitVest.IO
CoinMillions
crypto-games
FortuneJack
Just-dice
KingDice
Monerodice
MoneyPot
NitrogenSports
Prime Dice
Provably.IO
Rollin.IO
SafeDice
Satoshi Dice
WealthyDice
YoloDice

Pages:
Jump to: