Bitcoin Forum
June 22, 2024, 09:01:21 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Games and rounds / Re: █ ★☆★777Coin★☆★ █ ✔ Full Range of Games ✔ Instant Withdraw ✔ Free mBTC! on: September 08, 2017, 04:11:37 PM
username:  blackpride191

this promotion is wonderful
2  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 03, 2017, 12:25:05 PM
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
3  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 31, 2017, 06:22:36 PM
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
4  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 09, 2017, 10:48:43 AM
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 abc<cba then
base = 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
5  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 07, 2017, 07:06:43 AM
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
6  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 06, 2017, 09:33:22 PM
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 abc<cba then
base = 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
7  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: June 21, 2017, 03:31:15 PM
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
8  Economy / Gambling discussion / Re: Guide For Seuntjies Dice Bot on: June 08, 2017, 01:48:44 PM
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
9  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: April 13, 2017, 07:29:23 AM
hello seunjie, i noticed that the bot highlights some numbers in yellow and some in gray in the live bet panel, why is this?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!