Bitcoin Forum

Economy => Services => Topic started by: epctechno on May 24, 2014, 11:46:59 AM



Title: [Free] Freebitco.in SMART AUTO-Player
Post by: epctechno on May 24, 2014, 11:46:59 AM
This is completely free below, with a couple of screenies to help the not-so-technicals' out that haven't an idea how to open up the consoles on Chrome and Firefox.

I'm bringing to you a player that'll make life easier while over on freebitco.in that you can actually see for yourself. I'm not putting an affiliate link, but if you find this useful and would like to donate feel free it'll be down below (all donations are appreciated)

Anyhow here's the script and I'll supply you with screenies of exactly what it does, rather than posting comments throughout this code.

You will need Google Chrome or Firefox, if you need to know how to open up the console on each one great. If not here's how you do it:

Chrome - Shift + CTRL + J

Firefox - Right click the page once you're on Multiply BTC and click Inspect Element then click inside the box down below, the Console box as such:

https://i.imgur.com/N0GtoX0.jpg

Now for the code to place in the console, feel free to adjust the numbers as you see fit, I'll pop in and out once in a while, but it takes a bit of understanding, however...... There's a safety net :) You'll see as you progress! Because we can never win it all, always lose in the long run. However if you get up there in the numbers, PULL OUT!

Enjoy and it's full on open source, as you can see here this is what it builds you:

https://i.imgur.com/ZZbvm7i.jpg

As you see it cuts all the access ads out, and builds you nothing but a frame to watch, and when you start to lose, it'll pop up and ask you to take the rise, you can see in the code below for yourself:

This is what I use, however do note, everyone's LUCK is different. But this adds a bit of speed to your gambling :) Remember bet responsively!

Copy and paste the below into the console and go kick ass!

Code:
$('body').append('<div style="position:fixed;top:0;left:0;width:100%;height:100%;min-height:100%;text-align: center;z-index:100000;background-color:white;" class=""><table style="margin:0 auto;"><tr><td>balance</td><td id="balance_b"></td></tr><tr><td>win</td><td id="roundwin_b"></td></tr><tr><td>bet</td><td id="current_bet_b"></td></tr><tr><td>time</td><td id="time_b"></td></tr></table></div>');
 
bconfig = {
  maxBet: 0.00001024,
  wait: 1,
  toggleHilo: false,
  alertMultiplier: 5
};
 
initialBalance = parseFloat($('#balance').html());
hilo = 'hi';
multiplier = 1;
startTime = new Date().getTime();
rollDice = function() {
 
  if ($('#double_your_btc_bet_lose').html() !== '') {
    $('#double_your_btc_2x').click();
    multiplier++;
    if (bconfig.toggleHilo) toggleHiLo();
  } else {
    setStartBet();
    $('#double_your_btc_bet_win').html('');
    var cmsg = {
      lose: $('#double_your_btc_bet_lose').html(),
      win: $('#double_your_btc_bet_win').html()
    };
    cmsg = JSON.stringify(cmsg);
  }
 
  if (multiplier > bconfig.alertMultiplier) {
    if (window.confirm("You have already lost " + (Math.pow(2, (multiplier - 1)) - 1) + " and you are about to lose " + Math.pow(2, (multiplier - 1)) + ". Click 'cancel' to reset the bet amount to 1 or 'ok' to take the risk?")) {
 
    } else {
      $('#double_your_btc_min').click();
      multiplier = 1;
    }
 
    $('#double_your_btc_bet_' + hilo + '_button').click();
  } else {
    if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
      parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
      $('#double_your_btc_min').click();
      multiplier = 1;
    }
 
    $('#double_your_btc_bet_' + hilo + '_button').click();
  }
 
 
 
  // setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
};
 
toggleHiLo = function() {
  if (hilo === 'hi') {
    hilo = 'lo';
  } else {
    hilo = 'hi';
  }
};
 
setStartBet = function() {
  $('#double_your_btc_min').click();
  multiplier = 1;
  // if ((Math.random() * 10) > 5) {
 
  // } else {
  //   $('#double_your_btc_min').click();
  //   $('#double_your_btc_2x').click();
  //   multiplier = 2;
  // }
}
 
