Search content
Sort by

Showing 9 of 9 results by haybee191
Post
Topic
Board Games and rounds
Re: █ ★☆★777Coin★☆★ █ ✔ Full Range of Games ✔ Instant Withdraw ✔ Free mBTC!
by
haybee191
on 08/09/2017, 16:11:37 UTC
username:  blackpride191

this promotion is wonderful
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
haybee191
on 03/08/2017, 12:25:05 UTC
hello, thanks for your help, but the code still needs a bit of work, it enters the pause mode after just 3 attempts at 33.33 instead of 5 attempts, can you please help me to rectify this, so i can resume testing. thanks a lot for your help
You'll want to include a paused "flag" and a loss counter...  so, if there is a "win", you reset the lossCount back to 0... if a "loss" AND chance == 33.33 then you increment it by 1. When the counter gets to 5, you set the flag to true and use that condition to specify the betsize = 0.00000001

I assume when you say that "it resumes from the previous level" that you want it to store the old bet amount from where it paused... and then use that once it starts betting again?


NOTE: this code is UNTESTED
Code:
chance = 81.12
bethigh = true
basebet = 0.00000031
nextbet = basebet
losscount = 0
oldbet = 0
paused = false

function dobet()

  if win then
    if paused then
      losscount = 0
      paused = false
      nextbet = oldbet * 1.59738 -- resume betting at previous level
    else
      chance = 81.12
      nextbet = basebet
    end

  else
    if chance == 33.33 then
      losscount = losscount + 1
      if losscount == 5 then
        paused = true
        nextbet = 0.00000001
        oldbet = previousbet -- save the current bet for resuming later
      elseif losscount > 5 then
        paused = true
        nextbet = 0.00000001
      else
        nextbet = previousbet * 1.59738
      end
    
    else
      chance = 33.33
      nextbet = basebet/3.3
    end

  end

end
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
haybee191
on 31/07/2017, 18:22:36 UTC
hello guys, i need a bit of help adjusting the following script, it starts with chance 81.12, and changes to 33.33 chance after first lost and uses a multiplier until a win before reverting to its basebet and starting chance of 81.12. i would simply like for the script to be modified so that when the chance switches to 33.33 after a loss, after 5 losses in a row,the bet size changes to static 0.00000001 until a win and then the previous bet pattern resumes until another row of 5 losses  in a row where it pauses again and bets 0.00000001 until a win where it resumes from the previous level, i believe u understand what i am trying to do here
Code:
chance = 81.12
bethigh = true
basebet = 0.00000031
nextbet = basebet

function dobet()
if (win) then
chance = 81.12
   nextbet = basebet
else
if chance == 33.33  then
nextbet = previousbet * 1.59738
else
chance = 33.33
   nextbet = basebet/3.3
end
end
end
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
haybee191
on 09/07/2017, 10:48:43 UTC
hello guys, please i need help adding a command to the following script, that will make the bot reset seed if i get 3 losses in a row
Code:
chance = 49.95
base = 0.00000001
count = 0
tot = 1
tot2 = 1
abc = 0
cba = 0
nextbet = base
function dobet()
if profit>0.000000001 then
count = 0
tot = 1
tot2 = 1
abc = 0
cba = 0
base = 0.00000001
resetstats()
end
if base == base then
tot = 1
tot2 = 1
end
if base == base*2 then
tot = 2
tot2 = 1
end
if base == base*4 then
tot = 4
tot2 = 1
end
if base == base*8 then
tot = 8
tot2 = 1
end
if base == base*16 then
tot = 16
tot2 = 1
end
if base == base*32 then
tot = 32
tot2 = 1
end
if base == base*64 then
tot = 64
tot2 = 1
end
if base == base*128 then
tot = 128
tot2 = 1
end
if base<0.00000001 then
base = 0.00000001
count = 0
abc = 0
cba = 0
end
count = count+1
if count>10 and abc>cba then
base = base/2
count = 0
abc = 0
cba = 0
end
if count>10 and abcbase = base*2
count = 0
abc = 0
cba = 0
end
if win then
abc = abc+tot
nextbet = base
else
cba = cba+tot2
nextbet = base
end
end
end
end

thanks
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
haybee191
on 07/07/2017, 07:06:43 UTC
thanks HCP and B4RF, already made modifications using HCP's suggestion, good so far, i will definitely let you know if i encounter anymore trouble
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
haybee191
on 06/07/2017, 21:33:22 UTC
hello, i need help adding a command to the following script, its works in a modified martingale style, i would simply like you guys to help me add a command to it to make it stop when the multiplier reaches say x8



chance = 49.95
base = 0.00000001
count = 0
tot = 1
tot2 = 1
abc = 0
cba = 0
nextbet = base
function dobet()
if profit>0.000000001 then
count = 0
tot = 1
tot2 = 1
abc = 0
cba = 0
base = 0.00000001
resetstats()
end
if base == base then
tot = 1
tot2 = 1
end
if base == base*2 then
tot = 2
tot2 = 1
end
if base == base*4 then
tot = 4
tot2 = 1
end
if base == base*8 then
tot = 8
tot2 = 1
end
if base == base*16 then
tot = 16
tot2 = 1
end
if base == base*32 then
tot = 32
tot2 = 1
end
if base == base*64 then
tot = 64
tot2 = 1
end
if base == base*128 then
tot = 128
tot2 = 1
end
if base<0.00000001 then
base = 0.00000001
count = 0
abc = 0
cba = 0
end
count = count+1
if count>10 and abc>cba then
base = base/2
count = 0
abc = 0
cba = 0
end
if count>10 and abcbase = base*2
count = 0
abc = 0
cba = 0
end
if win then
abc = abc+tot
nextbet = base
else
cba = cba+tot2
nextbet = base
end
end
end
end
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
haybee191
on 21/06/2017, 15:31:15 UTC
hello, i would like to simply know how to add a time delay to my script, for example, to delay for say 1minute after an action , before commencing another one
Post
Topic
Board Gambling discussion
Re: Guide For Seuntjies Dice Bot
by
haybee191
on 08/06/2017, 13:48:44 UTC
hello sir, i would like to simply know if i can simulate my strategy in programmer mode, because when i try to run it, it just stops and gives funny results like win 1 loss1 winstreak 15 lossstreak 25, i would like to know if its configured to be able to run a simulation in this mode, if yes, please tell me how to set it up properly, i have no problem running a simulation in advance mode though
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
haybee191
on 13/04/2017, 07:29:23 UTC
hello seunjie, i noticed that the bot highlights some numbers in yellow and some in gray in the live bet panel, why is this?