Bitcoin Forum
May 23, 2024, 04:36:32 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 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 »
381  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 23, 2014, 09:40:58 PM
This looks awesome thanks! OP what is your profit from this bot?



Thank you very much. About profit i think i wrote somewhere earlier, i lost all after making nice money, i was playing too much with settings, wasnt patient at all
382  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 23, 2014, 09:38:48 PM
Hey! Good job Smiley
I want to stop 4th red bet in one row and I don't want to use preroll function. How can I do this?

I'm not sure what you mean, can you write me more in pm?

Thanks to the guy that sent me first tip ;-)
383  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : Play or Invest : 1% House Edge : Banter++ on: June 22, 2014, 09:47:01 PM
Site is good enough to trust them, but be carefull what you write on chat-box. I got banned for 1 hour by site owner (Dooglus) for asking if someone has bitcointalk forum account to sell (i guess chat-box is there only for dooglus-ass-lickers and mods in general). And i wagered 140+ BTC till that moment on that site and have been very active there for 1 month. Now i'm gonne, no more bets from my side.
384  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 22, 2014, 06:02:51 PM
is using the bot better than betting by myself?

do i get better odds or anything?


No, using bot is only faster way to bet and it's doing as you set it up, so you don't have to change bets or anything, bot i doing it automaticly. And bot has rules to follow and no emotions, while your betting can be influenced by emotions. Bot is perfect if you have rules and you want fast bets. Otherwise it's useless.
385  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 22, 2014, 05:44:06 PM
Can you post the code here, I don't like downloading txt file just to copy paste its looks suspicious to me?


Sure thing, here it is, anyways it's not to be downloaded, when you open link you get preview and than you copy it and paste it in PD.
I don't know why people are so scared to open links...

function setBotParams() { params = {

   bet: 0.00000010,      // SET TO YOUR INITIAL START BET AFTER PREROLL

   odds: 10,         // winning chance

   type: 1,            // high / low roll (1 = low, 0 = high)

   runs: 100000,         // number of bets to make

   pad_bet: 0.00000000,   // bet to make while pre-rolling

   prerolls: 15,         // NUMBER OF LOSSES BEFORE STARTS BETTING

   on_loss_multi: 1.1134,      // multiply bet on loss (after pre-rolling) (1.1134 = 11.34% on LOSS)

   stop_min: 0.00000000,   // stop betting if number drops to/below this number

   stop_max: 0.02000000,   // stop betting if number reaches this number

   all_in_save: false,      // go all-in if bet is higher than balance

   high_low_swap: false,   // invert roll each bet

   // -- don't edit below this point --

   loss_count: 0,

   current_run: 0,

   current_bet: 0,

   current_run_loss: 0,

   capping_loss: false

}; }

var lastmessage = -20,

autobet_speed = -200000,

normalbet_speed = -20000,

id = 0,

timedCount, timer, lastYourBet = 0,

lastAllBet = 0,

lastBigBet = 0,

autobet_halt, first_load = true,

autobet_index = false,

prev_balance = 0,

bet_ids = [];

function bet(bet, odds, type, callback) {

$.ajax({

   url: '/api/bet.php',

   type: 'post',

   data: {

      'bet': bet,

      'game': odds,

      'type': type == 0 ? 1 : 0,

      'client_seed': $('#client-seed').val()

   },

   dataType: 'json',

   success: function (data) {

      if (data.error) {

         autobet_halt = true;

         return;

      }

      var $seed = $('#client-seed'),

      seed = $seed.val(),

      $parent = $seed.parent(),

      i = seed.indexOf('-'),

      val;

      if (i == -1) {

         seed += '-0000';

         i = seed.indexOf('-');

      }

      val = (parseInt(seed.substr(i + 1)) + 1).toString();

      while (val.length < 4) {

         val = '0' + val;

      }

      seed = seed.substr(0, i) + '-' + val;

      $seed.val(seed);

      $parent.find('.pretty-text').text(seed);

      $('#server-seed').text(data.next_server_seed);

      prev_balance = data.balance;

      $('#balance').val(data.balance);

      $('#balance-value').text(data.balance).stop(true, true).css({

         color: data.result == "1" ? '#0f0' : '#f66'

      }).animate({

         color: '#fff'

      }, 500);

      

   },

   error: function (jqXHR) {

      autobet_halt = true;

   },

   complete: function (jqXHR) {

      var data;

      try {

         data = $.parseJSON(jqXHR.responseText);

      } catch (e) {

         data = false;

      }

      if (typeof callback === 'function') {

         callback(data);

      }

   }

});

}