currentMsg = '';
bChange = function(next) {
  var cmsg = {
    lose: $('#double_your_btc_bet_lose').html(),
    win: $('#double_your_btc_bet_win').html()
  };
  cmsg = JSON.stringify(cmsg);
  if (currentMsg !== cmsg) {
    $('#balance_b').html($('#balance').html());
    $('#roundwin_b').html((parseFloat($('#balance').html()) - initialBalance).toFixed(8));
    $('#current_bet_b').html($('#double_your_btc_stake').val());
    $('#time_b').html((Math.round(((new Date().getTime()) - startTime) / 1000) / 60 / 60).toFixed(2) + ' h');
    currentMsg = cmsg;
    next();
  }
  setTimeout(function() {
    setTimeout(function() {
      bChange(next);
    }, bconfig.wait)
 
  }, 50);
};
bChange(rollDice);


Now if you found this useful at all and want to donate, feel free here:

1KQ6ai6DmDcMnsiA4YAfJBkG7FWFCCD27t

If not, no worries, enjoy the automation and code that you can actually see :)

There are safety nets built in, so do see once you start losing, and you can adjust the code to your playstyle or even build on it.

All the best, and goodluck!


Title: Re: [Free] Freebitcoin.it SMART AUTO-Player
Post by: jsmit332 on May 24, 2014, 11:52:05 AM
Just tried this and it works really well. Great work!


Title: Re: [Free] Freebitcoin.it SMART AUTO-Player
Post by: epctechno on May 24, 2014, 11:57:03 AM
Just tried this and it works really well. Great work!

Good, yeah, works flawlessly, you'll see as you progress, take your time, and check out how the code works, if you need to adjust certain portions for raising limits and etc. Just change away. If you hit big, do remember me on pay out day (Sunday's I believe still) :)


Title: Re: [Free] Freebitcoin.it SMART AUTO-Player
Post by: sameev29 on May 24, 2014, 12:11:26 PM
Just tried this and it works really well. Great work!

Did it happen like you lost all of your bitcoins after like 5-10 minutes?


Title: Re: [Free] Freebitcoin.it SMART AUTO-Player
Post by: epctechno on May 24, 2014, 12:12:36 PM
So if anyone wants to expand it, and you have ideas to throw in there, feel free, I'm wide open for suggestions and etc. I'll be back way later it's late here (5AM Sleepless in Seattle)  I'm open for all suggestions and others wanting to add code in.

Hope everyone has a great day/night wherever you all are!


Title: Re: [Free] Freebitcoin.it SMART AUTO-Player
Post by: Frscott on May 24, 2014, 02:01:12 PM
Thanks for sharing your hard work. Will test it out when I have some time.


Title: Re: [Free] Freebitcoin.it SMART AUTO-Player
Post by: jsmit332 on May 24, 2014, 04:28:46 PM
Just tried this and it works really well. Great work!

Did it happen like you lost all of your bitcoins after like 5-10 minutes?

No, but im going to try it again now. i will tell you if it happens.


Title: Re: [Free] Freebitcoin.it SMART AUTO-Player
Post by: epctechno on May 24, 2014, 08:20:19 PM
Thanks for sharing your hard work. Will test it out when I have some time.

Glad to share with everyone!

Just tried this and it works really well. Great work!

Did it happen like you lost all of your bitcoins after like 5-10 minutes?

How would you allow it to happen when the pop-up asks you at x amount of sats (depending on how many times you've clicked OK) if you wanted to take a chance or cancel to reset to 1? The only way you're gonna go broke is if you bet foolishly :)


Title: Re: [Free] Freebitcoin.it SMART AUTO-Player
Post by: sameev29 on May 24, 2014, 08:31:56 PM
Thanks for sharing your hard work. Will test it out when I have some time.

Glad to share with everyone!

Just tried this and it works really well. Great work!

Did it happen like you lost all of your bitcoins after like 5-10 minutes?

How would you allow it to happen when the pop-up asks you at x amount of sats (depending on how many times you've clicked OK) if you wanted to take a chance or cancel to reset to 1? The only way you're gonna go broke is if you bet foolishly :)

Isn't there any way to automate it fully like just to make it keep going on the profit track?


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: epctechno on May 24, 2014, 11:18:03 PM
Thanks for sharing your hard work. Will test it out when I have some time.

