Bitcoin Forum
May 28, 2024, 05:22:33 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 [91]
1801  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 10, 2015, 06:09:57 AM

chilly2k Buddy thank you again aunt for the work done.I don't even know how to thank you.Everything turned out just super.even better than I could imagine.I beg you tell me where in the code and what to prescribe to enable and configure the zig zag.If this is possible? and tell me please if it is not difficult what is the function of invest

   Just remember me (tip!) when you hit it big...  Smiley

   I didn't do anything with the zigzag.  I tried out switching high/low when a 3 series of bets failed.  I think it did worse that way. 
You would have to decide when/how you wanted to switch, then it's pretty easy to do.

 bethigh = !bethigh

is the line of code to just switch high/low.   

My first attempt I just added that line in the lose path, in the third lose section.  I busted fairly quickly, then realized I need to add it to the third section of the win path, when were incrementing by 3X.  But I eventually busted that too. 

Of course those could work great for you and your seed.  It's all random...   


Just-dice has an invest feature.  I tend to use it like a bank.  Once I hit a certain profit level, I invest some.  The idea is to build up the investment before you bust. 
 
Other sites do not offer that.   

I was on Pocket Rocket, testing, and I just created another user, and sent that user tips. 
tip(userid,amount)

  I believe the tip function works on most sites.   


while I'm a beggar and I couldn't thank you enough for the work.but I swear I will reward you generously for your work when you win something .I'm so stupid that I do not understand where and how to register that the button is changed after each victory or a series of victories and defeats.I apologize for the arrogance but could you give me an example with code which defines a variable zig zag


ok, I've added the zigzag stuff and explained what they are.  You can select one and un-comment it.  Just remove the -- from the bethigh line. 

Code:
chance= 49
base=0.00000001
bethigh = true
investtarget = .001

nextbet = base 
investprofit = 0
wincount = 0
stopnow = false
first = true
second = false
secondwin = false
third = false

function dobet()

-- switch high/low every bet
-- bethigh = !bethigh

investprofit += currentprofit
done = false

   if win then

--     switch high/low every win
--     bethigh = !bethigh

         if(first) then
--          switch high/low on the first win
--          bethigh = !bethigh
            nextbet = base
            if(stopnow) then stop() end
         end
         if(second) then
--          switch high/low on the second win
--          bethigh = !bethigh
            secondwin = true
            second = false
            third = true
            done = true
         end
         if(third and !done) then
--          switch high/low on the third win
--          bethigh = !bethigh
            if(secondwin) then
--             switch high/low on the second and third win
--             bethigh = !bethigh   
               nextbet = base
               if(stopnow) then stop() end
            else
--              switch high/low on one and two lose third win
--              bethigh = !bethigh               
                nextbet = previousbet * 3
             end
             third = false
             first = true
         end
         if (investprofit > investtarget) then
            invest(investtarget)
            investprofit = 0
         end
   else
--    switch high/low on the every lose
--    bethigh = !bethigh
      if(first and !done) then
--        switch high/low on the first lose
--        bethigh = !bethigh
          first = false
          second = true
          done = true
       end
       if(second and !done) then
--         switch high/low on the second lose
--         bethigh = !bethigh
           secondwin = false
           second = false
           third = true
           done = true
        end
        if(third and !done) then
--          switch high/low on the third lose
--          bethigh = !bethigh
            third = false
            first = true
            print("lose side")
            if (secondwin) then
--              switch high/low on the one lose two in thrird lose
--              bethigh = !bethigh
                nextbet = previousbet * 3
            else
--              switch high/low only if all three lose
--              bethigh = !bethigh
                nextbet = previousbet * 4
             end
            done = true
        end 
   end
end
 


   I believe that covers all cases.  Of course you can get tricky and say I want to zigzag if 2 series lose or on 6 loses in a row.  With programmer mode the sky is the limit.  Switch if the next bet is greater then X,

   You can also do a reset seed from programmer mode.  I've had some luck with it, but not enough to try it here.   