function auto_bet(params) {

   if (bot_enabled === true) {

      if (params.current_run === params.runs) {

         botoff();

         alert("Bot stopped- completed " + params.runs + " runs");

      } else {

         setTimeout(function () {

            var current_balance = parseFloat($('#balance-value').text());

            if (current_balance === 0) {

               autobet_index = false;

               alert("Bot stopped- balance is zero")

               return;

            } else if (params.current_bet > current_balance) {

               if (parmas.all_in_save === true) {

                  params.current_bet = current_balance;

               } else {

                  botoff();

                  alert("Bot stopped- bet is higher than balance");

                  return;

               }

            } else if (current_balance < params.stop_min) {

               botoff();

               alert("Bot stopped- balance below " + params.stop_min);

               return;

            } else if (current_balance === params.stop_min) {

               botoff();

               alert("Bot stopped- balance below " + params.stop_min);

               return;

            } else if (current_balance > params.stop_max) {

               botoff();

               alert("Bot stopped- balance reached " + params.stop_min);

               return;

            } else if (current_balance === params.stop_max) {

               botoff();

               alert("Bot stopped- balance reached " + params.stop_min);

               return;

            }

            bet(params.current_bet, params.odds, params.type, function (data) {

               var i, a, j, curbet;

               if (data) {

                  params.current_run++;

                  autobet_index = params.current_run;

                  if (data.result == 0) {

                     if (params.capping_loss == true) {

                        params.current_bet *= params.on_loss_multi;

                     } else {

                        if (params.current_run_loss == params.prerolls) {

                           params.capping_loss = true;

                           params.current_run_loss = 1;

                           params.current_bet = params.bet;

                        } else {

                           params.current_run_loss += 1;

                        }

                     }

                     params.loss_count += 1;

                  } else {

                     params.current_bet = 0;

                     params.current_run_loss = 1;

                     params.capping_loss = false;

                     params.loss_count = 1;

                  }

               curbet = params.current_bet.toString();

               if (curbet.indexOf('e') > -1) {

                  i = parseInt(curbet.substr(0, curbet.indexOf('e')).replace('.', ''));

                  a = parseInt(curbet.substr(curbet.indexOf('e') + 2));

                  curbet = i.toString();

                  for (j = 1; j < a; j++) {

                     curbet = '0' + curbet;

                  }

                  params.current_bet = '0.' + curbet;

               }

               params.current_bet = +('' + params.current_bet).substr(0, ('' +params.current_bet).indexOf('.') + 9);

               if (data.balance < data.current_bet) {

                  return;

               }

            }

            if (params.current_run < 10000000) {

               if (params.high_low_swap === true) {

                  if (params.type === 1) {

                     params.type = 0;

                     params.odds = 100 - params.odds

                  } else {

                     params.type = 1;

                     params.odds = 100 - params.odds

                  }

               }

               if(params.current_bet < params.pad_bet)

                  params.current_bet = params.pad_bet;

                  auto_bet(params);

               } else {

                  setBotParams();

                  params.current_bet = params.pad_bet;

                  autobet_index = false;

                  auto_bet(params);

                  return;

               }

            })

         }, autobet_speed);

      }

   }

    console.clear();

console.clear(); console.log("Current loss streak:  " +params.current_run_loss);

}

function addRows($table, rows, autobet_i) {

   var table_selector = $table.selector,

   td_tmpl = '<td class="tabs__table-column tabs__table-cell"',

   $tableod, $tr, top, new_top, count = 0,

   need_placeholder = false,

   trhtml = '';

   if (rows.error) {

      return;

   }

//   console.log('new rows!');

   $table.stop(true);

   $tableod = $table.clone();

   if ($tableod.find('tr.placeholder').length) {

      need_placeholder = true;

      $tableod.find('tr.placeholder').remove();

//      console.log(need_placeholder ? 'Has Placeholder' : 'No Placeholder');

   }

   top = parseInt($table.css('top'));

   if (isNaN(top)) top = 0;

   $.each(rows, function (i, data) {

      if (data.error) {

         return;

      }

      if (count == 30 || (!autobet_i && data.bet_id && $.inArray(data.bet_id, bet_ids) !== -1)) return;

      need_placeholder = !need_placeholder;

      count++;

      bet_ids.push(data.bet_id);

      var value = data.winnings.toString(),

      multiplier = data.multiplier.toString();

      if (value.indexOf('.') !== -1) {

         value += '00000000';

      }

      value = value.substr(0, value.indexOf('.') + 9);

      value = value.indexOf('-') != -1 ? value.substr(1) : value;

      value = (data.result == "1" ? '+' : '-') + value;

      if (multiplier.indexOf('.') == -1) {

         multiplier += '.00000';

      } else {

         multiplier += '00000';

         multiplier = multiplier.substr(0, multiplier.indexOf('.') + 6);

      }

      trhtml += '<tr class="tabs__table-row bet-' + data.bet_id + '">' + td_tmpl + '<a class="action-fancybox" href="/modals/bet.html?id=' + data.bet_id + '">' + data.bet_id + '</a>' + (autobet_i ? ' (' + params.loss_count + ') (' + autobet_i + ')' : '') + '</td>' + td_tmpl + '>' + data.username + '</td>' + td_tmpl + '>' + data.elapsed + '</td>' + td_tmpl+ '>' + data.bet + '</td>' + td_tmpl + '>' + multiplier + '</td>' + td_tmpl + '>' + data.game + '</td>' + td_tmpl+ '>' + data.roll + '</td>' + td_tmpl + ' style="color: ' + (data.result == "1" ? 'green' : 'red') + '">' + value+ '</td>' + '</tr>';

   });

   $tableod.prepend(trhtml);

   if (need_placeholder) {

      $tableod.find('tr:first').clone().addClass('placeholder').prependTo($tableod);

      top = -(count * 34) - 34;

      new_top = -34;

   } else {

      top = -(count * 34);

      new_top = 0;

   }

   $tableod.css('top', top);

   $tableod.find('tr:gt(30)').addClass('removing');

   $table.replaceWith($tableod);

   $tableod.stop().animate({

      'top': new_top

   });

   $tableod.find('tr.removing').animate({

      opacity: 0

   }, function () {

      $(this).remove();

   });

//   console.log($tableod.find('tr:first').is('.placeholder') ? 'Has Placeholder' : 'No Placeholder');

}

function updateYourBets() {

$.ajax({

   url: '/api/get_bets.php',

   data: {

      id: parseInt($('#user-id').text()),

      count: '30',

      bet_id: lastYourBet

   },

   type: 'post',

   dataType: 'json',

   success: function (data) {

   if (!data || data.length === 0) return;

      lastYourBet = data[0].bet_id;

      addRows($('#table-1'), data);

   }

});

}

function updateBigBets(callback) {

$.ajax({

   url: '/api/get_bets.php',

   data: {

      value: '.5',

      count: '30',

      bet_id: lastBigBet

   },

   type: 'post',

   dataType: 'json',

   success: function (data) {

      if (!data || data.length === 0) return;

      lastBigBet = data[0].bet_id;

      addRows($('#table-3'), data);

   },

   complete: function () {

      if (typeof callback == 'function') callback();

   }

});

}

function updateAllBets(callback, first) {

   if (first) {

      $.ajax({

         url: '/api/get_bets.php',

         data: {

            count: '30',

            bet_id: lastAllBet

         },

         type: 'post',

         dataType: 'json',

         success: function (data) {

            if (!data || data.length === 0) return;

            lastAllBet = data[0].bet_id;

            addRows($('#table-2'), data.reverse());

         },

         complete: callback

      });

      return;

   }

   var did_one = false,

   checker = function () {

      if (did_one && typeof callback == 'function') callback();

      did_one = true;

   };

   $.ajax({

      url: '/api/get_bets.php',

      data: {

         count: '30',

         bet_id: lastAllBet,

         value: '0.1'

      },

      type: 'post',

      dataType: 'json',

      success: function (data) {

         if (!data || data.length === 0) return;

         lastAllBet = data[0].bet_id;

         addRows($('#table-2'), data.reverse());

      },

      complete: checker

   });

   $.ajax({

      url: '/api/get_bets.php',

      data: {

         count: '1',

         bet_id: lastAllBet,

         less: '0.1'

      },

      type: 'post',

      dataType: 'json',

      success: function (data) {

         if (!data || data.length === 0) return;

         lastAllBet = data[0].bet_id;

         addRows($('#table-2'), data.reverse());

      },

      complete: checker

   });

}

function updateBalance(checker) {

$.ajax({

   url: '/api/get_balance.php',

   dataType: 'json',

   success: function (data) {

      $('#balance').val(data.balance);

      $('#balance-value').text(data.balance);

   },

   complete: checker

});

}

function update(callback) {

   var did_count = 0,

   checked = function () {

      did_count++;

      if (did_count == 4 && typeof callback == 'function') callback();

   }

   updateStats(checked);

   updateAllBets(checked, first_load);

   updateBigBets(checked);

   updateBalance(checked);

   first_load = false;

}

function updateStats(checked) {

$.ajax({

   url: '/api/stats.php',

   type: 'get',

   dataType: 'json',

   success: function (data) {

      $('#stats-wagered').text(data.wagered);

      $('#stats-bets').text(data.bets);

      $('#stats-bank').text(data.bank);

   },

   complete: checked

})

}

function botoff() { bot_enabled = false; }

setBotParams();

params.current_bet = params.pad_bet;

autobet_halt = false;

bot_enabled = true;

autobet_index = 0;

auto_bet(params);

386  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 22, 2014, 09:27:34 AM
Well I just lost 0.1 with your crap bot... Thanks are you working for primedice?

Sorry to hear that, i have Sig campaign for PD like a lot of people on this forum. I have no other connections with PD, and like i said, use bot only at your own risk.

From curiosity, what settings did you use?
387  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 21, 2014, 11:16:51 PM
Two bugs :

- a typo on "parmas" instead "params"
Code:
 if (parmas.all_in_save === true) { 

- another, I don't have many informations. Only that after near half hour Bot stopped and tell that my balance is zero. Not true. I've see now that my balance was bigger of stop_max setting.



In general congratulations. I've doubled my balance Smiley




FaSan



Nice to see that it works good for you, i will fix typo, thanks for informing me.
388  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 21, 2014, 10:45:19 PM
Hi man.Can you change this bot for https://www.999dice.com/? add me in skype pls "spayrok"



I will wait till i get some tips and if it pays off i might get you the code for other sites aswell. I just don't wan't to put effort in it if it's gonna be for free.

Njoy
389  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 21, 2014, 09:43:28 PM
I've seen scripts like this
Be aware of bots that steal account details .... And eventually withdraw your winnings.
I never use bots anyway, manual is the way to play


If you don't trust it, don't use it, but you can check the code before running it and as much as you can see there is no Address inside the code or any withdraw mentioned, huh?
390  Economy / Services / Re: [PrimeDice] [Highest Paid Signature] Earn Bitcoins Simply By Posting on: June 21, 2014, 09:37:34 PM
To be honest i wanted to earn some money with this Sig Campaign but now by the new rules i can make onl 0.16 per month which is not enough for me (Jobless and without any incomes) but ok i will find other ways to make money. 0.16 is still better than 0. Feeling bad that i didn't enroll earlier.
391  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 21, 2014, 09:00:22 PM
I lost .01, Your bot still says "(1.134 = 11.34% on LOSS)" So 2 would be 20%... But I guess you meant 1.1134 which is a big difference.



Sorry to hear you lost it, i fixed my typing mistake. Anyways 1.00 = no bet increase, 1.10 is 10% increase 3.00 is 300% increase, that's multiplier :  100SAT * 1.10 = 110 SAT for example


As i wrote, use at your own risk, i might refund your loss if i get any tips from someone.
392  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 21, 2014, 08:53:59 PM
FK dude! (1.134 = 11.34% on LOSS) NOT TRUE!!!!
1.134 = 13.4%, I entered in 2 expecting 20% and it doubled up each bet... Instant bust

If you want 20% increase you have to put it to 1.20


That's basic maths man, don't blame me for it.

How much you lost?
393  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 21, 2014, 08:38:50 PM
what do I download to run this, and try it out? want to test it.


I will write user guideline on the bottom of OP, please check in 3 mins again.
394  Economy / Gambling / Re: BOT for PrimeDice for free! on: June 21, 2014, 08:14:14 PM
So how much you won / lost with this?


I made 0.05 first and then i tweeked it too much and lost all + 0.03 of mine.

Use at your own risk, just don't be greedy like i was. I set it to make 300% per day...it was working for 1 full day and then i set it to 500% and lost within 5 minutes.
395  Economy / Gambling / BOT for PrimeDice for free! on: June 21, 2014, 06:57:23 PM
Hello all,


I decided to give bot for PrimeDice for free to everyone willing to use it, since i have enough of scammers that charge for bots that are not even their.

Here you go:

Use at your own risk and don't forget to tip me some change if you like it: 128M1yT1nXokosMiGjoe8RzQAz2osASwPc


You can modify settings inside as you wish, if you are not familiar with those terms just ask.

Here is the link to the bot:
https://www.dropbox.com/s/9siwdsy7negpx6n/PD%20Bot%20V2.txt
EDIT in V2: Little bug fixed on 11.7.2014

Here is how to use it:

1. Copy all text from link i provided and open Chrome or Firefox on PrimeDice.com
2. Make sure you have enough balance to run your settings
3. Settings you can modify:

   bet: 0.00000010   <----thats ammount to bet BE CAREFULL what you enter
   odds: 10,  <----chance of winning 10 means 10%
   type: 1,   <------  what you bet on (high or low) 1 = low, 0 = high
   runs: 100000, <----how many bets bot will make before stop
   pad_bet: 0.00000000,   <----how much will bot bet on prerolls
   prerolls: 15,    <---number of losses that bot will wait for before it starts betting
   on_loss_multi: 1.1134,   <-----thats the bet increase after pre-rolling for each bet lost (1.1134 = 11.34% on LOSS)
   stop_min: 0.00000000,   <---- stop betting if number drops to/below this number
   stop_max: 0.02000000,   <----- stop betting if number reaches this number
4. Press CTRL+SHIFT+J on keyboard
5. paste all in the lowest box
6. press Enter
7. enjoy the show


If you want to stop bot you have to refresh the page (press F5) other functions don't work
Note: If you want your custom setting you can PM me following and i will set it up for you:
1. balance you want to try with
2. payout (ex. 1.66X)
3. your goal (ex. 30% more than your balance is now)
4. time you have ( ex. 24 hours)
5. how secure you want to be (ex. 99% chance it will be ok, 50% chance it will be ok)




Basic setting made here is pretty safe if you have at least 0.03 balance. Don't mess up too much with prerolls, remember the fact that if you want martingale you have to set it up like this:

   bet: 0.00000010   <----------if you have 0.01 at least that bet is high enough
   odds: 50,  
   type: 1,   
   runs: 100000,
   pad_bet: 0.00000000,   
   prerolls: 1,           <----------------for your safety put at least 5 here, it will go slower , but safer
   on_loss_multi: 2,   
   stop_min: 0.00000000,   
   stop_max: 0.02000000,   



Use at your own risk and don't forget to tip me some change if you like it:
128M1yT1nXokosMiGjoe8RzQAz2osASwPc



Bot is very fast so please be carefull and don't leave it without controll!
396  Economy / Goods / Re: [WTS]Beretta model 92FS- CAL. 9mm **New Price** on: June 21, 2014, 04:40:07 PM
I didn't know that this model is so cheap, well i guess you will sell it really fast.
397  Economy / Services / Re: [PrimeDice] [Highest Paid Signature] Earn up to 2.4 BTC/Month by Posting on: June 20, 2014, 06:15:51 PM
Updated Enrollment List:  [If you aren't here you will not get paid, changing your signature to something non-pd at any point in the campaign will make you ineligible for payment.]
devthedev
boumalo
DubFX
nwfella
TwinWinNerD
onlinepro
lynn402
keithers
saif92
cooldgamer
Don007
ljudotina
MICRO
turtlehurricane
wachtwoord
bitgeek
u9y42
marnem
IamCANADIAN013
Harley997
d2dtk
alexrossi
azguard
Skoupi
koshgel
forever21
Amph
madmat
hdbuck
Ashbite
Parazyd
Sniar
Gianluca95
dnaleor
gondel
CaptainBeck
rohnearner
ObscureBean
deisik
shorena
Beymond
MoneyGod
1211
justin00
MajidBC
hilariousandco
innocent93
Cranky4u
zcxvbs
deadley
ajareselde
grolll
sydboy
Musent
ethought
djjacket
LaudaM
Nerazzura
sameev29
philipma1957
zhinkk
lihuajkl
pandacoin
Equate
AuroraHF
mprep
ReRunRod
golikcoin
niothor
Acidyo
androz
Chris001
leex1528
mladen00
zahra4571
skele
beetcoin
okthen
mdzedzej
iopq
byt411
WhiteShum
counter
nahtnam
moreia
snaildvorak
lyth0s
cxboyminer
Anon39
omahapoker
bcmine
makebitcoin
BRADLEYPLOOF
Ron~Popeil
Gladdy
bitmaster111
acs267
hoian0809
DrG
oppahdoggystyle
poordeveloper
iawgoM
pinksheep
AcoinL.L.C
"    noviapriani"
noviapriani
bryant.coleman
Cryptopher
Malin Keshar
Bit_Happy
animalroam
icey
Mythul
cech4204a
ShakyhandsBTCer
newIndia
galbros
freedomno1
lottoitaliano
helloge
tonykay


Thank you very much Stunna for refreshing list, i can see my name on it, now i'm much calmer Smiley.  I started on 18th with 340 posts, so i guess I will have to wait til 17th next month till next payment ? Well, everyone, lets get this promotion done. remember, no spam and no un-constructive posts.

398  Economy / Gambling / Re: EveryDice.com | 0.99% Edge - Instant Cashout - Invest - Referral - Mobile - Fair on: June 20, 2014, 03:56:48 PM
As much as i can see nothing has changed on this site and nothing has changed on this topic as well. Forget about EveryDice.com allready, Edward or whoever he was is gone and he is partying with all your coinz that were left in.


Take the fact that site is down and that he never ever will show up, not at least on this site.
399  Economy / Services / Re: [PrimeDice] [Highest Paid Signature] Earn up to 2.4 BTC/Month by Posting on: June 19, 2014, 11:52:11 PM
So basically I could post like 4,000 times and pay my rent for the month, of course not gonna do that cause that would be outright spam  Cheesy

I think the max is 3k posts to the sum of 2.4BTC if hero member. To be honest if following guidelines and rules of posting then its not actually spamming unless your actually spamming and making pointless posts and just in it for the posting and nothing else. Am more into posting on the things I normally post on and read and gradually adventuring into other parts of the forums as I learn more and the more I learn about Bitcoin and alt coins the more sections I find myself posting in thus being more active in a lot of different topics and sections. If you are getting into the higher part of the posts then am sure that posts would get checked to be confirmed for such bigger payments for spam and none constructive posts. An no doubt if spamming will get removed or warned about if spamming.
I am seeing no limit in the OP for # of posts, where did you hear there was a 3,000 post limit? I am never getting anywhere near that in a month anyways, but I'm curious.

Well in the title it says earn up to 2.4 btc.

It would be 4k of posts for me, so roughly 133 posts a day to make that value.... semi do able for a day... but not to have a job and do this every day.

Is it wrong that I don't work, so I can basically do the thing I love every day? Being a jackass on the forum and posting for a Signature Campaign. Haven.

Is this sarcasm?   Is the signature campaign really your primary source of income?


I don't know about him but for me thats the truth. And i get some donations from time to time, trust me it's hard when you have no job, no savings, nothing.
400  Economy / Services / Re: [PrimeDice] [Highest Paid Signature] Earn up to 2.4 BTC/Month by Posting on: June 19, 2014, 11:10:50 PM
Does anyone know if Stunna is replying PM's now ? I have some problems around , so it would be great if someone told me so i don't wait for nothing online. Thank you very much for answer.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!