Glad to share with everyone!

Just tried this and it works really well. Great work!

Did it happen like you lost all of your bitcoins after like 5-10 minutes?

How would you allow it to happen when the pop-up asks you at x amount of sats (depending on how many times you've clicked OK) if you wanted to take a chance or cancel to reset to 1? The only way you're gonna go broke is if you bet foolishly :)

Isn't there any way to automate it fully like just to make it keep going on the profit track?

It does keep going on profit, it only pauses as you see if you start losing to ask you what you would like to do? I said SMART in the title, not something that'll break you in a heartbeat if you only have 2k or sats :/ if you were on a losing streak.

I'm unsure what you mean by a profit track and being automated. Because it is as automated as it comes when it comes to winning. When you get on a losing streak it'll ask you like I said, if you wanted to wager x amount or click cancel to reset to 1


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Jcw188 on May 24, 2014, 11:51:05 PM
Is this something where you can use the faucet to get free bitcoin and then make a decent profit out of it?  Like how much using th faicet?  I assume you still need to manually enter the captcha to get the bitcoins.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: epctechno on May 25, 2014, 01:50:23 AM
Is this something where you can use the faucet to get free bitcoin and then make a decent profit out of it?  Like how much using th faicet?  I assume you still need to manually enter the captcha to get the bitcoins.

Well the faucet is it's own entity, you'll need to hit that before playing this portion, which is stated up in the top of the OP "Multiply Bitcoins" is where this script will run.

So yes, once you do the Faucet, I do recommend getting a good 2k worth before hitting this hard, right now I'm sitting over a free 62k waiting for tomorrow's payment after about an hour using my way above. I do adjust a couple things here and there, but works as intended. :)


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: ganabb on May 25, 2014, 02:46:40 AM
I admitted to being ignorant about economy and finance but when Andreas made for a good guest because of the internet side of things , I understand everything.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: sameev29 on May 25, 2014, 03:10:09 AM
Thanks for sharing your hard work. Will test it out when I have some time.

Glad to share with everyone!

Just tried this and it works really well. Great work!

Did it happen like you lost all of your bitcoins after like 5-10 minutes?

How would you allow it to happen when the pop-up asks you at x amount of sats (depending on how many times you've clicked OK) if you wanted to take a chance or cancel to reset to 1? The only way you're gonna go broke is if you bet foolishly :)

Isn't there any way to automate it fully like just to make it keep going on the profit track?

It does keep going on profit, it only pauses as you see if you start losing to ask you what you would like to do? I said SMART in the title, not something that'll break you in a heartbeat if you only have 2k or sats :/ if you were on a losing streak.

I'm unsure what you mean by a profit track and being automated. Because it is as automated as it comes when it comes to winning. When you get on a losing streak it'll ask you like I said, if you wanted to wager x amount or click cancel to reset to 1

I am sure you can develop these codes to a greater level.   :)

By the way how can I increase the bet amount.I mean which lines of the codes do I have to edit?


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: ranlo on May 25, 2014, 04:05:46 AM
Is this something where you can use the faucet to get free bitcoin and then make a decent profit out of it?  Like how much using th faicet?  I assume you still need to manually enter the captcha to get the bitcoins.

Well the faucet is it's own entity, you'll need to hit that before playing this portion, which is stated up in the top of the OP "Multiply Bitcoins" is where this script will run.

So yes, once you do the Faucet, I do recommend getting a good 2k worth before hitting this hard, right now I'm sitting over a free 62k waiting for tomorrow's payment after about an hour using my way above. I do adjust a couple things here and there, but works as intended. :)

Have you tried pushing it further than 62k or are you just doing that to be safe? I think if the script works well, and it has a decent chance of coming out ahead, it may be worth going for a BTC, :p.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: gondel on May 25, 2014, 11:34:24 AM
This sounds really interesting :) Is that really works for sure? How much people tried it already?
BR


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: sameev29 on May 25, 2014, 11:50:48 AM
This sounds really interesting :) Is that really works for sure? How much people tried it already?
BR

From my experience it needs some final customizations to make it perfect and simple for average users.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: gondel on May 25, 2014, 01:44:14 PM
This sounds really interesting :) Is that really works for sure? How much people tried it already?
BR

