Bitcoin Forum
June 22, 2024, 12:33:33 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 29, 2017, 01:57:58 AM
 Huh ???Any idea how to do that?
Thank you all for help
2 more questions

1. how can i make this script to start to bet basebet after 3 losses in the row?
2. how to make this script to bet 10% o the balance on 90% chance randomly every 20-50 won bets?

Code:
startbalance=balance
chance=49.5
multiplier=2
base=balance/1000
nextbet=base   
bethigh=false
resetstats()

function dobet()
base=balance/1000

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

      if profit > balance/2000 then
        resetstats()

        nextbet=base
      else
        nextbet=previousbet
      end

   else
      nextbet=previousbet*multiplier
   end

   if balance - startbalance > 0.00100000 then
            stop()
      ching()
   end
end

2  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 22, 2017, 01:48:24 PM
Thank you all for help
2 more questions

1. how can i make this script to start to bet basebet after 3 losses in the row?
2. how to make this script to bet 10% o the balance on 90% chance randomly every 20-50 won bets?

Code:
startbalance=balance
chance=49.5
multiplier=2
base=balance/1000
nextbet=base   
bethigh=false
resetstats()

function dobet()
base=balance/1000

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

      if profit > balance/2000 then
        resetstats()

        nextbet=base
      else
        nextbet=previousbet
      end

   else
      nextbet=previousbet*multiplier
   end

   if balance - startbalance > 0.00100000 then
            stop()
      ching()
   end
end
3  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 22, 2017, 12:24:30 AM
Is there any way to combine this 2 scripts?
 Sad
OK
i have 2 scripts that you helped me to build
this one is betting on 49.5 and doubles the bet on lose but does not reset on first win only resets when reaches 100 sat profit and stops on 1000 total profit  and changes hi lo randomly.
Code:
startbalance=balance
chance=49.50
multiplier=2
base=0.00000001
nextbet=base   
bethigh=true
function dobet()
   
   if win then
      if profit > 0.00000100 then
        resetstats()
        nextbet=basebet
      else
        nextbet=previousbet
      end

   else
      nextbet=previousbet*multiplier
   end

   if balance - startbalance > 0.00001000 then
      nextbet=0
      stop()
      ching()
   end
end

what i want add to it is what the second script does it hunts for rows of numbers below 1% or above 99% and if streak is 3 it bets 1% on oposite as in this script
Code:
basebet= 0.00000001
nextbet=basebet
chance=49.5

highCount=0
lowCount=0
previousbetBackup=basebet

function dobet()

    if lastBet.Roll > 99 then
        highCount = highCount+1
    else
        highCount = 0
    end

    if lastBet.Roll < 1 then
        lowCount = lowCount+1
    else
        lowCount = 0
    end

    if highCount >= 3 then
        bethigh = false
        nextbet = balance * 0.01
        chance=90.0
    else if lowCount >= 3 then
        bethigh = true
        nextbet = balance * 0.01
        chance=90.0
    else
        chance=49.5

        if win then     
            nextbet = basebet
        else   
            nextbet = previousbetBackup*2
        end
previousbetBackup = nextbet
    end

end
end
end

So i need one script to do it all combine them.
4  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 21, 2017, 09:01:02 PM
OK
i have 2 scripts that you helped me to build
this one is betting on 49.5 and doubles the bet on lose but does not reset on first win only resets when reaches 100 sat profit and stops on 1000 total profit  and changes hi lo randomly.
Code:
startbalance=balance
chance=49.50
multiplier=2
base=0.00000001
nextbet=base   
bethigh=true
function dobet()
   
   if win then
      if profit > 0.00000100 then
        resetstats()
        nextbet=basebet
      else
        nextbet=previousbet
      end

   else
      nextbet=previousbet*multiplier
   end

   if balance - startbalance > 0.00001000 then
      nextbet=0
      stop()
      ching()
   end
end

