Bitcoin Forum
May 14, 2024, 11:01:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: 1 2 3 [All]
  Print  
Author Topic: [Free] Freebitco.in SMART AUTO-Player  (Read 25938 times)
epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 24, 2014, 11:46:59 AM
Last edit: May 24, 2014, 11:13:18 PM by epctechno
 #1

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 Smiley 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 Smiley 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 Smiley

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!
1715684477
Hero Member
*
Offline Offline

Posts: 1715684477

View Profile Personal Message (Offline)

Ignore
1715684477
Reply with quote  #2

1715684477
Report to moderator
1715684477
Hero Member
*
Offline Offline

Posts: 1715684477

View Profile Personal Message (Offline)

Ignore
1715684477
Reply with quote  #2

1715684477
Report to moderator
1715684477
Hero Member
*
Offline Offline

Posts: 1715684477

View Profile Personal Message (Offline)

Ignore
1715684477
Reply with quote  #2

1715684477
Report to moderator
The Bitcoin network protocol was designed to be extremely flexible. It can be used to create timed transactions, escrow transactions, multi-signature transactions, etc. The current features of the client only hint at what will be possible in the future.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715684477
Hero Member
*
Offline Offline

Posts: 1715684477

View Profile Personal Message (Offline)

Ignore
1715684477
Reply with quote  #2

1715684477
Report to moderator
1715684477
Hero Member
*
Offline Offline

Posts: 1715684477

View Profile Personal Message (Offline)

Ignore
1715684477
Reply with quote  #2

1715684477
Report to moderator
1715684477
Hero Member
*
Offline Offline

Posts: 1715684477

View Profile Personal Message (Offline)

Ignore
1715684477
Reply with quote  #2

1715684477
Report to moderator
jsmit332
Hero Member
*****
Offline Offline

Activity: 792
Merit: 1001


Video editing • Animated GIFs • Graphic Design


View Profile
May 24, 2014, 11:52:05 AM
 #2

Just tried this and it works really well. Great work!
epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 24, 2014, 11:57:03 AM
 #3

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) Smiley
sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
May 24, 2014, 12:11:26 PM
 #4

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?
epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 24, 2014, 12:12:36 PM
 #5

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!
Frscott
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 24, 2014, 02:01:12 PM
 #6

Thanks for sharing your hard work. Will test it out when I have some time.
jsmit332
Hero Member
*****
Offline Offline

Activity: 792
Merit: 1001


Video editing • Animated GIFs • Graphic Design


View Profile
May 24, 2014, 04:28:46 PM
 #7

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.
epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 24, 2014, 08:20:19 PM
 #8

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 Smiley
sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
May 24, 2014, 08:31:56 PM
 #9

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 Smiley

Isn't there any way to automate it fully like just to make it keep going on the profit track?
epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 24, 2014, 11:18:03 PM
 #10

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 Smiley

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
Jcw188
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


Carpe Diem


View Profile
May 24, 2014, 11:51:05 PM
 #11

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.



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


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


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


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


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




██
██
██
██
██

██
██
██
████████
|
.
Listed
on
BINANCE
KUCOIN
Gate.io
|
epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 25, 2014, 01:50:23 AM
 #12

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. Smiley
ganabb
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
May 25, 2014, 02:46:40 AM
 #13

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.

sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
May 25, 2014, 03:10:09 AM
Last edit: May 25, 2014, 05:09:33 AM by sameev29
 #14

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 Smiley

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.   Smiley

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

Activity: 1974
Merit: 1007



View Profile
May 25, 2014, 04:05:46 AM
 #15

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. Smiley

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.

https://nanogames.io/i-bctalk-n/
Message for info on how to get kickbacks on sites like Nano (above) and CryptoPlay!
gondel
Legendary
*
Offline Offline

Activity: 1946
Merit: 1005


View Profile
May 25, 2014, 11:34:24 AM
 #16

This sounds really interesting Smiley Is that really works for sure? How much people tried it already?
BR
sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
May 25, 2014, 11:50:48 AM
 #17

This sounds really interesting Smiley 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.
gondel
Legendary
*
Offline Offline

Activity: 1946
Merit: 1005


View Profile
May 25, 2014, 01:44:14 PM
 #18

This sounds really interesting Smiley 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..
epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 26, 2014, 03:38:11 AM
 #19

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 Smiley 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 Smiley 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! Smiley
Jcw188
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