From my experience it needs some final customizations to make it perfect and simple for average users.
What do you mean with average user? If the average user know how to do it then may be they will change the way it is..


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: epctechno on May 26, 2014, 03:38:11 AM
Have you tried pushing it further than 62k or are you just doing that to be safe? I think if the script works well, and it has a decent chance of coming out ahead, it may be worth going for a BTC, :p.


I'm testing this out, I just got paid today from the site, so I don't wanna push the bill too quick you know :) I would rather gradually come ahead than lose it all back to back. Or risk the chance of being looked at by this website owner.


This sounds really interesting :) Is that really works for sure? How much people tried it already?
BR

From my experience it needs some final customizations to make it perfect and simple for average users.

Please speak up and give a bit of feedback, I would rather seeing everyone here collaborate and make it perfect not only for themselves but for everyone abroad! :)


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Jcw188 on May 26, 2014, 03:41:11 AM
I don't know much about coding. I'm wondering whether anyone can make modifications and repost what they did and explain why theirs is better than original. Thanks


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Ron~Popeil on May 26, 2014, 06:45:57 AM
Very cool! Thanks for sharing this. I will have to build up a few thousand satoshis and try it out.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: epctechno on May 26, 2014, 02:44:13 PM
Very cool! Thanks for sharing this. I will have to build up a few thousand satoshis and try it out.

Yeah I highly recommend building up enough (2-3kish) to sustain a huge hit if you wanted to press the OK and bet big :)


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Ron~Popeil on May 27, 2014, 04:19:14 AM
It seems to be stopping after a few seconds or not displaying results after a few seconds. I am up 700 satoshis so far though.  8)


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: lost7 on May 27, 2014, 03:37:09 PM
Haha really. I also made a bot for that site.. months ago.

Great you posted yours!


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: sameev29 on May 27, 2014, 03:42:48 PM
It seems to be stopping after a few seconds or not displaying results after a few seconds. I am up 700 satoshis so far though.  8)

I am also having the same trouble.Could there be an error in the codes?


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: tuanvie on May 27, 2014, 04:36:17 PM
I often get this notice.
what should I do?
http://postimg.org/image/wf2orqqk9/


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: epctechno on May 29, 2014, 01:42:09 PM
It seems to be stopping after a few seconds or not displaying results after a few seconds. I am up 700 satoshis so far though.  8)

Nice, yeah this website does throttle any of the end-users, nothing I can do about it. However, the fact is you can adjust the time on it by putting every 5s :)

I often get this notice.
what should I do?
http://postimg.org/image/wf2orqqk9/

That means you're on a losing streak... It pops up and lets you know.

If you have problems with this one, maybe you want to try my autoplayer:

Would be nice if you'd tip me or sign up with my ref

GTFO spammer :)


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: golikcoin on June 04, 2014, 08:51:55 AM
this works with http://freedoge.co.in/?r=1040


Code:
$('body').append('<div style="position:fixed;top:0;left:0;width:100%;height:100%;min-height:100%;text-align: center;z-index:100000;background-color:white;" class=""><table style="margin:0 auto;"><tr><td>balance</td><td id="balance_b"></td></tr><tr><td>win</td><td id="roundwin_b"></td></tr><tr><td>bet</td><td id="current_bet_b"></td></tr><tr><td>time</td><td id="time_b"></td></tr></table></div>');
 
bconfig = {
  maxBet: 0.00005000,
  wait: 1,
  toggleHilo: false,
  alertMultiplier: 5
};
 
initialBalance = parseFloat($('#balance').html());
hilo = 'hi';
multiplier = 1;
startTime = new Date().getTime();
rollDice = function() {
 
  if ($('#double_your_doge_bet_lose').html() !== '') {
    $('#double_your_doge_2x').click();
    multiplier++;
    if (bconfig.toggleHilo) toggleHiLo();
  } else {
    setStartBet();
    $('#double_your_doge_bet_win').html('');
    var cmsg = {
      lose: $('#double_your_doge_bet_lose').html(),
      win: $('#double_your_doge_bet_win').html()
    };
    cmsg = JSON.stringify(cmsg);
  }
 
  if (multiplier > bconfig.alertMultiplier) {
   
 
    $('#double_your_doge_bet_' + hilo + '_button').click();
  } else {
    if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_doge_stake').val()) * 2) ||
      parseFloat($('#double_your_doge_stake').val()) > bconfig.maxBet) {
      $('#double_your_doge_min').click();
      multiplier = 1;
    }
 
    $('#double_your_doge_bet_' + hilo + '_button').click();
  }
 
 
 
  // setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
};
 