what i want add to it is what the second script does it hunts for rows of numbers below 1% or above 99% and if streak is 3 it bets 1% on oposite as in this script
Code:
basebet= 0.00000001
nextbet=basebet
chance=49.5

highCount=0
lowCount=0
previousbetBackup=basebet

function dobet()

    if lastBet.Roll > 99 then
        highCount = highCount+1
    else
        highCount = 0
    end

    if lastBet.Roll < 1 then
        lowCount = lowCount+1
    else
        lowCount = 0
    end

    if highCount >= 3 then
        bethigh = false
        nextbet = balance * 0.01
        chance=90.0
    else if lowCount >= 3 then
        bethigh = true
        nextbet = balance * 0.01
        chance=90.0
    else
        chance=49.5

        if win then     
            nextbet = basebet
        else   
            nextbet = previousbetBackup*2
        end
previousbetBackup = nextbet
    end

end
end
end

So i need one script to do it all combine them.
5  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 21, 2017, 07:20:06 PM
ok now i am trying to merge my 2 scripts and i am doin something wrong
i want the script to proceed with the second strategy but looking and counting if there are 99% in the row is no

1st one counting the 99%  and betting 1% after 3

Code:
basebet= 0.00000001
nextbet=basebet
chance=49.5

highCount=0
lowCount=0
previousbetBackup=basebet

function dobet()

    if lastBet.Roll > 99 then
        highCount = highCount+1
    else
        highCount = 0
    end

    if lastBet.Roll < 1 then
        lowCount = lowCount+1
    else
        lowCount = 0
    end

    if highCount >= 3 then
        bethigh = false
        nextbet = balance * 0.01
        chance=90.0
    else if lowCount >= 3 then
        bethigh = true
        nextbet = balance * 0.01
        chance=90.0
    else
        chance=49.5

        if win then     
            nextbet = basebet
        else   
            nextbet = previousbetBackup*2
        end
previousbetBackup = nextbet
    end

end
end
end



second one that is betting and multiplies without stop until it gets to profit o 100 sat than restarts the bet to the beginning and stops when reaches the total profit o 1000


Code:
startbalance=balance
chance=49.50
multiplier=2
base=0.00000001
nextbet=base   
bethigh=true
function dobet()
   
   if win then
      if profit > 0.00000100 then
        resetstats()
        nextbet=basebet
      else
        nextbet=previousbet
      end

   else
      nextbet=previousbet*multiplier
   end

   if balance - startbalance > 0.00001000 then
      nextbet=0
      stop()
      ching()
   end
end

how to merge them?


6  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 21, 2017, 03:25:46 AM
Thanks
I think that there should be base not basebet?
nextbet=basebet

and how can i make it randomly change  hi lo?
7  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 21, 2017, 02:47:53 AM
thanks
but how to et another /  second profit counter
the one for total profit to stop?
8  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 21, 2017, 12:50:32 AM
Thanks almost correct but
after win it should not change the bet it should stay wat it was before
I need 2 counts or profit
first everytime when profit hits  100 sato it needs to reset bet and next when total profit hits 1000 it should stop


Quote
chance=49.50
multiplier=2
base=0.00000001
nextbet=base  
bethigh=true
function dobet()
   if win then
      nextbet=base
   end
   else
      nextbet=previousbet*multiplier
   end
   if profit > 0.00000100 then
      resetstats()
      nextbet=base
   end
   if profit > 0.00001000 then
      stop()
      ching()
   end
end
9  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 20, 2017, 10:54:34 PM
Any help on this?

Hello my helpful friends.
I need a script to
bet 1 sat on 49.50
if win bet the same bet i lose bet x2 until it gets a profit 100 sat once profit 100 sat reset and get back to 1 sat bet
all this until total profit from start  reaches 1000 sat than stop

how to archive that?

