Bitcoin Forum
May 30, 2024, 06:12:32 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
521  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] QIBUCK COIN - X13 - POS/POBH - 1st Proof of Baghold on: August 17, 2015, 12:23:05 AM
how many can i get if im holding 10.000 QBK ?  Smiley


Huh?

   How many what? 
522  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : now with added CLAMs : Play or Invest on: August 16, 2015, 12:58:02 PM
nonsense post !!!  Just-dice is 100% fair. I did numerous experiment before playing on Just-dice & every time it was proved fair.

From my experiences I never see a site %100 fair. If you play long enough you will %100 lose even if you have unlimited amounts of cash.

This is not what it means to be fair. If i understand correctly, you are confusing fairness with zero-house-edge, and you think that if a site is "fair", you should not lose, or be breakeven. But you need to pay the house for the entertainment value you get out of betting, so you will never see breakeven casinos.

JustDice is provably fair and has a house edge of 1%. And because of house edge, you are bound to lose if you play long enough.

So fairness means that on the long run, the house should win 1% (and NO more) of the total wagered amount.


   For the purist's out there it should probably be "100% honest".  Fair implies equal.  And we all know it's not equal with a 1% house edge. 

   It's not to say there is anything wrong with Just-dice, it's just a wording thing....       
523  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 13, 2015, 06:02:38 PM
Thanks for quoting the posts before they were deleted. It's useful to see the various ways the people who are scared of provable fairness use to try to discredit it.

Did he remove his post or did the self-mod thread remove it?

o.0

I truly hope he chose to remove it on his own......

  I think he removed it on his own.  Just when I hit "post" the last time, I got a warning the quoted post was removed. 
524  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 13, 2015, 04:09:27 PM
I got the latest qt wallet from ClamClient.com; it's been stuck on 26 weeks behind for close to 24h. Did I miss something? I got a list of nodes and added to a conf file and that doesn't seem to have made a difference. I had been using the staking pool at CoinWallet but figured a local wallet would be a better option.
  You could try stopping and restarting, sometimes that get it going again, or you can go to the end of the op, and look for dooglus's bootstrap.  I'm hoping that's a good pointer to the latest bootstrap.  That should get you up to Monday I believe.  
525  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 13, 2015, 02:22:05 PM
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.   
526  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 13, 2015, 02:16:03 PM
This bot, Primedice Withdrawal operations , error --> "Program stopped" Why ?






    Try asking in the main thread.  https://bitcointalk.org/index.php?topic=307425.0  That's a base bot type problem, it looks like your trying to do the withdrawl in advanced mode.   
527  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 13, 2015, 12:36:30 PM
Why are CLAM getting so much value?

There is a theory that demand driven by Just-Dice.com has caused the recent spike in the price of CLAM. Most of the CLAMs are in the Just-Dice bankroll, earning around 0.2% per day rather than sitting in sell orders on an exchange earning nothing. That means there's not much supply for people wanting to buy, and so the price tends to increase.

Doesn't that seem like its becoming too centralized around your site?  
Kind of defeats the purpose of a decentralized currency.. no?

I also don't see how you can offer any real proof of what goes on server side.  
Any programmer knows that "provably fair" could just be being controlled server side/behind the scenes by subroutines to concoct "provably fair" to the end user.
Without any real transparency of what goes on in the server I don't know how you could prove anything.

It is a great idea though, and people seem to be falling for it. Smiley





   Have you read the FAQ on Provably fair?  It explains exactly whats going on server side.  Once you know the server seed, you can sit down with a pencil and paper and calculate the rolls that should have been produced. 

 

And where is the proof that the "server seed" wasn't just generated for you based on a specific result?
There is real no transparency of what goes on in the server,  to put it in layman's terms - the server shows you what it wants you to see.
I'm not going to argue this any further.





   No argument.  I guess you just don't understand how it works.  I'll answer your question for others. 