toggleHiLo = function() {
  if (hilo === 'hi') {
    hilo = 'lo';
  } else {
    hilo = 'hi';
  }
};
 
setStartBet = function() {
  $('#double_your_doge_min').click();
  multiplier = 1;
  // if ((Math.random() * 10) > 5) {
 
  // } else {
  //   $('#double_your_doge_min').click();
  //   $('#double_your_doge_2x').click();
  //   multiplier = 2;
  // }
}
 
currentMsg = '';
bChange = function(next) {
  var cmsg = {
    lose: $('#double_your_doge_bet_lose').html(),
    win: $('#double_your_doge_bet_win').html()
  };
  cmsg = JSON.stringify(cmsg);
  if (currentMsg !== cmsg) {
    $('#balance_b').html($('#balance').html());
    $('#roundwin_b').html((parseFloat($('#balance').html()) - initialBalance).toFixed(8));
    $('#current_bet_b').html($('#double_your_doge_stake').val());
    $('#time_b').html((Math.round(((new Date().getTime()) - startTime) / 1000) / 60 / 60).toFixed(2) + ' h');
    currentMsg = cmsg;
    next();
  }
  setTimeout(function() {
    setTimeout(function() {
      bChange(next);
    }, bconfig.wait)
 
  }, 50);
};
bChange(rollDice);

 ;)


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Lambert on June 12, 2014, 06:14:40 AM
Thanks for this, it's pretty useful!


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: deadlyunknown on June 12, 2014, 12:23:23 PM
Bookmarking this, thank you! <3


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Mitchell on June 12, 2014, 12:27:58 PM
I just walked through the code and it seems to be legit (can't confirm if it bets correctly). It is a bit messy though, because of the //'s. OP, either use it or remove it, haha.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: deadlyunknown on June 12, 2014, 12:30:56 PM
JUst a question, OP, is this martingale?


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Mitchell on June 12, 2014, 12:33:59 PM
JUst a question, OP, is this martingale?
It seems to be martingale as far as I can see. I could be wrong, but I doubt it to be honest.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: m5j0r on June 12, 2014, 08:15:57 PM
It is martingale, and you _will_ lose with it.
There is no way around it except being extremely lucky, which is highly unlikely.

You have been warned..
I think it's a waste of time, faucets are nothing worth anyways, plus you will lose your few satoshis with this before you ever get near 1 BTC pretty damn sure.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: mezmerizer9 on June 12, 2014, 08:28:16 PM
This is completely free below, with a couple of screenies to help the not-so-technicals' out that haven't an idea how to open up the consoles on Chrome and Firefox.

I'm bringing to you a player that'll make life easier while over on freebitco.in that you can actually see for yourself. I'm not putting an affiliate link, but if you find this useful and would like to donate feel free it'll be down below (all donations are appreciated)

Anyhow here's the script and I'll supply you with screenies of exactly what it does, rather than posting comments throughout this code.

You will need Google Chrome or Firefox, if you need to know how to open up the console on each one great. If not here's how you do it:

Chrome - Shift + CTRL + J

Firefox - Right click the page once you're on Multiply BTC and click Inspect Element then click inside the box down below, the Console box as such:

https://i.imgur.com/N0GtoX0.jpg

Now for the code to place in the console, feel free to adjust the numbers as you see fit, I'll pop in and out once in a while, but it takes a bit of understanding, however...... There's a safety net :) You'll see as you progress! Because we can never win it all, always lose in the long run. However if you get up there in the numbers, PULL OUT!

Enjoy and it's full on open source, as you can see here this is what it builds you:

https://i.imgur.com/ZZbvm7i.jpg

As you see it cuts all the access ads out, and builds you nothing but a frame to watch, and when you start to lose, it'll pop up and ask you to take the rise, you can see in the code below for yourself:

This is what I use, however do note, everyone's LUCK is different. But this adds a bit of speed to your gambling :) Remember bet responsively!

Copy and paste the below into the console and go kick ass!

Code:
$('body').append('<div style="position:fixed;top:0;left:0;width:100%;height:100%;min-height:100%;text-align: center;z-index:100000;background-color:white;" class=""><table style="margin:0 auto;"><tr><td>balance</td><td id="balance_b"></td></tr><tr><td>win</td><td id="roundwin_b"></td></tr><tr><td>bet</td><td id="current_bet_b"></td></tr><tr><td>time</td><td id="time_b"></td></tr></table></div>');
 
bconfig = {
  maxBet: 0.00001024,
  wait: 1,
  toggleHilo: false,
  alertMultiplier: 5
};
 
initialBalance = parseFloat($('#balance').html());
hilo = 'hi';
multiplier = 1;
startTime = new Date().getTime();
rollDice = function() {
 
  if ($('#double_your_btc_bet_lose').html() !== '') {
    $('#double_your_btc_2x').click();
    multiplier++;
    if (bconfig.toggleHilo) toggleHiLo();
  } else {
    setStartBet();
    $('#double_your_btc_bet_win').html('');
    var cmsg = {
      lose: $('#double_your_btc_bet_lose').html(),
      win: $('#double_your_btc_bet_win').html()
    };
    cmsg = JSON.stringify(cmsg);
  }
 
  if (multiplier > bconfig.alertMultiplier) {
    if (window.confirm("You have already lost " + (Math.pow(2, (multiplier - 1)) - 1) + " and you are about to lose " + Math.pow(2, (multiplier - 1)) + ". Click 'cancel' to reset the bet amount to 1 or 'ok' to take the risk?")) {
 
    } else {
      $('#double_your_btc_min').click();
      multiplier = 1;
    }
 
    $('#double_your_btc_bet_' + hilo + '_button').click();
  } else {
    if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
      parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
      $('#double_your_btc_min').click();
      multiplier = 1;
    }
 
    $('#double_your_btc_bet_' + hilo + '_button').click();
  }
 
 
 
  // setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
};
 
toggleHiLo = function() {
  if (hilo === 'hi') {
    hilo = 'lo';
  } else {
    hilo = 'hi';
  }
};
 
setStartBet = function() {
  $('#double_your_btc_min').click();
  multiplier = 1;
  // if ((Math.random() * 10) > 5) {
 
  // } else {
  //   $('#double_your_btc_min').click();
  //   $('#double_your_btc_2x').click();
  //   multiplier = 2;
  // }
}
 
currentMsg = '';
bChange = function(next) {
  var cmsg = {
    lose: $('#double_your_btc_bet_lose').html(),
    win: $('#double_your_btc_bet_win').html()
  };
  cmsg = JSON.stringify(cmsg);
  if (currentMsg !== cmsg) {
    $('#balance_b').html($('#balance').html());
    $('#roundwin_b').html((parseFloat($('#balance').html()) - initialBalance).toFixed(8));
    $('#current_bet_b').html($('#double_your_btc_stake').val());
    $('#time_b').html((Math.round(((new Date().getTime()) - startTime) / 1000) / 60 / 60).toFixed(2) + ' h');
    currentMsg = cmsg;
    next();
  }
  setTimeout(function() {
    setTimeout(function() {
      bChange(next);
    }, bconfig.wait)
 
  }, 50);
};
bChange(rollDice);


Now if you found this useful at all and want to donate, feel free here:

1KQ6ai6DmDcMnsiA4YAfJBkG7FWFCCD27t

If not, no worries, enjoy the automation and code that you can actually see :)

There are safety nets built in, so do see once you start losing, and you can adjust the code to your playstyle or even build on it.

All the best, and goodluck!

Is this like the evreyother system? I've tried most of them, every that I saw here or anywhere else, and it was a sure loss when it comes to those betting systems.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: m5j0r on June 12, 2014, 09:22:19 PM
Gambling is about fun for many people.
They willingly play their luck..  sometimes they win sometimes they lose

But there is no such thing as beating maths. You would need an infinite bankroll to be able to martingale and profit from it after a million bets..



Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Justin00 on June 12, 2014, 10:02:09 PM
does the site allow you to do this ?
are the generating money by displaying banners (regardles if anone see's them) or by hoping people click on banners/links and hopfully buy stuff ?

just asking cause the own/admin/support (not sure who exactly) pm'd me to offer some help.. seemed like a nice guy so I wouldn't want the good usrrs here to do anything to annoy him... but each to there own  i guess :)

personally it seems lke it would take al ong long tme to actually make even $3 worth but its meant to be more of a jackpet/fun site than a way of  people suporting themselves financial,y but lol not everyone takes that stance i guess hehe

sorry if doesnt make sense. 7.30am... (ya ya i no its not to early) bu havnt even had my morning coffee / smok  yet.. spaking of which.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: m5j0r on June 12, 2014, 10:06:38 PM
Has anyone ever gotten and cashed out the jackpot? (the main 200 usd one)


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: sameev29 on June 12, 2014, 11:22:20 PM
I don't know much about coding. I'm wondering whether anyone can make modifications and repost what they did and explain why theirs is better than original. Thanks

This auto player gives a warning and stops when there is a certain amount of loss for a certain amount of bet.The other auto player doesn't have this feature.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: m5j0r on June 16, 2014, 07:51:16 PM
You need to put it in a [ code ] tag for the smileys not to mess it up.
There is no such thing as free money though. This will NOT work in the long run.

edit: he removed his post huh?


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: albysprx on November 11, 2014, 04:07:07 PM
why after some seconds it's stop itself?


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Phyzyprogrammer on September 30, 2017, 09:29:18 PM
Hello,  pls hv been using your script and it works well for me,  but pls can you add a stop profit option to it?  So it can stop at a particular profit that we want it to


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Phyzyprogrammer on September 30, 2017, 10:02:39 PM
Hello,  pls hv been using your script and it works well for me,  but pls can you add a stop profit option to it?  So it can stop at a particular profit that we want it to


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: DOLONCHAPA on October 01, 2017, 04:27:39 AM
Good service, A lot of thank brother,  Go Ahead... :-* :o


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: redwine49 on October 01, 2017, 08:12:40 AM
its really good smart auto roll ;D ;D ;D.....but we can still improve this as well, i dont know about code maybe someone here can help to improve


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Phyzyprogrammer on October 01, 2017, 08:52:01 AM
Pls anyone should help upgrade the script with autostop


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Ibraoss on October 01, 2017, 12:52:22 PM
how many her try this script and work fine ??


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Chris314 on October 01, 2017, 01:06:45 PM
It's a multiply btc script, so basically automates a martingale strategy. It works fine, but won't guarantee you'll earn money as you can (and most probably) lose more than you win.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Phyzyprogrammer on October 01, 2017, 02:39:11 PM
Pls anyone here help create a stop profit for the script


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: ioanbtc on October 01, 2017, 03:17:45 PM
I will try this once i will get on my pc. How much bitcoin i need to have in freebitco in site, to works ok and not lose ?


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: steampunkz on October 02, 2017, 01:55:36 AM
Its seem that this script is working, But when you loose more, and the warning pops out, The script stops completely after you click the continue button. Can someone fix that bug. Sorry, don't have knowledge in this kind of matter. But thanks for sharing this script op.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: chav216 on October 02, 2017, 06:58:47 AM
Be very careful with bots and scirpts as they have not worked for me in the past. Hold tigit to your earnings and gamble at your own risk.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Aamir1 on October 02, 2017, 07:43:18 AM
No strategy, no script can ever make someone win in gambling. It is never about skills nor about any expertise, it is all about luck, and if you are not lucky, nothing can save you from losing, and if you are lucky, nothing can stop you from winning. Just remember it, and gamble at your own risk, but not by the influence of a script code like this.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: soname12 on October 02, 2017, 08:13:09 AM
Thank you for sharing. I think it is hard to predict the failure sequence of this freebit site I have failed with its string of 198 and I have a lot of auto tool to bet this site that I spent nearly 0.5 bits but still not recovered. be anything I sincerely recommend that you have small capital should not participate in this game and advertise greed properly, then you will fail.


Title: Re: [Free] Freebitco.in SMART AUTO-Player
Post by: Bae_Seulgi on October 02, 2017, 10:08:10 AM
I followed all the instructions yet I lose 0.0000031  :-\