Carpe Diem


View Profile
May 26, 2014, 03:41:11 AM
 #20

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



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


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


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


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


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




██
██
██
██
██

██
██
██
████████
|
.
Listed
on
BINANCE
KUCOIN
Gate.io
|
Ron~Popeil
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
May 26, 2014, 06:45:57 AM
 #21

Very cool! Thanks for sharing this. I will have to build up a few thousand satoshis and try it out.

epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 26, 2014, 02:44:13 PM
 #22

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 Smiley
Ron~Popeil
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
May 27, 2014, 04:19:14 AM
 #23

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.  Cool

lost7
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
May 27, 2014, 03:37:09 PM
 #24

Haha really. I also made a bot for that site.. months ago.

Great you posted yours!
sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
May 27, 2014, 03:42:48 PM
 #25

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.  Cool

I am also having the same trouble.Could there be an error in the codes?
tuanvie
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250



View Profile
May 27, 2014, 04:36:17 PM
 #26

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

.
      ▄▄█▀▀█▄▄
  ▄▄█████▄▄█████▄▄
████  ███  ███  ████
  ▀▀█████▀▀█████▀▀

▀█▄▄  ▀▀█▄▄█▀▀   ▄▄█
 ▀▀███▄▄     ▄▄██▀██
     ▀███   ██▀  ▄█
██     ██  ██ ▄██▀██
▀██    ██  ███▀  ▄██
 ▀███▄▄██  ██ ▄███▀
    ▀▀███  ▀██▀▀
Just.Bet 
 
 
 
█▀▀▀▀▀










█▄▄▄▄▄
.
DICE
LOTTERY
PLINKO
.
COIN FLIP
CRASH
WHEEL
▀▀▀▀▀█










▄▄▄▄▄█
.
        ███████       ▄▄██▄
                  ▄▄███▀▀██▄
      ██████   ▄███████▄▄███▄
               ▀██  █████████▄
                ▀█████████▀▀██▄
████████████     ▀███▀▀███▄▄██▀
██  ████  ██      ▀██▄▄███▀▀
█████▀▀█████  ██   ▀██▀▀
█████▄▄█████
██  ████  ██   ██████
████████████
.
DECENTRALIZED
PROVABLY FAIR
ON CHAIN GAMES
█▀▀▀▀▀










█▄▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
PLAY NOW
.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀▀█










