Pages:
Author

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

legendary
Activity: 2366
Merit: 1130
THis is my code.. I write a function after 3 losses code going to stop..
after stop i need a restart a code..
what is the restart programme code..
You can ask your question on this forum to get faster reply
https://forum.seuntjie.com/

I don't too familiar with what's "restart code" in program mode, but why don't you use "back to base bet" ? Instead of use "restart"
newbie
Activity: 2
Merit: 0
THis is my code.. I write a function after 3 losses code going to stop..
after stop i need a restart a code..
what is the restart programme code..
THank you

chance    = 95
basebet   = 0.01
bethigh   = true
losecount = 0
nextbet   = basebet
target    = balance * 2

maxbet = 0.5

function dobet()
   
if losecount == 3 then

stop()

end


 


    if (win) then
        chance    = 95
        nextbet   = basebet
        losecount = 0
    else
        losecount = losecount + 1
        resetseed()
        if (losecount > 1) then
            nextbet = previousbet * 2
            chance  = (1 / ((nextbet + (nextbet - basebet)) / nextbet)) * 100
            if chance < 49.5 then
               chance = 49.5
            end
            bethigh = not bethigh
        else
            nextbet = previousbet * 2
            chance  = (1 / ((basebet + nextbet) / nextbet)) * 100
            if chance < 49.5 then
               chance = 49.5
            end
           bethigh = not bethigh
        end
    end
end
full member
Activity: 531
Merit: 100
sr. member
Activity: 1750
Merit: 373
<------
sr. member
Activity: 770
Merit: 284
★Bitvest.io★ Play Plinko or Invest!
Hi . I have a question how  can I run the bot 2 at the same time  Huh
on different sites-will it work???

I did that a lot and it works. I even know someone who was playing 30 parallel dicebot sessions at Duckdice for a while. I don't know if that's possible on other sites.
HCP
legendary
Activity: 2086
Merit: 4314
Hi . I have a question how  can I run the bot 2 at the same time  Huh
on different sites-will it work???
I think you can simply run each instance from a separate folder... ie. make a copy of the entire dicebot directory (or extract the .zip to a 2nd folder) and then run the dicebot from there.

As long as you're connected to different sites, it should work. Do not try to play on the same site with multiple instances of the dicebot at the same time. Also, do not play via dicebot and website at the same time.
member
Activity: 132
Merit: 10
With the .NET Core for Linux released by Microsoft, is it worth getting Linux native Bot now ??

