Bitcoin Forum
May 30, 2024, 07:59:17 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 7 »
81  Other / Archival / Re: 0.05 Free Bitcoin For Early Free Registration on: November 29, 2013, 03:13:19 AM
@monbux, I hope you realize that there are some BIG people out in this world who... does not speak perfect English LOL

stop talking
82  Economy / Gambling / Re: FREE 0.1 BTC GIVE AWAY ON SATOSHIGRID.COM (PLAY FOR FREE) on: November 28, 2013, 03:20:17 PM
I thought for sure it would be #6969. I was wrong
83  Economy / Games and rounds / Re: [Update] Freeroll SnG is back online / Free Poker Chips For New Accounts on: November 28, 2013, 12:02:50 AM
please update your freeroll to boot all afkers...
84  Economy / Gambling / Re: CoinRoyale.com • Provably Fair Blackjack & Baccarat • Instant Play • Free BTC on: November 27, 2013, 05:11:26 AM
username: userwins

thanks!
85  Economy / Services / Re: Earn up to 0.4BTC/month just by posting! on: November 27, 2013, 12:44:13 AM
Hey im at 52 posts right now
86  Economy / Digital goods / Re: Selling 50 Cam4 Tokens for BTC on: November 27, 2013, 12:29:17 AM
0.01 btc
87  Economy / Games and rounds / Re: 1 BTC Giveaway - NFL Week 13 - BitBook.biz on: November 26, 2013, 11:02:56 PM
Carolina Panthers
Username: Treven
88  Economy / Gambling / Re: PLAYTIN JavaScript Gambling Bot - post your bot and get free BTC on: November 26, 2013, 09:34:24 PM
Code:
var b = 1;//bet size
var balance = 100;// balance
var begin = 0;

function lemon_bot(){
   if (begin == 0){//initial spin
     bet(b);
       begin++;
       log("Starting Bot...");
     return"start";
    }
  
   b=bet();
  
   if(last() == 0){
       balance-=b;
     log("LOS -"+b+"  Balance: " + balance);
    }
    else if (last() == b)
       log("WIN +0  Balance: " + balance);
    else{
       balance+=(last()-b);
       log("WIN +"+(last()-b)+"  Balance: " + balance);
    }
    if (last() == b && b > 1)
     b--;
   else if (last() >0)
       b/=2;
   else
       b++;

   if(b<1)
     b = 1;//keep min bet 1
  
   bet(b);//get rid of decimals
   b = bet();
   log("Next Bet: "+b)
return"start";
}



Lemon Bot. Does alright
[R3$NIJsW3SQ]
89  Economy / Games and rounds / Re: Regarding PrimeDice Faucet + GIVEAWAY on: November 26, 2013, 07:17:00 PM
user id:
2918
90  Economy / Games and rounds / Re: [Update] Freeroll SnG is back online / Free Poker Chips For New Accounts on: November 26, 2013, 03:41:06 AM
Thanks!
Username: userwins
91  Economy / Gambling / Re: CrazyBTC - Win Bitcoin - (Instant Deposit & Withdraw!) on: November 26, 2013, 01:57:18 AM
weak odds
92  Economy / Games and rounds / Re: SatoshiBet Bitcoin Poker launched - Free BTC on: November 25, 2013, 08:56:29 PM
username: Igofop
thanks
93  Economy / Lending / Re: What ever happened to Joey (the lending scammer)? on: November 24, 2013, 05:02:58 PM
sherlock holmes right here. jesus
94  Economy / Lending / Re: What ever happened to Joey (the lending scammer)? on: November 24, 2013, 02:22:03 PM
from dragonkid...
« Sent to: jbab on: Today at 02:09:45 PM »
« You have forwarded or responded to this message. »
Reply with quoteQuote  ReplyReply  Remove this messageDelete 
joey get the fuck off this forum or i will post your dox


These are the messages im talking about. Im really just another joe named joey..and I really dont wanna make a new account. I feel like this guy would make a new account with completely different names if he did run away with money..
95  Economy / Digital goods / Selling 50 Cam4 Tokens for BTC on: November 24, 2013, 01:59:43 PM
Price on site for tokens is $10 and then fees on top of that, i will sell for $10USD. Bitcoin only. Can use escrow if you'd like since it would be my first sale.
96  Economy / Gambling / Re: [Provably Fair] CaesarBIT.EU - Bitcoin Casino [FREE CHIPS PROMO] on: November 24, 2013, 08:47:32 AM
login - ud8gtn44l50
thanks!
97  Economy / Lending / Re: Eisenhower's Lending $2000 available on: November 23, 2013, 02:24:13 PM
Requesting 0.25 btc loan will repay 0.3 in 14 days.
98  Economy / Lending / Re: What ever happened to Joey (the lending scammer)? on: November 23, 2013, 10:38:35 AM
Yo this is why I get messages about 'being joey'... Id like to just say yea im a joey but in no way the same one... stop pming me. some of the messages are hurtful
99  Economy / Gambling / Re: PLAYTIN JavaScript Gambling Bot - post your bot and get free BTC on: November 23, 2013, 10:32:00 AM
Code:
/* Coded by jbab


Initial Values are Bet:1 Win:2 <-- should probably start the bot with that

Bot has 2 betting strategy

1st: if it losses it increase win + 2, it will continue to till its chances of winnin go below 4%
     if it wins it will reset to initial value. once it goes below 4% winnin it will switch to 2nd
2nd: just simple martingale strategy that will try to complete 13 rolls to regain the losses from the            beginning then it will switch back.


May be lucky, may not be... haven't test it that much cause the free play stops after like 20 rolls -_-


*/
var b=1;
var x=0;
function dice_bot()
{
if(x>0)//Martingaling
    {
     if(last())// martingale if win - reset value
     {
       bet(b);
       win(bet()*2);
       if(x==13) //counting how many bets while martingaleing that are won
       x=0; //only lost 13 with first betting strategy so only need 13 sucesful martingale
     else
         x++;
     }
  else //martingale
     {
   bet(bet()*2);
           if (bet() >50)//if martingale completely fails go back to original betting and take loss
            {
             x=0;
               bet(b);
            }
     win(bet()*2);
     }
}
else if(win() == 26)//if first betting gets to max value resort to martingale
   {
win(b*2)
     bet(b)
     x++;
}
   else if(last())//reset if win(first betting strat)
     win(2);
   else //double win amount if lose(first betting strat)
     win(win()+2);
  return "hi";
}


So blazin a spliff and trying to remember how to code again just threw this simple thing together not sure if its worth anything but it switches between 2 betting modes. Cool site by the way, lots of fun

1HiXNwNHr3W9tkVqA3Vumva1n2RwdXkC8P    Cheesy
100  Economy / Micro Earnings / Re: FREE BITCOIN Sites *and* Free Newbie Lotto on: November 22, 2013, 06:56:14 AM
lotttttto
1PneZMJfvRmWenm7jNHrw3xYG5h2XYHJ8J
Pages: « 1 2 3 4 [5] 6 7 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!