▄▄▄▄▄█
[/center]
epctechno (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 29, 2014, 01:42:09 PM
 #27

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.  Cool

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 Smiley

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 Smiley
golikcoin
Legendary
*
Offline Offline

Activity: 952
Merit: 1000



View Profile
June 04, 2014, 08:51:55 AM
 #28

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

 Wink


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

  ▄▄▄▀█████▀▄▄▄▄▀█████▀▄▄▄     ▀██▄             ▄██▀ ▀██▄             ▄██▀ ▀██▄             ▄██▀                   ██
▄█████▄▀▀▀▄██████▄▀▀▀▄█████▄     ▀██▄         ▄██▀     ▀██▄         ▄██▀     ▀██▄         ▄██▀        ▄█▄          ▀██████████████▄
████████████████████████████       ▀██▄     ▄██▀         ▀██▄     ▄██▀         ▀██▄     ▄██▀          ▀█▀                        ██
 ▀████████████████████████▀          ▀██▄ ▄██▀             ▀██▄ ▄██▀     ▄█▄     ▀██▄ ▄██▀                                       ██
   ▀████████████████████▀              ▀███▀                 ▀███▀       ▀█▀       ▀███▀      ▄███████████████████████████████████▀
     ▀████████████████▀
       ▀████████████▀
         ▀████████▀
           ▀████▀
║║


║║
.
.

║║
██
║║
.
.

║║
██
║║
.
║║


║║
Lambert
Full Member
***
Offline Offline

Activity: 148
Merit: 100


View Profile
June 12, 2014, 06:14:40 AM
 #29

Thanks for this, it's pretty useful!
deadlyunknown
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


View Profile
June 12, 2014, 12:23:23 PM
 #30

Bookmarking this, thank you! <3
Mitchell
Copper Member
Legendary
*
Offline Offline

Activity: 3920
Merit: 2199


Verified awesomeness ✔


View Profile WWW
June 12, 2014, 12:27:58 PM
 #31

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.

.
Duelbits
            ▄████▄▄
          ▄█████████▄
        ▄█████████████▄
     ▄██████████████████▄
   ▄████▄▄▄█████████▄▄▄███▄
 ▄████▐▀▄▄▀▌████▐▀▄▄▀▌██

 ██████▀▀▀▀███████▀▀▀▀█████

▐████████████■▄▄▄■██████████▀
▐██████████████████████████▀
██████████████████████████▀
▀███████████████████████▀
  ▀███████████████████▀
    ▀███████████████▀
.
         ▄ ▄▄▀▀▀▀▄▄
         ▄▀▀▄      █
         █   ▀▄     █
       ▄█▄     ▀▄   █
      ▄▀ ▀▄      ▀█▀
    ▄▀     ▀█▄▄▄▀▀ ▀
  ▄▀  ▄▀  ▄▀

Live Games

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

Slots
.
        ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄
        █         ▄▄  █
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄       █
█  ▄▄         █       █
█             █       █
█   ▄▀▀▄▀▀▄   █       █
█   ▀▄   ▄▀   █       █

Blackjack
|█▀▀▀▀▀█▄▄▄
       ▀████▄▄
         ██████▄
▄▄▄▄▄▄▄▄█▀    ▀▀█
████████▄        █
█████████▄        █
██████████▄     ▄██
█████████▀▀▀█▄▄████
▀▀███▀▀       ████
   █          ███
   █          █▀
▄█████▄▄▄ ▄▄▀▀
███████▀▀▀
.
                 NEW!                  
SPORTS BETTING 
|||
[ Đ ][ Ł ]
AVAILABLE NOW

Advertisements are not endorsed by me.
deadlyunknown
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


View Profile
June 12, 2014, 12:30:56 PM
 #32

JUst a question, OP, is this martingale?
Mitchell
Copper Member
Legendary
*
Offline Offline

Activity: 3920
Merit: 2199


Verified awesomeness ✔


View Profile WWW
June 12, 2014, 12:33:59 PM
 #33

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.

.
Duelbits
            ▄████▄▄
          ▄█████████▄
        ▄█████████████▄
     ▄██████████████████▄
   ▄████▄▄▄█████████▄▄▄███▄
 ▄████▐▀▄▄▀▌████▐▀▄▄▀▌██

 ██████▀▀▀▀███████▀▀▀▀█████

▐████████████■▄▄▄■██████████▀
▐██████████████████████████▀
██████████████████████████▀
▀███████████████████████▀
  ▀███████████████████▀
    ▀███████████████▀
.
         ▄ ▄▄▀▀▀▀▄▄
         ▄▀▀▄      █
         █   ▀▄     █
       ▄█▄     ▀▄   █
      ▄▀ ▀▄      ▀█▀
    ▄▀     ▀█▄▄▄▀▀ ▀
  ▄▀  ▄▀  ▄▀

Live Games

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

Slots
.
        ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄
        █         ▄▄  █
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄       █
█  ▄▄         █       █
█             █       █
█   ▄▀▀▄▀▀▄   █       █
█   ▀▄   ▄▀   █       █

Blackjack
|█▀▀▀▀▀█▄▄▄
       ▀████▄▄
         ██████▄
▄▄▄▄▄▄▄▄█▀    ▀▀█
████████▄        █
█████████▄        █
██████████▄     ▄██
█████████▀▀▀█▄▄████
▀▀███▀▀       ████
   █          ███
   █          █▀
▄█████▄▄▄ ▄▄▀▀
███████▀▀▀
.
                 NEW!                  
SPORTS BETTING 
|||
[ Đ ][ Ł ]
AVAILABLE NOW

Advertisements are not endorsed by me.
m5j0r
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
June 12, 2014, 08:15:57 PM
 #34

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.
mezmerizer9
Hero Member
*****
Offline Offline

Activity: 782
Merit: 1000


View Profile
June 12, 2014, 08:28:16 PM
 #35

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:



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 Smiley 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:



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 Smiley 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 Smiley

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.


███████████████████████████████████████
███████████████████████████████████████
█████████████████████████████
██████████████████████████
████████████████████████
███████████████████████
█████████████████?7?3████
███████████████████████
████████████████████████
██████████████████████████
█████████████████████████████
███████████████████████████████████████
███████████████████████████████████████
DECENT
FOUNDATION



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

██
██
██


[D]ecentralized application
[E]liminated third parties
[C]ontent distribution       



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

██
██
██


[E]ncrypted & secure
[N]o borders
[T]imeless reputation 



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

██
██
██



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

██
██
██

m5j0r
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
June 12, 2014, 09:22:19 PM
 #36

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..

Justin00
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


★YoBit.Net★ 350+ Coins Exchange & Dice


View Profile
June 12, 2014, 10:02:09 PM
 #37

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 Smiley

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.

m5j0r
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
June 12, 2014, 10:06:38 PM
 #38

Has anyone ever gotten and cashed out the jackpot? (the main 200 usd one)
sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
June 12, 2014, 11:22:20 PM
 #39

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.
m5j0r
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
June 16, 2014, 07:51:16 PM
 #40

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?
albysprx
Sr. Member
****
Offline Offline

Activity: 247
Merit: 250



View Profile
November 11, 2014, 04:07:07 PM
 #41

why after some seconds it's stop itself?
Phyzyprogrammer
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
September 30, 2017, 09:29:18 PM
 #42

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

visit (www.btcscriptbot.wordpress.com) we offer latest scripts and bots to earn bitcoins and other altcoins for free and paid! Earn Bitcoins with bots
Phyzyprogrammer
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
September 30, 2017, 10:02:39 PM
 #43

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

visit (www.btcscriptbot.wordpress.com) we offer latest scripts and bots to earn bitcoins and other altcoins for free and paid! Earn Bitcoins with bots
DOLONCHAPA
Full Member
***
Offline Offline

Activity: 360
Merit: 100



View Profile
October 01, 2017, 04:27:39 AM
 #44

Good service, A lot of thank brother,  Go Ahead... Kiss Shocked
redwine49
Full Member
***
Offline Offline

Activity: 980
Merit: 111


View Profile
October 01, 2017, 08:12:40 AM
 #45

its really good smart auto roll Grin Grin Grin.....but we can still improve this as well, i dont know about code maybe someone here can help to improve
Phyzyprogrammer
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
October 01, 2017, 08:52:01 AM
 #46

Pls anyone should help upgrade the script with autostop

visit (www.btcscriptbot.wordpress.com) we offer latest scripts and bots to earn bitcoins and other altcoins for free and paid! Earn Bitcoins with bots
Ibraoss
Member
**
Offline Offline

Activity: 86
Merit: 10


View Profile
October 01, 2017, 12:52:22 PM
 #47

how many her try this script and work fine ??
Chris314
Sr. Member
****
Offline Offline

Activity: 672
Merit: 266


View Profile
October 01, 2017, 01:06:45 PM
 #48

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.

Win Free Bitcoins every hour! - www.freebitco.in
free BTC every hour multiply hi-lo weekly lottery WIN a Lamborghini 30,000 usd contest BET on various events! 4% APR interest
★★★ 50% of my referral earnings back to you each week ★★★
Phyzyprogrammer
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
October 01, 2017, 02:39:11 PM
 #49

Pls anyone here help create a stop profit for the script

visit (www.btcscriptbot.wordpress.com) we offer latest scripts and bots to earn bitcoins and other altcoins for free and paid! Earn Bitcoins with bots
ioanbtc
Sr. Member
****
Offline Offline

Activity: 459
Merit: 251



View Profile
October 01, 2017, 03:17:45 PM
 #50

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 ?

steampunkz
Sr. Member
****
Offline Offline

Activity: 1162
Merit: 268

50% bonus on your First Topup


View Profile
October 02, 2017, 01:55:36 AM
 #51

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.

chav216
Member
**
Offline Offline

Activity: 79
Merit: 10

Hello all


View Profile
October 02, 2017, 06:58:47 AM
 #52

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.
Aamir1
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500



View Profile
October 02, 2017, 07:43:18 AM
 #53

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.
soname12
Member
**
Offline Offline

Activity: 266
Merit: 15


View Profile
October 02, 2017, 08:13:09 AM
 #54

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.

[  EOT  ]      FIRST DECENTRALIZED GAME NETWORK        [  EOT  ]
ICO: JULY 25
        │        READ OUR WHITEPAPER
████████││   REDDIT   ││   TELEGRAM   ││   TWITTER   ││   MEDIUM   ││   WEBSITE   ││████████
Bae_Seulgi
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
October 02, 2017, 10:08:10 AM
 #55

I followed all the instructions yet I lose 0.0000031  Undecided
Pages: 1 2 3 [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!