The thing to note here is that the .net CORE has ben released on linux (and is quite difficult to compile if you're not using ubuntu) and the .net core is not the whole .net. winforms are yet to be released, if it's going to be at all so the bot cannot run on linux yet.

Another thing to note is that v4 of the bot will consist of a few projects compiled into one, and one of these projects will be a DiceBot Core library that will run purely on .net core. This means that I (or someone with more time) will be able to implement it into a command line bot that will be able to run on unix OSs once the dicbot core dll is done

a few years passed .. is there a possibility to port this software to Linux now? any solution?
legendary
Activity: 1717
Merit: 1125
the support service responded
You need to have made at least one deposit in your account to use the API in your bot.
interesting... I was wondering why you mentioned earlier you had made a deposit Wink

So, has the deposit transaction that you sent actually confirmed or is the transaction still unconfirmed? Huh The network is insanely busy at the moment with high fees etc... so make sure the transaction has at least the minimum number of confirmations as required by wolf.bet.
Thanks. I am opening a ticket for our team to check the issue.
It can take around 12 to 24 hours. So please be patient.
the support service responded

You need to have made a deposit with the currency you are trying to use in dicebot into the account you're trying to use. Try placing a bet on the site in that currency and account before switching to DiceBot.
HCP
legendary
Activity: 2086
Merit: 4314
the support service responded
You need to have made at least one deposit in your account to use the API in your bot.
interesting... I was wondering why you mentioned earlier you had made a deposit Wink

So, has the deposit transaction that you sent actually confirmed or is the transaction still unconfirmed? Huh The network is insanely busy at the moment with high fees etc... so make sure the transaction has at least the minimum number of confirmations as required by wolf.bet.
HCP
legendary
Activity: 2086
Merit: 4314
seems like it might be an issue with the bot communicating with Wolf.bet... the bot has attempted to make a bet with the site, but has not received any response.

It is possible that Wolf.bet have made a modification to their API or something which is causing the bot to be unable to make the bet successfully... or it's not returning the data in a way that the bot can deal with it (although, if that were the case, the bot would likely throw an error).

It's a bit puzzling really... have you contacted Wolf.bet support to see if they know why it might not be working properly? Huh
legendary
Activity: 2366
Merit: 1130
hi why is Seuntjies DiceBot
not making a  bet? website https://wolf.bet/ -made a deposit
Do you mean your bot "stuck" and your bot didn't made a bet? Try to increase your bet or increase after lose, or try to re-check your internet connection
newbie
Activity: 532
Merit: 0
Is there a speed limitation in the primedice as it happened in the stake? Because since last night I can't use the dicebot in the primedice, the message "please slow down" appears and the bets stop and don't bet again!
legendary
Activity: 1717
Merit: 1125
This is probably a bit complex for mybtc12 but posting it for users with a bit more experience in programming and the bot in general: https://forum.seuntjie.com/index.php?topic=406.msg769#msg769



HCP
legendary
Activity: 2086
Merit: 4314
You can't have two dobet() functions... you can only have one.

You'll have to adjust your script so that the 2 "strategies" are implemented in one dobet() function... something like this:
Code:
basebet=0.0002
nextbet=basebet
chance=23.5
currentstrat = 1

if balance <= 0.7 then
  currentstrat = 1
else
  currentstrat = 2
end

function dobet()  
  if balance <= 0.7 then
    if currentstrat == 2 then
      currentstrat=1
      resetseed()
      resetstats()
    end
    if win then
      nextbet=0.0002
    else
      nextbet = previousbet*1.53
    end

  elseif balance > 0.7 then
    if currentstrat == 1 then
      currentstrat = 2
      resetseed()
      resetstats()
    end
    chance = 32.05
    
    if win then
      nextbet = 0.0008  
    else
      nextbet = previousbet*1.625
    end
  end

  if balance > 1 then
    stop()
    withdraw(1.0, xxxxxxxxxxxxxxxxxxxxxxxx)
  end

end

the "currentstrat" flag tracks whether we're currently on strategy 1, or strategy 2... so that we know whether or not we need to resetseed() and resetstats() when we switch from one strat to the other...

NOTE: I have not tested this code... not even a basic syntax check! - I take no responsibility if you choose to try and run this script Tongue
newbie
Activity: 1
Merit: 0
Please help need help coding script in a nutshell i want the script to witch between 2 strategies once balance varible is meet then cashout on profit
this is what i have prewritten but its not working please help

basebet=0.0002
nextbet=basebet
chance=23.5

function dobet()   
if win then
    nextbet=0.0002
else
    nextbet = previousbet*1.53
end

if balance > 0.7 then
chance = 32.05
resetseed()

function dobet()   
if win then
    nextbet = 0.0008   
else
    nextbet = previousbet*1.625
end

resetseed()
resetstats()

if balance > 1 then
    withdraw(1.0, xxxxxxxxxxxxxxxxxxxxxxxx)
end
legendary
Activity: 2030
Merit: 1189
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.
What Karartma1 suggests is really good to practice and learn how bots work. And the best way to get this practice is with the casino's money (not yet yours). As well as the casino mentioned with play money there are other casinos which offer similar 'free/faucet money' it is only a matter of Googling to find a few. Anyways, the tactic is great so if you get around to it you should gain a better understanding of the system. Good luck!
legendary
Activity: 2366
Merit: 1130
Hi Seuntjies. I have a question on dicebot variable in advanced setting mode.

Let said the bot stop due to profit made, then i reset manually on the stat and the graph chart is enough to stop the bot from multiply from the previous winning?

Thanks

I don't think graph chart has anything to do with the bot settings. Why don't you show us what settings you used in dicebot's advanced settings mod? It will make it easier to pinpoint the exact issue.


IIRC when using dicebot, the graph will shown the live result of our bet. It will be stop when we paused or stop the dicebot. But the it will resume the previous graph from previous strategy when we start with new strategy.
legendary
Activity: 1484
Merit: 1355
Hi Seuntjies. I have a question on dicebot variable in advanced setting mode.

Let said the bot stop due to profit made, then i reset manually on the stat and the graph chart is enough to stop the bot from multiply from the previous winning?

Thanks

I don't think graph chart has anything to do with the bot settings. Why don't you show us what settings you used in dicebot's advanced settings mod? It will make it easier to pinpoint the exact issue.

newbie
Activity: 54
Merit: 0
Hi Seuntjies. I have a question on dicebot variable in advanced setting mode.

Let said the bot stop due to profit made, then i reset manually on the stat and the graph chart is enough to stop the bot from multiply from the previous winning?

Thanks
legendary
Activity: 1717
Merit: 1125
DiceBot version 3.4.15 is available to download from https://bot.seuntjie.com/botpage.aspx

Change Log

New Features
None


Changes
pdated edge and implemented flexible edge for crypto.games
added currencies for wolf


Bug Fixes
Bitsler 0 chance and always low,
win multiplier
Pages:
Jump to: