Pages:
Author

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

jr. member
Activity: 52
Merit: 2
i just want to ask , if it possible to add such a feature to this script :

if x amount of red comes in a row return the scripts to beginning.
Yes... the "streak" of losses will be stored in "currentstreak" as a negative number... which is what the script is currently checking for while doing the preroll.

"if currentstreak < -preroll"... it checks to see if the losing streak is more than 5 losses in a row... then it starts multiplying.

You can add a "maxlosses" variable... and check that, if exceeded then return to default settings:

Code:
chance     = 49.50
multiplier = 2
base       = 0.00000001
preroll    = 5
prebet     = 0.00000001
nextbet    = 0.00000001

maxlosses = 15

function dobet()
 if win then
  nextbet=base
 else
  if currentstreak== -preroll then
   nextbet=base
  end
  if currentstreak < -preroll then
   nextbet=previousbet*multiplier
  end
  if currentstreak < -maxlosses then
   nextbet=base
   currentstreak = 0
  end
 end
end

WARNING: I haven't extensively tested this code... use at your own risk Tongue

Just tested and works like a charm <3

I just wanted to limit max. looses so it wont be betting in the dark Smiley

Thanks a bunch mate you make my day !

Happy new year everyone.
HCP
legendary
Activity: 2086
Merit: 4314
i just want to ask , if it possible to add such a feature to this script :

if x amount of red comes in a row return the scripts to beginning.
Yes... the "streak" of losses will be stored in "currentstreak" as a negative number... which is what the script is currently checking for while doing the preroll.

"if currentstreak < -preroll"... it checks to see if the losing streak is more than 5 losses in a row... then it starts multiplying.

You can add a "maxlosses" variable... and check that, if exceeded then return to default settings:

Code:
chance     = 49.50
multiplier = 2
base       = 0.00000001
preroll    = 5
prebet     = 0.00000001
nextbet    = 0.00000001

maxlosses = 15

function dobet()
 if win then
  nextbet=base
 else
  if currentstreak== -preroll then
   nextbet=base
  end
  if currentstreak < -preroll then
   nextbet=previousbet*multiplier
  end
  if currentstreak < -maxlosses then
   nextbet=base
   currentstreak = 0
  end
 end
end

WARNING: I haven't extensively tested this code... use at your own risk Tongue
jr. member
Activity: 52
Merit: 2
chance     = 49.50
multiplier = 2
base       = 0.00000001
preroll    = 5
prebet     = 0.00000001
nextbet    = 0.00000001
function dobet()
 if win then
  nextbet=base
 else
  if currentstreak== -preroll then
   nextbet=base
  end
  if currentstreak < -preroll then
   nextbet=previousbet*multiplier
  end
 end
end

hey ,

i am using default preroll script and doing well so far.

i just want to ask , if it possible to add such a feature to this script :

if x amount of red comes in a row return the scripts to beginning.

i appreciate any help , cheers and happt x-mas.
HCP
legendary
Activity: 2086
Merit: 4314
Can you give me a example code on how to change the currency during betting?
I've never actually tried... The currency name is stored in the "currency" variable... so just set currency == "currency_that_you_want"...

Code:
...
  if lossstreak == 5 then
    currency = "btc"
  end
...


WARNING: doing this might play havoc with the GUI, charts and stats etc... as they won't be reflecting the change in currency correctly... here you can see a small script that goes from betting 10 PLAY to betting 0.00000001 BTC on crypto.games...
Code:
chance  = 49.5
basebet = 10
nextbet = basebet
bethigh = true

betcount = 0

currency = "play"

function dobet()

    betcount = betcount + 1
    currency = "btc"
   
    nextbet = 0.00000001
   
    if betcount >= 2 then
        stop()
    end
   
end

It purposely stops after 2 bets... but you can see how the graph and stats are messed up as both currencies are combined:


newbie
Activity: 66
Merit: 0
Can you give me a example code on how to change the currency during betting?
As example say that I'm betting with 0.00001000 LTC on 2x Payout. After 5 losses in row can I change the currency to BTC?

Bet 1 : 0.00001000 LTC
Bet 2 : 0.00001000 LTC
Bet 3 : 0.00001000 LTC
Bet 4 : 0.00001000 LTC
Bet 5 : 0.00001000 LTC
Bet 6 : 0.00001000 BTC
Bet 7 : 0.00001000 BTC
Bet 8 : 0.00001000 BTC
.
.
.
legendary
Activity: 2310
Merit: 1422
If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.

