Pages:
Author

Topic: Seuntjie' Dice bot programmers mode discussion. - page 59. (Read 125399 times)

newbie
Activity: 2
Merit: 0
Thanks man, good work..

   I ran that just like above.  Personally, decrementing the win till it's zero seemed like a waste of a lot of winning bets.  Also I changed the win/lose multipliers.  At 77.7% you should be winning about 3 out of 4 bets.  With the multipliers I've set it take 2.5 wins to recover from 1 lose. Also by setting the lose multiplier down to 1.5 it doesn't get too out of hand.  I also added a stop on win function, and invest function.  Since there is no check to keep from busting I wanted to strip off some winnings before it busts.    

    This is on JD, so you might have to comment out the invest function if your using on a site that doesn't invest.  

Code:
chance=77.7
multiplier=1.5
multiplier2=0.92
base=0.0000150
nextbet = base  
bethigh = false
target = .00005
investtarget = .001
tmpprofit = 0
investprofit = 0
wincount = 10
stopnow = false

function dobet()

tmpprofit += currentprofit
investprofit += currentprofit

   if win then
      if (tmpprofit > target) then
         tmpprofit = 0
         nextbet = base
         if(stopnow) then stop() end
         if(investprofit  > investtarget ) then
             investprofit = 0
             invest(investtarget)
         end      
      else
         nextbet=previousbet*multiplier2
         if(nextbet < base) then nextbet = base end
      end
   else
      nextbet=previousbet*multiplier
      if(nextbet < base) then nextbet = base end
   end
end

to comment out a line just put -- in the first spaces of the line.  

  so to comment this out.

             investprofit = 0

 put

--             investprofit = 0

https://i.imgur.com/s0kBRSP.png

The worse case lose I had to cover so far was .005 , So far I seems to work well...  

edit: forgot to mention.  When your in a lose streak, it keeps increasing your bets.  Once it starts winning then back, it will reset to the base bet before it actually reaches that.  So even thought you seem to be down quite a bit, it only take a few wins (8-10) at the higher bet, to get back in the green.   

Hi,
Ive just joined and im trying out the above code on primedice.
Things started off well and profit was stable.
So after an hour or so I left it do its thing, Only to to see it stopped at "insufficient funds" when I returned a bit later.
it seems the bets were getting larger all the time and I eventually lost as the bets were getting too big.

Just wondering if there are any tips to slow it from betting so high.

thanks.
newbie
Activity: 57
Merit: 0
Programmers, please add in this script random click "hi"/ "lo".

basebet = 0.00001 -- this is the starting amount that you can set
bchance=93  --this is your chance to win
chance=bchance
nextbet=basebet
maxbet=0.1  --this is the maximum bet your bot can make in
--the random bet
minbet=0.0001  --this is the minimum bet your bot can make
--in the random bet
maxchance=98
minchance=0.01
randomc=100
--the random bet generates a integer between zero (0)
--and ten thousand  (100 000). this value
--determines how often the random bet happens
--with a value of 100 being 1%, 20 =0.2% etc
function dobet()
x = math.random(0,10000)
if x< randomc then
nextbet = math.random(minbet*100000000,maxbet*100000000)/100000000
chance = math.random(minchance*100, maxchance*100)/100
else
nextbet=basebet
chance=bchance
end
end
legendary
Activity: 1717
Merit: 1125
Hello, I love the app. Not sure if I missed something, or if I'll need to get into programmers mode to do what I'm trying to accomplish:

Type: Martingale
Base bet: 0.00000100
Multiplier on loss: 2
After 6 losses in a row, increase bet to: 0.1000000
After next win reset to base bet

Looking at what happened here, it seems that it didn't double after 6 losses.

How do I get it to double the .1 amount after it kicks in?

Screenshot here:



My sdbsf file:
http://s000.tinyupload.com/index.php?file_id=50390898911398911371

Thank you for your help, amazing app!

see https://bitcointalksearch.org/topic/m.12656872
legendary
Activity: 1007
Merit: 1000
Hello, I love the app. Not sure if I missed something, or if I'll need to get into programmers mode to do what I'm trying to accomplish:

Type: Martingale
Base bet: 0.00000100
Multiplier on loss: 2
After 6 losses in a row, increase bet to: 0.1000000
After next win reset to base bet