thank you very much friend,I do not know that I have done without you.so far everything works just great.just super.
1802  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 09, 2015, 09:31:13 PM

chilly2k Buddy thank you again aunt for the work done.I don't even know how to thank you.Everything turned out just super.even better than I could imagine.I beg you tell me where in the code and what to prescribe to enable and configure the zig zag.If this is possible? and tell me please if it is not difficult what is the function of invest

   Just remember me (tip!) when you hit it big...  Smiley

   I didn't do anything with the zigzag.  I tried out switching high/low when a 3 series of bets failed.  I think it did worse that way. 
You would have to decide when/how you wanted to switch, then it's pretty easy to do.

 bethigh = !bethigh

is the line of code to just switch high/low.   

My first attempt I just added that line in the lose path, in the third lose section.  I busted fairly quickly, then realized I need to add it to the third section of the win path, when were incrementing by 3X.  But I eventually busted that too. 

Of course those could work great for you and your seed.  It's all random...   


Just-dice has an invest feature.  I tend to use it like a bank.  Once I hit a certain profit level, I invest some.  The idea is to build up the investment before you bust. 
 
Other sites do not offer that.   

I was on Pocket Rocket, testing, and I just created another user, and sent that user tips. 
tip(userid,amount)

  I believe the tip function works on most sites.   


while I'm a beggar and I couldn't thank you enough for the work.but I swear I will reward you generously for your work when you win something .I'm so stupid that I do not understand where and how to register that the button is changed after each victory or a series of victories and defeats.I apologize for the arrogance but could you give me an example with code which defines a variable zig zag
1803  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 09, 2015, 08:07:02 PM
505 strat.

This was a first try.  I think there might be some fine tuning to figure out what to bet when you win one of the 3 bets in a series.  As coded I increase X3 if you win one.  X4 if you lose all 3.  

as always tips are appreciated.  Smiley  

Code:

chance= 49
base=0.00000001
bethigh = true
investtarget = .001

nextbet = base  
investprofit = 0
wincount = 0
stopnow = false
first = true
second = false
secondwin = false
third = false

function dobet()

investprofit += currentprofit
done = false

   if win then
         if(first) then
            nextbet = base
            if(stopnow) then stop() end
         end
         if(second) then
            secondwin = true
            second = false
            third = true
            done = true
         end
         if(third and !done) then
            if(secondwin) then
               nextbet = base
               if(stopnow) then stop() end
            else
                print("win side")
                nextbet = previousbet * 3
             end
             third = false
             first = true
         end
         if (investprofit > investtarget) then
            invest(investtarget)
            investprofit = 0
         end
   else
      if(first and !done) then
          first = false
          second = true
          done = true
       end
       if(second and !done) then
           secondwin = false
           second = false
           third = true
           done = true
        end
        if(third and !done) then
            third = false
            first = true
            print("lose side")
            if (secondwin) then
                nextbet = previousbet * 3
            else
                nextbet = previousbet * 4
             end
            done = true
        end  
   end
end


    There is an invest function.  If you do not want to use this (works on JD) then set investtarget to a very high amount.  
If you wanted to use this to withdraw you could also change the statement

            invest(investtarget)
to
            withdraw(investtarget,BTCaddr)

and add

BTCaddr = "Your BTC address"   <---  In quotes.  

to the initialization code before dobet()


chilly2k Buddy thank you again aunt for the work done.I don't even know how to thank you.Everything turned out just super.even better than I could imagine.I beg you tell me where in the code and what to prescribe to enable and configure the zig zag.If this is possible? and tell me please if it is not difficult what is the function of invest
1804  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 09, 2015, 07:56:17 PM
What?I can't believe my eyes!!Can't be!!!It is finished Hallelujah!!!!!!!!!!! chilly2k buddy I love you.Thank you.It will test.
1805  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 09, 2015, 03:54:55 AM
I am ready to make all efforts are only likely to provide you with information about strategies 505,say what you need and I will provide any data,I think 505 is a very viable strategy and I really hope that you write a script on it. Embarrassed