I mean you could use the built in simulator that uses the sites own RNG with random seeds to do a simulation at 20+x the speed of actually placing bets...
I use that too but I prefer to implement my strategy while playing because I adjust and tweak many options as the bot runs. It needs to be funny also if you get what I mean! Wink
legendary
Activity: 1717
Merit: 1125
If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.

I mean you could use the built in simulator that uses the sites own RNG with random seeds to do a simulation at 20+x the speed of actually placing bets...
HCP
legendary
Activity: 2086
Merit: 4314
If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.
That's actually a really good idea, and what I generally do with most of my scripts... test them with the "PLAY" currency on cryptogames... The only issue is that the minimum bet values (and current balances) are generally quite different for each currency Tongue

So I use an "if-then-else" at the top of the script that determines which currency is currently selected, and automatically adjusts the basebet amount and other variables as required. Something like this:
Code:
...
if currency == "btc" then
    -- CHANGE THESE ACCORDING TO YOUR BALANCE
    baseBet = 0.00000001
    target = 0.01170333
    maxLossStreak = 20
elseif currency == "doge" then
    -- CHANGE THESE ACCORDING TO YOUR BALANCE
    baseBet = 1
    target = 300000
    maxLossStreak = 60
elseif currency == "play" then
    -- CHANGE THESE ACCORDING TO YOUR BALANCE
    baseBet = 100
    target = 30000000
    maxLossStreak = 90
else
    print("no basebet set for this currency [" .. currency .. "]!!! -- STOPPING!")
    stop()
end
...
sr. member
Activity: 770
Merit: 284
★Bitvest.io★ Play Plinko or Invest!
Learned a expensive lesson yesterday. The diffence between Variable and Change Once.
It happened to me too long ago. It's good that I forgot the amount that I lost. I was trying to mix and switch the available options but realized very soon how stupid that move had been. We learn the hard way, always.


Well now I won't forget it anymore. The best way to learn is is like this. Too bad mostly it are expensive lessons
If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.

Ok i didn't know that. Thanks for the hint. Will check it out after the holidays. If I am right I still have an account there.
legendary
Activity: 2310
Merit: 1422
Learned a expensive lesson yesterday. The diffence between Variable and Change Once.
It happened to me too long ago. It's good that I forgot the amount that I lost. I was trying to mix and switch the available options but realized very soon how stupid that move had been. We learn the hard way, always.


Well now I won't forget it anymore. The best way to learn is is like this. Too bad mostly it are expensive lessons
If you really want to test your strategy you could play at crypto.games and use play money. This gave me an idea of how the bot works, also in programmer mode, without risking my real coins.
I hope it can work for you too.
sr. member
Activity: 770
Merit: 284
★Bitvest.io★ Play Plinko or Invest!
Learned a expensive lesson yesterday. The diffence between Variable and Change Once.
It happened to me too long ago. It's good that I forgot the amount that I lost. I was trying to mix and switch the available options but realized very soon how stupid that move had been. We learn the hard way, always.


Well now I won't forget it anymore. The best way to learn is is like this. Too bad mostly it are expensive lessons
sr. member
Activity: 770
Merit: 284
★Bitvest.io★ Play Plinko or Invest!
Can someone actually tell me if the bots actually give the user an edge over other people who do not use this bot? I know strategies like Martingale does not work on most sites offering "Dice" games, but does this bot give you other strategies that gives you the advantage?

I downloaded the latest version and I tried it on Stake, but I do not see anything different to my normal wins/losses? (Or do you apply your own strategies for success?)  Huh

It's not about getting an edge over others, it's about the friends you made alo..... no wait that doesn't make sense. It's about the fun you had while playing around with settings.

Bots don't give you an advantage, it just makes a fairly boring game a bit more interesting.

can you please add the duckdice new years betting into this like you did with the faucet? Smiley

Well I don't know how long such thing will take but that promo is running for a weeks so don't now if it will be worth the time.
member
Activity: 309
Merit: 12
Can someone actually tell me if the bots actually give the user an edge over other people who do not use this bot? I know strategies like Martingale does not work on most sites offering "Dice" games, but does this bot give you other strategies that gives you the advantage?

I downloaded the latest version and I tried it on Stake, but I do not see anything different to my normal wins/losses? (Or do you apply your own strategies for success?)  Huh

It's not about getting an edge over others, it's about the friends you made alo..... no wait that doesn't make sense. It's about the fun you had while playing around with settings.