Your given a Hash of the server seed, along with your client seed.   Once you've given up on a specific server seed, you are shown what it was.  You can then hash it to make sure it's the seed that would result in the hash you were given to start. 

   I'll admit I'm no expert on hashing algorithms, but I don't think it would be very easy to concoct a number that when hashed will generate the shown hash, plus result in the experienced rolls. 

   Unfortunately for the gamblers (of which I'm one) Math is a bitch....   
528  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 13, 2015, 12:17:15 PM
Why are CLAM getting so much value?

There is a theory that demand driven by Just-Dice.com has caused the recent spike in the price of CLAM. Most of the CLAMs are in the Just-Dice bankroll, earning around 0.2% per day rather than sitting in sell orders on an exchange earning nothing. That means there's not much supply for people wanting to buy, and so the price tends to increase.

Doesn't that seem like its becoming too centralized around your site?  
Kind of defeats the purpose of a decentralized currency.. no?

I also don't see how you can offer any real proof of what goes on server side.  
Any programmer knows that "provably fair" could just be being controlled server side/behind the scenes by subroutines to concoct "provably fair" to the end user.
Without any real transparency of what goes on in the server I don't know how you could prove anything.

It is a great idea though, and people seem to be falling for it. Smiley





   Have you read the FAQ on Provably fair?  It explains exactly whats going on server side.  Once you know the server seed, you can sit down with a pencil and paper and calculate the rolls that should have been produced. 

 
529  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 12, 2015, 02:31:32 AM
seems CLAM will be going up, maybe to even 0.015
is there a pump or is this normal ?

   Normal,  There are so few coins, and folks are snapping them up to invest at Just-Dice.  I was hoping to see .01, but it hit that and keeps right on going.  A lot of
folks are also using Clams to gamble, so they need them too. 

  Right now there are 823,208 clams out in the wild, 632,163 are on Just dice.  The rest are either on exchanges or peoples wallets staking.   
530  Alternate cryptocurrencies / Altcoin Discussion / Re: iGotSpots Scam Dev on: August 12, 2015, 02:26:03 AM
Hello iGotSpots

First I want to say nice idea and positive/negative staking is a cool idea.

However your design has some flaws.
Like I can make my wallet only stake positive blocks by only staking the blocks with even numbers.

For example your design is odd blocks are negative and even blocks are positive, then I can do some changes in wallet.cpp and compile my wallet to not mine odd blocks.
Like if the block is odd, it just skips staking that block. So then I would only stake positive blocks.

Still ppl out there who think he is not a scammer and runs "clean" wallets ?
From his latest creation :

"Negativity is infectious
Time to show what happens when you cross too many lines
Perfect opportunity to have a lot of fun with some crazy ass ideas
This is the first of a new coin series that I like to call.. 'FUCK IT' - Enjoy!"

  This sounds like it could turn into one of his old coins with 9 hour block times.   Everyone is going to be running a hacked wallet, so everyone will have to wait for some newbie to stake an odd block.   
531  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 10, 2015, 09:41:23 PM
How to import thousands of privkey from blockchain.info to CLAMs wallet-qt ?

No idea for a easy approaching to do that ?
I can do that single by single but they are really a lot . it takes time

   Can you somehow get them into a file (Cut/Paste even).  Then create a script to import them.  I'm not a script guy, but I think I would figure it out if I had to do that by hand...   Smiley
532  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 10, 2015, 02:56:10 PM
Is there a tutorial how to setup a CLAM Node with a raspberry Pi ? I sure would like to run a CLAM node.
Not aware of a "guide"; but, there was a user just a few pages back in the forum here who did just that!
Maybe, between the two of you, you could get a guide together for the community?
can you give a link? I read the last 20 pages but did not find it... Tongue

They were running it on a similar device; not exactly a raspberry pi.

Don't have the time at the moment to dig Sad  Was it chilly2k, maybe?  Can't remember Sad

   Not me,  I'm on an Ubuntu server...  Cheesy

Although the raspberry pi is a cool idea.  To many other projects. 

Ubuntu is no problem too, if I can get it running on that I might get it running on a raspberry too. Can you share some details about the node-install on ubuntu chilly2k? thanks

It was quite a while ago, so I don't remember the details.  I know I compiled the source for the clamd.  I couldn't get the QT to compile, but didn't really try that hard.  
I think the toughest part was getting all of the dependency's straightened out.   I'm no linux compiling expert, I think I followed some info, but I have a feeling it wasn't anything specific to clams.  
533  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 10, 2015, 02:35:49 PM
Is there a tutorial how to setup a CLAM Node with a raspberry Pi ? I sure would like to run a CLAM node.
Not aware of a "guide"; but, there was a user just a few pages back in the forum here who did just that!
Maybe, between the two of you, you could get a guide together for the community?
can you give a link? I read the last 20 pages but did not find it... Tongue

They were running it on a similar device; not exactly a raspberry pi.

Don't have the time at the moment to dig Sad  Was it chilly2k, maybe?  Can't remember Sad

   Not me,  I'm on an Ubuntu server...  Cheesy

Although the raspberry pi is a cool idea.  To many other projects. 
534  Alternate cryptocurrencies / Announcements (Altcoins) / Re: MaryJanecoin LLC Digitally made for the Cannabis Industry and Community on: August 10, 2015, 02:00:37 PM

    While I agree we need to work on this as a community, I really think we need a secure channel to do that.  I've spoken with Adam on several things, but through PM's.    In that case it's just him and I talking, no one else can chime in with there thoughts.  He likes to use Twitter and Facebook, I'm not a fan.  

Is there a way to have a private forum on the MJ website?  I'd hate to start discussing things here in the open, and have them ripped off by others.  It would also be nice to organize ideas by topic, and not have them all mashed into one topic.  

   The idea of pegging the price in my opinion is a good one.   It gives the coin a value.  In the past most Fiat was backed by something, usually gold.  Now it's just based on the strength of the backing government.  

A few very broad topics,

A) Need a very easy to follow setup plan for the dispensary's.  How to accept MaryJane.
   1) Easy to use plan for the end user. android wallet?  Paper wallet.  
       ATM's that dispense MaryJane, via android or paper?    

B) Exit plan for the MaryJane.  I'm sure they could use it to purchase Adam's concentrates, But how could they use the rest?  

       Could they pay employees in MaryJane, and then the employees could exchange for Fiat and deposit in there bank accounts?
        It would be no different then being paid in fiat and depositing it.  

        Would other vendors accept it, and then be able to easily exchange?  

C) Once you have it setup to use, then you can start advertising.  
    
      
535  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 09, 2015, 09:58:38 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


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.   
536  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 09, 2015, 08:54:01 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.   

537  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 09, 2015, 06:00:30 PM
I coded up a 505 script on https://bitcointalk.org/index.php?topic=1114503.msg12096698#msg12096698
538  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 09, 2015, 05:33:50 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()

539  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 07, 2015, 09:07:53 PM
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.
540  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 07, 2015, 08:22:57 PM
hi, chilly2k

how to use programmer mode script , withdraw function ?

example :



How do I add script ? per 60.000 satoshi , withdraw my wallet..
 

   The function is withdraw(amount, address)

Withdraw works on Just-dice and PRC, for sure.  I've actually used them.  I'm not sure how they work on other sites. 

You could put withdraw(target,bitcoinaddessxzy) 
You could also define a variable at the top of your script. 

BTCaddr = "your address"

Then

withdraw(target,BTCaddr)
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!