Looking at what happened here, it seems that it didn't double after 6 losses.

How do I get it to double the .1 amount after it kicks in?

Screenshot here:



My sdbsf file:
http://s000.tinyupload.com/index.php?file_id=50390898911398911371

Thank you for your help, amazing app!

   It doesn't sounds like your using programmer mode, so your best bet is to post this to the main dice-bot thread. 

whatever it's doing, it is doing something.  It's not doubling any of your bets.  They're increasing, but not doubling.   The first lose goes from .000001 to .00000189 an increase of 1.89.  But the next goes to .00000342 which is an increase of 1.8095 and then it goes to .00000588 an increase of 1.7192
newbie
Activity: 2
Merit: 0
Hello, I love the app. Not sure if I missed something, or if I'll need to get into programmers mode to do what I'm trying to accomplish:

Type: Martingale
Base bet: 0.00000100
Multiplier on loss: 2
After 6 losses in a row, increase bet to: 0.1000000
After next win reset to base bet

Looking at what happened here, it seems that it didn't double after 6 losses.

How do I get it to double the .1 amount after it kicks in?

Screenshot here:

https://i.imgur.com/2nYvU7K.png

My sdbsf file:
http://s000.tinyupload.com/index.php?file_id=50390898911398911371

Thank you for your help, amazing app!
legendary
Activity: 1717
Merit: 1125
Hi, IF the site goes offline or the internet gets interrupted for some reason, there's not much the bot can do about it without taking unnecessary risks. I'd rather have the bot stop betting and protect the user
newbie
Activity: 47
Merit: 0
Hi,

   anybody have the same issue as I am with this bot and other bots. They seem to randomly stop placing bets and it is driving me nuts. Is that the fault of the websites I am using, or something with the bots? When it stops, I have to logout, login and then restart the bots.

If you think its a website thing (primedice and bitdice.me) then what site would you guys suggest to use bot with? Need a site that is fast and good house and rewards..

Thanks
newbie
Activity: 14
Merit: 0
Legion of BOOM.....

   New version of the 39.6% script.  Several changes.  Same warnings apply, this can and will bust.  Your just hoping not to bust till you've made back your bankroll plus some profit.  

   This one is setup to bet based on your balance.  It's a martingale/reverse martingale.  The starting bet is set up to cover a 20 lose streak. (20 bets).  Randomly it will bet based on a 10 lose streak.  That's the BOOM part.  It's currently setup to try this about 5% of the time.  

       R = math.random(1,20)  

  This statement assigns R a random value between 1 and 20.        

       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end

17 is my lucky number so it R equals 17 try the higher bet.  This is only done in the section of code where we calculate a new base bet.  

This does all of the same investments as the other bots.  

  It also randomly switches hi/lo 10% of the times on loses.  

I started out trying the Boom at 1% (random number 1-100).  But it didn't hit enough for my liking.  I changed it to 5%.  The first run ended with a 10 lose streak  on the BOOM cycle.  This was after about 60% win back.  So I lost about 40% of my initial bankroll (2 Clams) (ended with 1.2).  

   Next run is still going, Same setup, started with 2 clams.  Current profit is 2.1 clams.  Current balance is 2.05  So this run I'm now playing with the houses clams.  
I'll update once this run finishes.  EDIT: Run busted on a Boom cycle.  profit was 1.1 clams. 


Code:
chance = 39.6
martimulti = 1.85
streak = 20
risk = (martimulti ^ streak) * (streak/(streak *(martimulti - 1)))
print(risk)
boomstreak = 10
boomrisk = (martimulti ^ boomstreak) * (boomstreak/(boomstreak *(martimulti - 1)))


startbalance = balance
nextbet = balance / risk
basebet = balance / risk

savefactor = 1.25
target = .01
targetbalance = balance + target
bethigh = true
low = 0
high = 0
losecount = 0
stopnow = false
totallose = 0
wincount = 0
nextwinbet = basebet * martimulti


function dobet()


if (win) then
   wincount += 1
   totallose = 0
   newbalance = balance
   nextbet = balance / risk
    base = true
      if (stopnow) then stop() end
   if (wincount > 2 ) then
     nextbet = previousbet + (lastBet.profit /2)
     base = false
   else
       R = math.random(1,20)  
       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end
     end
       losecount = 0
      if (balance > targetbalance) then
         invest((balance - targetbalance)+target)
         targetbalance = targetbalance + target
         newbalance = targetbalance
      end
      if (newbalance > startbalance * savefactor) then
          invest(balance-startbalance)
          targetbalance = startbalance + target
          startbalance = startbalance * savefactor
      end
  else
      if (losecount == 0 and !base) then
          nextbet = balance / risk
          base = true
      else
          nextbet = previousbet * martimulti
          base = false
       end
      losecount += 1
      print(losecount)
 if (math.random() < .1) then bethigh = !bethigh end  
   wincount = 0
 end
  
end
Dear Chilly2k ! The script work perfect !! But i have a little problem, Safedice XMR bet and boom balance is wrong the bot take without a balance to 0.000001 x balance. Could you modify the boom script,  some that the bot work with a basis stake (base) instead of the balance ?



    


Good method, will test it out with a few dollars.
legendary
Activity: 1007
Merit: 1000
could someone help me how to make script on this case?

loss
switch
loss
loss
switch


thanks

   You could easily do that.  But you don't have it completely described.    If your just planning to lose all of the bets that's easy...

I think your asking to switch hi/lo each time you lose 1 more then the last time. 

What happens when you win?  Reset back to switch on the first loss?

You would need two counters.

lossstreak = 0 -- How many loses in the current streak
lossswitch = 1  -- When to switch


if (win) then   --  Bet won

   lossstreak = 0  -- reset
   lossswitch = 1 -- reset

else   -- Bet lost

   lossstreak += 1  -- increase lossstreak

   if (lossstreak == lossswitch) then
      bethigh = !bethigh
      lossswitch += 1  -- increase switch count
      lossstreak = 0  -- start streak again
   end 
   
end

   Hopefully that helps. 



 

 

hey chilly

what i mean is i want to use chance in example 90%

 if i got 1 loss bet then it will switch, then if next 2 bet are loss too then it will switch again..not on every loss it will switched..
reset on win. this only for 4 streaks only..

  So are you switching hi/lo?  Or changing the chance?

   If I understand you correctly, I think that the above, with addition stuff would do it.  lossstreak is a counter of loses before a switch.  lossswitch is when it will switch.
So the first loss lossstreak will go from 0 to 1 and loss switch will be 1 so it will switch.  It resets lossstreak to 0 and lossswitch to 2.  If you lose again, lossstreak will be 1 and switch is 2, and another loss and it will be streak 2 switch 2, so it should switch. 

Another easier to code way to go would be

if (math.random() < .5) then bethigh = !bethigh end

That line will switch randomly about 50% of the time.   random gives a random number between 0 and 1.  so you can change the .5 to whatever value you like.  .75 for 75% switch or .25 for 25% or any other number between 0 and 1.

Just add that to the else part of your script. 
hero member
Activity: 602
Merit: 500
could someone help me how to make script on this case?

loss
switch
loss
loss
switch


thanks

   You could easily do that.  But you don't have it completely described.    If your just planning to lose all of the bets that's easy...

I think your asking to switch hi/lo each time you lose 1 more then the last time. 

What happens when you win?  Reset back to switch on the first loss?

You would need two counters.

lossstreak = 0 -- How many loses in the current streak
lossswitch = 1  -- When to switch


if (win) then   --  Bet won

   lossstreak = 0  -- reset
   lossswitch = 1 -- reset

else   -- Bet lost

   lossstreak += 1  -- increase lossstreak

   if (lossstreak == lossswitch) then
      bethigh = !bethigh
      lossswitch += 1  -- increase switch count
      lossstreak = 0  -- start streak again
   end 
   
end

   Hopefully that helps. 



 

 

hey chilly

what i mean is i want to use chance in example 90%

 if i got 1 loss bet then it will switch, then if next 2 bet are loss too then it will switch again..not on every loss it will switched..
reset on win. this only for 4 streaks only..
member
Activity: 321
Merit: 10
WPP ENERGY - BACKED ASSET GREEN ENERGY TOKEN
Hi Chilly.

I have this script from yours but when it wins it tried to win again by betting a second time, how do I fix it so it resets after a win?
https://bot.seuntjie.com/scripts.aspx?id=5