Navigatorus, thank you for exposing us to some new betting strategy ideas.  I hope seuntjie can incorporate some of the 505 and anthing else helpful and interesting from the bot you illustrated for us.  I wish I could speak Russian so I could understand what was in the bot you are showing.  It looks really interesting.
Yes no problem friend,I have a lot of ideas.but for English I think they will implement if not impossible it is very difficult((((Yes and seuntjie not very interested as I think in writing the script for strategy 505.alas((((.one hope remains chilly2k.this guy is a master at writing scripts for DiceBot.I trust in him.I hope for his help and skill.505 is a really interesting strategy.
1806  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 08, 2015, 04:24:00 AM
1.a series of three bets starts with any amount depending on your balance,base rate you determine,whether the or 1 or 1000 Satoshi Satoshi.naturally the higher the bet the higher the chance to lose.
2.Yes if you lose multiply by 4
3.play to win or total loss of all money.IE (1 4 16 64 256 - 0,0148576)multiplication is to the point as much as it is balance.
4.if you win the first bet in the beginning of the game,or the first bet after vyygryshnoy series for example(1L,1L,1L,4L,4W,4W/ reset to base,1W/reset to base,1W/reset to base).multiply by 4, provided for example(1L,1W,1L or 1L,1L,1W)
5.if the first lose something will happen next (1L,+1W,+1L<0 or 1L,+1L,+1W<0)multiply by 4
I hope I clarified the situation to you,if something is not clear ask and I will gladly try to explain to you all what you want.thank you.

1) understood.
2) See nonce 28-30 in your example.  The bet is 4.  There are 2 loses and one win.  I believe this is <0 so the next bet should be X4. 
     But your example nonce 31 is 8 not 16.  Is that a bug in that bot? 
3) understood
4) Is the vyygryshnoy series the series of 3 bets? or the series from the first bet to the reset of the bet.  Do you always reset if you win the first bet in the 3 bet set? 
    so 1L, 1L, 1L, 4W do you reset or do the final 2, 4 bets?
5) I think your saying the bet should be reset if the first bet wins. 

  So basically if bet 1 in the series wins you reset, if not continue to bet 2
  if bet 2 wins remember for the results of bet3
  if bet 2 loses, do bet 3, but win or lose increase bet X4.
  if bet 2 won and bet 3 won, reset to base.
  if bet 2 won and 3 lost, increase bet X4.
1.ok
2.there is no error,the loop in this case began with 25 bet and ended 31 rate"(-1)+(-1)+(-1)+(-4)+(-4)+4+8=1>0"
3.ok
4.Yes if the series begins with the victory,1w>0,then always reset.1L, 1L, 1L, 4W in this example, the reset income +1>0/reset on the base.
5,the rate is reset if the first bet wins

"So basically if bet 1 wins in the series you reset it, if not continue to bet 2
if bet 2 wins remember for the results of bet3
if bet loses 2, do 3 bet, but win or lose increase bet X4.
if bet 2 won and 3 bet won, reset to base.
if bet 2 won and 3 lost, increase bet X4." -Yes absolutely right
1807  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 07, 2015, 08:19:04 PM
Dear chilly2k .I bite your elbows that don't know how to explain to you the strategy 505,I really need the script based strategy 505.I tried to answer your questions here https://bitcointalk.org/index.php?topic=307425.760 the last post on the page.Please read my answers and if you ask your questions.I will make every effort to try to explain to you the strategy 505.Thank you for your patience and for your work.
1808  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 07, 2015, 08:00:18 PM
I gave you a link to a screenshot,I'll give it again at this image presents in my opinion strategy is described in detail with all conditions of discharge and the rate increase,I urge you to read through this screen
the main condition of the reset base rate of profit is>0 in a series of three bets,if in a series of three rates, the first rate is positive then resets to the base rate,if in a series of three bets 2 positive then resets to basic,but if in a series of three bets, two or three negative rate is multiplying 2 times two

This bot is Russian ? where can i download it ?
Yes it is a Russian bot,bot for 999dice,it has interesting moments in particular strategy 505 ,but compared to DiceBot he just flawed,DiceBot-super bot.If you want to try here is the link https://yadi.sk/d/_7BAdZaLhJxhp
1809  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 07, 2015, 12:51:33 AM
1.a series of three bets starts with any amount depending on your balance,base rate you determine,whether the or 1 or 1000 Satoshi Satoshi.naturally the higher the bet the higher the chance to lose.
2.Yes if you lose multiply by 4
3.play to win or total loss of all money.IE (1 4 16 64 256 - 0,0148576)multiplication is to the point as much as it is balance.
4.if you win the first bet in the beginning of the game,or the first bet after vyygryshnoy series for example(1L,1L,1L,4L,4W,4W/ reset to base,1W/reset to base,1W/reset to base).multiply by 4, provided for example(1L,1W,1L or 1L,1L,1W)
5.if the first lose something will happen next (1L,+1W,+1L<0 or 1L,+1L,+1W<0)multiply by 4
I hope I clarified the situation to you,if something is not clear ask and I will gladly try to explain to you all what you want.thank you.
1810  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 06, 2015, 03:22:48 PM
I gave you a link to a screenshot,I'll give it again at this image presents in my opinion strategy is described in detail with all conditions of discharge and the rate increase,I urge you to read through this screen
the main condition of the reset base rate of profit is>0 in a series of three bets,if in a series of three rates, the first rate is positive then resets to the base rate,if in a series of three bets 2 positive then resets to basic,but if in a series of three bets, two or three negative rate is multiplying 2 times two
1811  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 06, 2015, 11:37:49 AM
I am ready to make all efforts are only likely to provide you with information about strategies 505,say what you need and I will provide any data,I think 505 is a very viable strategy and I really hope that you write a script on it. Embarrassed
1812  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 06, 2015, 11:20:48 AM
I apologize for the insistence but I would like to know whether it is possible to write a script for 505

YES, but we need more details about it.


 Very cool project , keep up the good work.

Thank you
what data do you need?I will try to provide them to you and explain
1813  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 06, 2015, 09:39:42 AM
I apologize for the insistence but I would like to know whether it is possible to write a script for 505
1814  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 06, 2015, 03:43:34 AM
respected seuntjie and chilly2k I do not know English,I use online translator which translates completely as I want to say,below I attached a link to a screen shot in which I tried to describe the essence of the strategy 505 for example bot for 999 dice in which this strategy is implemented,I very much hope that you will understand the essence of 505 and perhaps write a script for your super bot

https://i.imgur.com/qUEmKaX.jpg?1
1815  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 05, 2015, 09:10:20 PM
dear seuntjie I already wrote and asked to implement a strategy 505 in your super bot,I understand that this is a very time consuming process and it takes a long time,I want to ask you,is it possible to implement a strategy 505 by means of a script,this strategy is based on the martingale and I want to know whether it is possible to write in the script
1816  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 05, 2015, 09:03:07 PM
dear seuntjie and chilly2k,thank you very much guys,your advice helped me,I've dealt with the problem.once again thank you very much Smiley
1817  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 05, 2015, 04:53:48 PM
below I have left a link to a screenshot,tell me what to click or what to register in the console that the script started to work and the bot started to bet
http://imgur.com/5EwPBlF

please help me,I'm very confused and don't know what to do Angry Angry Angry Huh
1818  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 05, 2015, 03:40:48 PM
guys please explain how to run the start script,I don't understand,I really need help Huh Huh Huh
Pages: « 1 ... 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 [91]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!