Bots don't give you an advantage, it just makes a fairly boring game a bit more interesting.

can you please add the duckdice new years betting into this like you did with the faucet? Smiley
HCP
legendary
Activity: 2086
Merit: 4314
Can someone actually tell me if the bots actually give the user an edge over other people who do not use this bot? I know strategies like Martingale does not work on most sites offering "Dice" games, but does this bot give you other strategies that gives you the advantage?
Essentially it just allows you to automate all sorts of weird and wonderful things that you can't really do using the normal settings on websites... you can try all sorts of stupid things "strategies"... you just click "Go" and it'll happily lose your money "run your strategy" while you watch the fun graph Wink

Anyone claiming to have a "guaranteed" winning script is either stupid or a scammer... especially if they want to charge you money for it Tongue


Quote
I downloaded the latest version and I tried it on Stake, but I do not see anything different to my normal wins/losses? (Or do you apply your own strategies for success?)  Huh
That is to be expected... using the bot does not alter the "house edge" in any way, so the wins/losses should be "similar" to what you would get using the web interface.
legendary
Activity: 1717
Merit: 1125
Can someone actually tell me if the bots actually give the user an edge over other people who do not use this bot? I know strategies like Martingale does not work on most sites offering "Dice" games, but does this bot give you other strategies that gives you the advantage?

I downloaded the latest version and I tried it on Stake, but I do not see anything different to my normal wins/losses? (Or do you apply your own strategies for success?)  Huh

It's not about getting an edge over others, it's about the friends you made alo..... no wait that doesn't make sense. It's about the fun you had while playing around with settings.

Bots don't give you an advantage, it just makes a fairly boring game a bit more interesting.
legendary
Activity: 2310
Merit: 1422
Learned a expensive lesson yesterday. The diffence between Variable and Change Once.

It happened to me too long ago. It's good that I forgot the amount that I lost. I was trying to mix and switch the available options but realized very soon how stupid that move had been. We learn the hard way, always.
sr. member
Activity: 770
Merit: 284
★Bitvest.io★ Play Plinko or Invest!
Can someone actually tell me if the bots actually give the user an edge over other people who do not use this bot? I know strategies like Martingale does not work on most sites offering "Dice" games, but does this bot give you other strategies that gives you the advantage?

I downloaded the latest version and I tried it on Stake, but I do not see anything different to my normal wins/losses? (Or do you apply your own strategies for success?)  Huh

Well you could do a lot more with dicebot. Settings the multiplier dynamic, setting the multiplier after a x amount of losses. Just open de bot in the advanced mode and you see a lot of options. In the programmer mode you can create even more advanced scripts.
legendary
Activity: 3430
Merit: 1957
Leading Crypto Sports Betting & Casino Platform
Can someone actually tell me if the bots actually give the user an edge over other people who do not use this bot? I know strategies like Martingale does not work on most sites offering "Dice" games, but does this bot give you other strategies that gives you the advantage?

I downloaded the latest version and I tried it on Stake, but I do not see anything different to my normal wins/losses? (Or do you apply your own strategies for success?)  Huh
sr. member
Activity: 770
Merit: 284
★Bitvest.io★ Play Plinko or Invest!
Learned a expensive lesson yesterday. The diffence between Variable and Change Once.



So with Variable it does after 40 losses the previous bet * 1.275 * 1.275 with I wasn't expecting. I expected still previous bet * 1.275 which is probably the Change Once option.  Cool

legendary
Activity: 1717
Merit: 1125
is there any chance of adding one of the bitsler cashback games, like boom or twist or something? they work a lot like the dice game but give 2x xp and cashback
AFAIK, seunjti dice bot only "works" for dice game. Never heard he will add other games on seunjti dicebot since it's a "dicebot"

Seunjti dice bot version 3.4.13 is available anyway, just download from this link https://bot.seuntjie.com
(Don't trust other source for download bot since it could scam you)


it has ethercrash, which is not a dice game either. the other two i asked about are exactly like dice, just with a different interface. in both you pick your bet of hi or lo and you either hit a number higher than goal or lower and that determines the win

I was somehow able to beat the crash game into working in DiceBot.

I can't add the other games for Bitsler as is because the architecture of the bot doesn't allow for multiple games per site. While there are viable work arounds, supporting multiple games is something I have planned for and designed v4 to do, so I would rather spend my time working on getting v4 ready than spaghettiing more games into v3.
Pages:
Jump to: