Bitcoin Forum
May 24, 2024, 06:40:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 4 5 6 7 8 9 »  All
  Print  
Author Topic: BOT for PrimeDice for free!  (Read 43872 times)
Nobitcoin
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


In holiday we trust


View Profile
June 22, 2014, 04:11:03 AM
 #21

Well I just lost 0.1 with your crap bot... Thanks are you working for primedice?
cech4204a (OP)
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250

12CDKyxPyL5Rj28ed2yz5czJf3Dr2ZvEYw


View Profile WWW
June 22, 2014, 09:27:34 AM
 #22

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?

Bitcoin is DEAD
FaSan
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500



View Profile
June 22, 2014, 09:46:58 AM
 #23

Well I just lost 0.1 with your crap bot... Thanks are you working for primedice?


You have to set it right, not gourmand, and be patience Wink
zahra4571
Sr. Member
****
Offline Offline

Activity: 467
Merit: 250



View Profile WWW
June 22, 2014, 05:31:12 PM
 #24

Can you post the code here, I don't like downloading txt file just to copy paste its looks suspicious to me?

bet btc
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
June 22, 2014, 05:37:59 PM
 #25

is using the bot better than betting by myself?

do i get better odds or anything?
cech4204a (OP)
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250

12CDKyxPyL5Rj28ed2yz5czJf3Dr2ZvEYw


View Profile WWW
June 22, 2014, 05:44:06 PM
 #26

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);


Bitcoin is DEAD
zahra4571
Sr. Member
****
Offline Offline

Activity: 467
Merit: 250



View Profile WWW
June 22, 2014, 05:55:44 PM
 #27

Thank you. I have a bad experience with opening link, so I beware from that time. Smiley

cech4204a (OP)
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250

12CDKyxPyL5Rj28ed2yz5czJf3Dr2ZvEYw


View Profile WWW
June 22, 2014, 06:02:51 PM
 #28

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.

Bitcoin is DEAD
Zuminest
Full Member
***
Offline Offline

Activity: 169
Merit: 100


View Profile
June 23, 2014, 06:06:57 AM
 #29

This looks awesome thanks! OP what is your profit from this bot?
MorpheWQ
Legendary
*
Offline Offline

Activity: 1288
Merit: 1110



View Profile
June 23, 2014, 09:27:10 PM
 #30

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?
cech4204a (OP)
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250

12CDKyxPyL5Rj28ed2yz5czJf3Dr2ZvEYw


View Profile WWW
June 23, 2014, 09:38:48 PM
 #31

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 ;-)

Bitcoin is DEAD
cech4204a (OP)
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250

12CDKyxPyL5Rj28ed2yz5czJf3Dr2ZvEYw


View Profile WWW
June 23, 2014, 09:40:58 PM
 #32

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

Bitcoin is DEAD
FaSan
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500



View Profile
June 23, 2014, 10:23:07 PM
 #33

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


Stop to lost your time, from sunday lunch time your bot is detected and you always lost all after 10/15 minutes.

I had use it many hours before (7 / 8 hours continuously without problems), win big amount (x 7), and lost all after site owner wakeup and check.



FaSan
iram3130
Legendary
*
Offline Offline

Activity: 1512
Merit: 1010


ITSMYNE 🚀 Talk NFTs, Trade NFTs 🚀


View Profile
June 23, 2014, 10:30:26 PM
 #34

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

Nice bot, I tried it is working good, how long it is safe to play continously with bot.

             ▄▄██████▄
         ▄▄████████████
   ▄▄█████████▀▀   ▀████
 ▄███████████▄      ████
████▀   ▀▀██████▄▄▄████
████      ▄███████████▄
▀████▄▄▄████████▀▀▀████▄
 ▀███████████▀      ████
 ████▀▀▀██████▄▄   ▄███▀
████      ▀███████████▀
████▄   ▄▄█████████▀▀
 ████████████▀▀
  ▀██████▀▀
█████████████████

     ███

██████████

     ██████

███████████

     ███████████████

███████████████████
█████████████████

███   

██████████

██████   

███████████

███████████████   

███████████████████
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████▀███████▀   ▀▀▀▄█████
█████▌  ▀▀███▌       ▄█████

████▀               █████
█████▄              ███████
██████▄            ████████
███████▄▄        ▄█████████
█████▄▄       ▄████████████
███████████████████████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████████████████▀▀███████
█████████████▀▀▀    ███████

███████▀▀▀   ▄▀   ███████
█████▄     ▄█▀     ████████
████████▄ █▀      █████████
█████████▌▐       █████████
██████████ ▄██▄  ██████████
████████████████▄██████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
███████▀           ▀███████
██████  ▄██▀▀▀▀▀█▀▄  ██████

█████  █▀  ▄▄▄  ▀█  █████
██████  █  █████  █  ██████
██████  █▄  ▀▀▀  ▄█  ██████
██████  ▀██▄▄▄▄▄██▀  ██████
███████▄           ▄███████
███████████████████████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████████▀█████▀██████████
███████▀  ▀     ▀  ▀███████

█████▌             ▐█████
██████    ██   ██    ██████
█████▌    ▀▀   ▀▀    ▐█████
██████▄  ▄▄▄   ▄▄▄  ▄██████
████████▄▄███████▄▄████████
███████████████████████████
███████████████████████████
▀█████████████████████████▀
cech4204a (OP)
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250

12CDKyxPyL5Rj28ed2yz5czJf3Dr2ZvEYw


View Profile WWW
June 23, 2014, 10:39:25 PM
 #35

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

Nice bot, I tried it is working good, how long it is safe to play continously with bot.


I suggest you to play safe rather than time limited. When you double ammount you have to play, than withdraw half and do again, if you succed firtst three cycles, you are gonna be safe. Just dont be greedy and play slow, double in 8-12 hours is ok.

Bitcoin is DEAD
iram3130
Legendary
*
Offline Offline

Activity: 1512
Merit: 1010


ITSMYNE 🚀 Talk NFTs, Trade NFTs 🚀


View Profile
June 23, 2014, 10:41:49 PM
 #36

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

Nice bot, I tried it is working good, how long it is safe to play continously with bot.


I suggest you to play safe rather than time limited. When you double ammount you have to play, than withdraw half and do again, if you succed firtst three cycles, you are gonna be safe. Just dont be greedy and play slow, double in 8-12 hours is ok.

Thanks for advice, I will follow and will post after 3-4 days that working or not for me.

             ▄▄██████▄
         ▄▄████████████
   ▄▄█████████▀▀   ▀████
 ▄███████████▄      ████
████▀   ▀▀██████▄▄▄████
████      ▄███████████▄
▀████▄▄▄████████▀▀▀████▄
 ▀███████████▀      ████
 ████▀▀▀██████▄▄   ▄███▀
████      ▀███████████▀
████▄   ▄▄█████████▀▀
 ████████████▀▀
  ▀██████▀▀
█████████████████

     ███

██████████

     ██████

███████████

     ███████████████

███████████████████
█████████████████

███   

██████████

██████   

███████████

███████████████   

███████████████████
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████▀███████▀   ▀▀▀▄█████
█████▌  ▀▀███▌       ▄█████

████▀               █████
█████▄              ███████
██████▄            ████████
███████▄▄        ▄█████████
█████▄▄       ▄████████████
███████████████████████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████████████████▀▀███████
█████████████▀▀▀    ███████

███████▀▀▀   ▄▀   ███████
█████▄     ▄█▀     ████████
████████▄ █▀      █████████
█████████▌▐       █████████
██████████ ▄██▄  ██████████
████████████████▄██████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
███████▀           ▀███████
██████  ▄██▀▀▀▀▀█▀▄  ██████

█████  █▀  ▄▄▄  ▀█  █████
██████  █  █████  █  ██████
██████  █▄  ▀▀▀  ▄█  ██████
██████  ▀██▄▄▄▄▄██▀  ██████
███████▄           ▄███████
███████████████████████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████████▀█████▀██████████
███████▀  ▀     ▀  ▀███████

█████▌             ▐█████
██████    ██   ██    ██████
█████▌    ▀▀   ▀▀    ▐█████
██████▄  ▄▄▄   ▄▄▄  ▄██████
████████▄▄███████▄▄████████
███████████████████████████
███████████████████████████
▀█████████████████████████▀
cech4204a (OP)
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250

12CDKyxPyL5Rj28ed2yz5czJf3Dr2ZvEYw


View Profile WWW
June 24, 2014, 03:23:42 PM
 #37

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

Nice bot, I tried it is working good, how long it is safe to play continously with bot.


I suggest you to play safe rather than time limited. When you double ammount you have to play, than withdraw half and do again, if you succed firtst three cycles, you are gonna be safe. Just dont be greedy and play slow, double in 8-12 hours is ok.

Thanks for advice, I will follow and will post after 3-4 days that working or not for me.


Good, just dont be angry with me if you lose...

Bitcoin is DEAD
drumhow
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 24, 2014, 10:14:54 PM
 #38

Wow, this is awesome. I left the amount that you entered originally and had it running for a day now.

It double my balance!

Thank you soooo much! If this thing keeps going like that, I will donate a bit to you, okay? Cheesy

Also, I did not get greedy and changed anything.
aerin00
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
June 24, 2014, 11:31:29 PM
 #39

Doesn't work for me.  Says my balance is 0 when it's not.
drumhow
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 25, 2014, 12:32:31 AM
 #40

Right now primedice is offline. I guess the server was overloaded.
Pages: « 1 [2] 3 4 5 6 7 8 9 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!