10  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 20, 2017, 11:50:31 AM
Hello my helpful friends.
I need a script to
bet 1 sat on 49.50
if win bet the same bet i lose bet x2 until it gets a profit 100 sat once profit 100 sat reset and get back to 1 sat bet
all this until total profit from start  reaches 1000 sat than stop

how to archive that?
11  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 01, 2017, 07:57:50 PM
well almost
Code:
basebet=0.00000001
nextbet=basebet
chance=49.5

highCount=0
lowCount=0
previousbetBackup=basebet

function dobet()

if highCount >= 2 then
bethigh = false
nextbet = balance * 0.1
chance=99.0
else
if lowCount >= 2 then
bethigh = true
nextbet = balance * 0.1
chance=99.0
else
chance=49.5

if win then      
  nextbet = basebet
else  
  nextbet = previousbetBackup*2
end

previousbetBackup = nextbet
end
end

if lastBet.Roll > 99 then
highCount = highCount+1
else
highCount = 0
end

if lastBet.Roll < 1 then
lowCount = lowCount+1
else
lowCount = 0
end
end
it looks like it waits one bet before the correct bet i do not know why?
anyone knows why after 2 bets i am looking it does 3rd bet on 49.5% and then it does the 99% bet instead o directly after?
12  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 01, 2017, 07:48:25 PM
I think 99% bets are not even allowed on most sites right?
I think you got it back to front... and they're wanting to wager 10% if there are 2 rolls in a row under 1 or above 99... then wager on the 1% chance bets... not on the 99% chance bets Wink

ie.

Roll 1 = 0.74
Roll 2 = 0.87
Roll 3 = wager 10% of balance on chance = 1, bethigh = false (ie. bet low)

or

Roll 1 = 99.4
Roll 2 = 99.87
Roll 3 = wager 10% of balance on change = 1, bethigh = true (ie. bet high)

No No
So regular bet is for example martingale 1sat 49.5 and 100% increase on loose
i there will be 2 over 99% in the row i wish to bet 10% of the balance opposite direction on 99%chance as there is low chance of getting the third one.
So the script should monitor for >99 and <1 and act if there is 2 in the row.
than it should count how many of this hi or low strikes was and let say after 5 it should bet only if there is the row of 3


13  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 01, 2017, 05:34:56 PM
Any help welcome how to make a script hunting or row of numbers below or above?
14  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 01, 2017, 01:53:15 AM
Sorry I was not asking f it is possible to win or not
I was asking how to write the script that will
bet normal martingale but in the same time will count i there are rolls above 99% or below 1% in the row and if they are 2 will place the bet below or above of 10% o the balance not interrupting the main strategy?
It would be nice i fit was counting also how many strikes like that was there already and if there was 5
change minimal row to 3?
Please
Anyone know how to do that?
 
15  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: November 30, 2017, 04:42:18 PM
Yes i know it all but i think it is worth to try?
So how this script could look like?
16  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: November 29, 2017, 09:53:22 PM
Hi
I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row?
So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%?
Is the idea explained correctly?
17  Economy / Digital goods / Dicebot Script searching for numbers? on: November 29, 2017, 08:46:39 PM
Hi
I am looking for a script that inside normal martingale will monitor for for the numbers and bet if they will show twice in the row?
So for example we do have normal 50% strategy with 100% on loose but if there will be 2 in the row below 1% it will bet 10% of balance below 1% and if it is above 99% it will bet 10% of balance above 99%?
Is the idea explained correctly?

18  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 05, 2017, 03:21:33 PM
Sorry
I think i did brake bitsler.
I did not ment to.  Huh
19  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 04, 2017, 10:32:00 AM
Next question
How to make my base always 0.0001 of my balance in the moment of the bet?
if i put it before the dobet it will check it only once
20  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 02, 2017, 10:34:21 PM
Thanks
I do have it on bitsler when i bet directly on the site it is always correct but via bot it is 49.5 low 49.49 on hi?
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!