The fix is real:
Code:
chance = 39.6
martimulti = 40
basebet = .00000001
startbalance = balance
nextbet = basebet
savefactor = 1.25
target = .01
targetbalance = balance + target
bethigh = true
low = 0
high = 0
losecount = 0
stopnow = false
totallose = 0
wincount = 0
nextwinbet = basebet * martimulti
go = false
set = false


function dobet()

if (lastBet.roll < chance) then
  low += 1
end
if (lastBet.roll > (100 - chance)) then
  high += 1
end

if (win) then
   wincount += 1
   totallose = 0
   newbalance = balance
   if (high > low) then
     bethigh = true
    else
      bethigh = false
    end
  if (wincount == 1 and go) then
     nextbet = nextwinbet
     go = false
      set = false
  else
      nextbet = basebet
  end
   if (wincount == 2 and previousbet != basebet) then
      if (stopnow) then stop() end
        martimulti = 40
        nextwinbet = basebet * martimulti   
        set = true
       losecount = 0
      if (balance > targetbalance) then
         invest((balance - targetbalance)+target)
         targetbalance = targetbalance + target
         newbalance = targetbalance
      end
      if (newbalance > startbalance * savefactor) then
          invest(balance-startbalance)
          targetbalance = startbalance + target
          startbalance = startbalance * savefactor
      end
   end
 else
   if (wincount == 1 and previousbet != basebet ) then
      nextwinbet = previousbet * martimulti
      martimulti = martimulti / 2
      if (martimulti < 1.85) then martimulti = 1.85 end
      losecount += 1
      print(losecount)
   else
     
   end
   wincount = 0
   totallose = totallose + 1
   if (totallose == 2) then go = true end
   nextbet = basebet
 end
 
end
legendary
Activity: 1007
Merit: 1000
could someone help me how to make script on this case?

loss
switch
loss
loss
switch


thanks

   You could easily do that.  But you don't have it completely described.    If your just planning to lose all of the bets that's easy...

I think your asking to switch hi/lo each time you lose 1 more then the last time. 

What happens when you win?  Reset back to switch on the first loss?

You would need two counters.

lossstreak = 0 -- How many loses in the current streak
lossswitch = 1  -- When to switch


if (win) then   --  Bet won

   lossstreak = 0  -- reset
   lossswitch = 1 -- reset

else   -- Bet lost

   lossstreak += 1  -- increase lossstreak

   if (lossstreak == lossswitch) then
      bethigh = !bethigh
      lossswitch += 1  -- increase switch count
      lossstreak = 0  -- start streak again
   end 
   
end

   Hopefully that helps. 



 

 
hero member
Activity: 602
Merit: 500
could someone help me how to make script on this case?

loss
switch
loss
loss
switch


thanks
newbie
Activity: 13
Merit: 0
Dear chilly2k
To my regreat, you awesome 505 strategy with zigzag script from
https://bitcointalk.org/index.php?topic=1114503.40 stopped placing
bets with primedice.com site starting with yesterday.
I'm using Programmer mode and previously, it worked absolutely fine!
But now, the bot v3.02 (stable) started to say "Please set starting
bet using nextbet = x.xxxxxxxx" and then, doing nothing.

Could you take a look, please! Thank you very much!
full member
Activity: 686
Merit: 107
There isn't really a way to have a delay with the programming mode that doesn't make the bot hang. (might be a possible futute add on)

If you dont mind the bot hanging, you can make a while loop that checks the time and only continues if 5 minutes have passed, but this will cause one cpu core to run at 100%.

The alternative is to use the sleep or pause method. I'm on my phone right now, so I cant check which it is how it works, but it's been discusswd before. Check the firts few posts of this thread or some of the last few pages of the bots' own thread
I do not presume you to advise something,You're the genius who created this super bot,but from my observations at work 999dice bot for a reference to which I once gave delay a very good Supplement strategy and helps to achieve better results.it would be very cool if you added a custom delay function let's say after a certain number of losses,but you decide you are the Creator and the Creator,and I'm just a user and this is my personal observation
legendary
Activity: 1717
Merit: 1125
There isn't really a way to have a delay with the programming mode that doesn't make the bot hang. (might be a possible futute add on)

If you dont mind the bot hanging, you can make a while loop that checks the time and only continues if 5 minutes have passed, but this will cause one cpu core to run at 100%.

The alternative is to use the sleep or pause method. I'm on my phone right now, so I cant check which it is how it works, but it's been discusswd before. Check the firts few posts of this thread or some of the last few pages of the bots' own thread
full member
Activity: 589
Merit: 100
Hi, seuntjie and chilly2k
I need your help with something,

This is the code I am using right now.

Quote
chance=47.99
multiplier=1.50
multiplier2=0.75
base=0.0000002
savefactor = 1.99
nextbet = base
low = 0
high = 0
target = .0000001
savebalance = balance

function dobet()

   if win then
      if ((balance - savebalance) > target) then
         savebalance = balance
         nextbet = base
      else
resetseed()
         nextbet=previousbet*multiplier2

      end
   else
      nextbet=previousbet*multiplier
      if(nextbet < .00000002) then nextbet = base end
   end
 end
end
end

every hour, I want to be a 5 minute break
and then continue..


how can I do ?
full member
Activity: 686
Merit: 107
Legion of BOOM.....

   New version of the 39.6% script.  Several changes.  Same warnings apply, this can and will bust.  Your just hoping not to bust till you've made back your bankroll plus some profit.  

   This one is setup to bet based on your balance.  It's a martingale/reverse martingale.  The starting bet is set up to cover a 20 lose streak. (20 bets).  Randomly it will bet based on a 10 lose streak.  That's the BOOM part.  It's currently setup to try this about 5% of the time.  

       R = math.random(1,20)  

  This statement assigns R a random value between 1 and 20.        

       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end

17 is my lucky number so it R equals 17 try the higher bet.  This is only done in the section of code where we calculate a new base bet.  

This does all of the same investments as the other bots.  

  It also randomly switches hi/lo 10% of the times on loses.  

I started out trying the Boom at 1% (random number 1-100).  But it didn't hit enough for my liking.  I changed it to 5%.  The first run ended with a 10 lose streak  on the BOOM cycle.  This was after about 60% win back.  So I lost about 40% of my initial bankroll (2 Clams) (ended with 1.2).  

   Next run is still going, Same setup, started with 2 clams.  Current profit is 2.1 clams.  Current balance is 2.05  So this run I'm now playing with the houses clams.  
I'll update once this run finishes.  EDIT: Run busted on a Boom cycle.  profit was 1.1 clams. 


Code:
chance = 39.6
martimulti = 1.85
streak = 20
risk = (martimulti ^ streak) * (streak/(streak *(martimulti - 1)))
print(risk)
boomstreak = 10
boomrisk = (martimulti ^ boomstreak) * (boomstreak/(boomstreak *(martimulti - 1)))


startbalance = balance
nextbet = balance / risk
basebet = balance / risk

savefactor = 1.25
target = .01
targetbalance = balance + target
bethigh = true
low = 0
high = 0
losecount = 0
stopnow = false
totallose = 0
wincount = 0
nextwinbet = basebet * martimulti


function dobet()


if (win) then
   wincount += 1
   totallose = 0
   newbalance = balance
   nextbet = balance / risk
    base = true
      if (stopnow) then stop() end
   if (wincount > 2 ) then
     nextbet = previousbet + (lastBet.profit /2)
     base = false
   else
       R = math.random(1,20)  
       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end
     end
       losecount = 0
      if (balance > targetbalance) then
         invest((balance - targetbalance)+target)
         targetbalance = targetbalance + target
         newbalance = targetbalance
      end
      if (newbalance > startbalance * savefactor) then
          invest(balance-startbalance)
          targetbalance = startbalance + target
          startbalance = startbalance * savefactor
      end
  else
      if (losecount == 0 and !base) then
          nextbet = balance / risk
          base = true
      else
          nextbet = previousbet * martimulti
          base = false
       end
      losecount += 1
      print(losecount)
 if (math.random() < .1) then bethigh = !bethigh end  
   wincount = 0
 end
  
end



    


Dear chilly2k,my question is it possible to disable the function of investing in the strategy Legion BoMMM.If Yes tell me how please


   You've got 2 choices.  You can make savefactor and target large numbers.  Something you will never reach based on your balance.  Maybe set them both to 10.
This will mean the checks in the code will never be true. 

Or.

   You can comment out both lines that start with invest(

The code will still do the checks and reset internal stuff, but won't do the invest then. 

In the end they will bot avoid the invest function.   

Anything on a line after -- is treated as a comment.  So you just add -- to the front of the line.   
Dear chilly2k thank you so much,you always help me,I don't know what I'd do without you.thank you.
legendary
Activity: 1007
Merit: 1000
Legion of BOOM.....

   New version of the 39.6% script.  Several changes.  Same warnings apply, this can and will bust.  Your just hoping not to bust till you've made back your bankroll plus some profit.  

   This one is setup to bet based on your balance.  It's a martingale/reverse martingale.  The starting bet is set up to cover a 20 lose streak. (20 bets).  Randomly it will bet based on a 10 lose streak.  That's the BOOM part.  It's currently setup to try this about 5% of the time.  

       R = math.random(1,20)  

  This statement assigns R a random value between 1 and 20.        

       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end

17 is my lucky number so it R equals 17 try the higher bet.  This is only done in the section of code where we calculate a new base bet.  

This does all of the same investments as the other bots.  

  It also randomly switches hi/lo 10% of the times on loses.  

I started out trying the Boom at 1% (random number 1-100).  But it didn't hit enough for my liking.  I changed it to 5%.  The first run ended with a 10 lose streak  on the BOOM cycle.  This was after about 60% win back.  So I lost about 40% of my initial bankroll (2 Clams) (ended with 1.2).  

   Next run is still going, Same setup, started with 2 clams.  Current profit is 2.1 clams.  Current balance is 2.05  So this run I'm now playing with the houses clams.  
I'll update once this run finishes.  EDIT: Run busted on a Boom cycle.  profit was 1.1 clams. 


Code:
chance = 39.6
martimulti = 1.85
streak = 20
risk = (martimulti ^ streak) * (streak/(streak *(martimulti - 1)))
print(risk)
boomstreak = 10
boomrisk = (martimulti ^ boomstreak) * (boomstreak/(boomstreak *(martimulti - 1)))


startbalance = balance
nextbet = balance / risk
basebet = balance / risk

savefactor = 1.25
target = .01
targetbalance = balance + target
bethigh = true
low = 0
high = 0
losecount = 0
stopnow = false
totallose = 0
wincount = 0
nextwinbet = basebet * martimulti


function dobet()


if (win) then
   wincount += 1
   totallose = 0
   newbalance = balance
   nextbet = balance / risk
    base = true
      if (stopnow) then stop() end
   if (wincount > 2 ) then
     nextbet = previousbet + (lastBet.profit /2)
     base = false
   else
       R = math.random(1,20)  
       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end
     end
       losecount = 0
      if (balance > targetbalance) then
         invest((balance - targetbalance)+target)
         targetbalance = targetbalance + target
         newbalance = targetbalance
      end
      if (newbalance > startbalance * savefactor) then
          invest(balance-startbalance)
          targetbalance = startbalance + target
          startbalance = startbalance * savefactor
      end
  else
      if (losecount == 0 and !base) then
          nextbet = balance / risk
          base = true
      else
          nextbet = previousbet * martimulti
          base = false
       end
      losecount += 1
      print(losecount)
 if (math.random() < .1) then bethigh = !bethigh end  
   wincount = 0
 end
  
end



    


Dear chilly2k,my question is it possible to disable the function of investing in the strategy Legion BoMMM.If Yes tell me how please


   You've got 2 choices.  You can make savefactor and target large numbers.  Something you will never reach based on your balance.  Maybe set them both to 10.
This will mean the checks in the code will never be true. 

Or.

   You can comment out both lines that start with invest(

The code will still do the checks and reset internal stuff, but won't do the invest then. 

In the end they will bot avoid the invest function.   

Anything on a line after -- is treated as a comment.  So you just add -- to the front of the line.   
legendary
Activity: 1007
Merit: 1000
This bot, Primedice Withdrawal operations , error --> "Program stopped" Why ?






    Try asking in the main thread.  https://bitcointalksearch.org/topic/seuntjies-dicebot-multi-site-multi-strategy-betting-bot-for-dice-with-charts-307425  That's a base bot type problem, it looks like your trying to do the withdrawl in advanced mode.   
Pages:
Jump to: