Welcome to BeerMoneyForum.com - BIGGEST MAKE MONEY FORUM ONLINE

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?
Blue
Red
Green
Orange
Voilet
Slate
Dark
  Guest viewing is limited

Sharing my freebitco bot+free satoshi competition!

Status
Not open for further replies.
To participate you need to sign up here and use this method! I auto share 70% of profit every single week! I use the option to share with the most active people so that means the more you collect the free roll and more multiply btc you play the more you get back! Here's proof of the sharing.

LuiF2uI.png


So as you can tell, being one of my referrals has it's perks!

Now onto the method!

1) Login to freebit with google chrome and go to your console (right click or use ctrl+shift+j )

2) Copy and paste this code
Code:
// version 4.0
console.clear();
var begingbal = $('#balance').text();
var startbalance = 0;
var autorounds = 200; // play 500 rounds only
var handbrake = 0.00000008; // pause when stake reaches 1024 Satoshis
//var stopAt= '?';
var round = 0;
var gameLost=0;
var gameWin=0;
var higherbet=0;
startbalance = $('#balance').text();
var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
stopPercentage = 0.004, // In %. I wouldn't recommend going past 0.08
maxWait = 1000, // In milliseconds
stopped = false,
stopBefore = 1; // In minutes default 3
var oldbet= 0.00000001;

var rewardpoints = document.getElementsByClassName("reward_table_box br_0_0_5_5 user_reward_points font_bold")[0].innerHTML;

s = document.getElementById("user_lottery_tickets").innerHTML;
s = s.replace(/(^\s*)|(\s*$)/gi,"");
s = s.replace(/[ ]{2,}/gi," ");
s = s.replace(/\n /,"\n");
document.getElementById("user_lottery_tickets").innerHTML = s;




document.getElementById("advertise_link_li").innerHTML = '<a href="#" onclick="startGame()" class="advertise_link">START BOT</a>';
var $loButton = $('#double_your_btc_bet_lo_button'),
$hiButton = $('#double_your_btc_bet_hi_button');

function higherBet(){
console.log('Highest bet: '+higherbet);
}
function beginingBal(){
console.log('BTC Starting Balance: '+begingbal);
}
function rewardsBal(){
console.log('%cReward Points Balance: ' +'%c'+rewardpoints+' points', 'color: #00000;', 'color: #ff9a36; font-weight: bold;');
}
function lotteryBal(){
console.log('%cLottery Tickets Balance: ' +'%c'+ s+' tickets', 'color: #00000;', 'color: #005bb6; font-weight: bold;');
}

function changeBet(bet){
startValue=bet;
}

function timeRemaining(){
timeR = $('title').text();
replText = timeR.replace("- FreeBitco.in - Win free bitcoins every hour!", "");
console.log('%cTime until free roll: ' +'%c'+replText, 'color: #00000; font-weight:bold;', 'color: #007a5c;font-weight:bold;');
}

function realtime(time) {
var sec_num =parseInt(time, 10) ; // don't forget the second param
var hours = Math.floor(sec_num / 3600);
var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
var seconds = sec_num - (hours * 3600) - (minutes * 60);

if (hours!=0) {hours = hours+' Hours ';} else{hours = '';}

if (minutes!=0) {minutes = minutes+' Minutes ';}
else{minutes = '';}


if (seconds < 10) {seconds = seconds;}
var time = 'Time played = '+hours+minutes+seconds+' Seconds';
return time;
}

function roundnumb(){
console.clear();
if( round == autorounds)
{
stopGame()
}
else
{
round = round + 1;
timeRemaining();
beginingBal();
rewardsBal();
lotteryBal();
console.log('Round #' + round + ' / ' + autorounds);
}

var newbalance= $('#balance').text()
var profit = (Number(newbalance) - Number(startbalance)).toFixed(8) ;
console.log('Profit:' + profit + ' Bitcoin')
}


function multiply(){
var current = $('#double_your_btc_stake').val();
var multiply = (current * 2).toFixed(8);
$('#double_your_btc_stake').val(multiply);
console.log('Bet = ' + multiply);
if( higherbet < multiply ){ higherbet=multiply; }
}
function getRandomWait(){
var wait = Math.floor(Math.random() * maxWait ) + 100; //(Math.floor(Math.random() * 800) + 300) ; // avant 100
console.log('Waiting for ' + wait + 'ms before next bet.');
return wait ;
}
function startGame(limit){
document.getElementById("advertise_link_li").innerHTML = '<a href="#" onclick="stopGame()" class="advertise_link">STOP BOT</a>';
starttime=(new Date()).getTime();
startValue = prompt("Number of satoshi you want to bet?", '0.00000001');
MaximumValue = prompt("Auto Restart BOT when bet reaches? ", '0.00000008');
oldbet=startValue;
handbrake=MaximumValue;
round = 0;
gameLost=0;
gameWin=0;
console.log('Game started!');
reset();
$loButton.trigger('click');
if(limit !== null) {
autorounds=limit;
}
else
{
autorounds=-1;
}
}
function startGame2(limit){
document.getElementById("advertise_link_li").innerHTML = '<a href="#" onclick="stopGame()" class="advertise_link">STOP BOT</a>';
starttime=(new Date()).getTime();
stopped = false;
oldbet=startValue;
handbrake=MaximumValue;
round = 0;
gameLost=0;
gameWin=0;
console.log('Game started!');
reset();
$loButton.trigger('click');
if(limit !== null) {
autorounds=limit;
}
else
{
autorounds=-1;
}
}
function stopGame(){
document.getElementById("advertise_link_li").innerHTML = '<a href="#" onclick="startGame()" class="advertise_link">START BOT</a>';
console.log('Game will stop soon! Let me finish.');
stopped = true;
startValue=oldbet;
handbrake=MaximumValue;
}
var sound = document.createElement('audio');
sound.id = 'handbrakealert';
sound.src = 'https://www.mediacollege.com/downloads/sound-effects/star-trek/tos/tos-computer-05.wav';
sound.preload = 'auto';
document.getElementsByTagName('body')[0].appendChild(sound);

function reset(){
if( round % 100 === 0 && round !=0)
{
startValue=(startValue * 1.000).toFixed(8); //New bet after 100 round
console.log('Round ' + round + ': bet change for ' + startValue);
}
$('#double_your_btc_stake').val(startValue);
}
// quick and dirty hack if you have very little bitcoins like 0.0000001
function deexponentize(number){
return number * 1000000;
}
function iHaveEnoughMoni(){
var balance = deexponentize(parseFloat($('#balance').text()));
var current = deexponentize($('#double_your_btc_stake').val());
return ((balance *2)/ 100) * (current*2) > stopPercentage/100;
}
function stopBeforeRedirect(){
var minutes = parseInt($('title').text());
if( minutes < stopBefore )
{
console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
stopGame();
return true;
}
return false;
}

function stopMaxStake(){
var maxstake1 = $('#double_your_btc_stake').val();
if( maxstake1 == handbrake )
{
stopped = true;
document.getElementById('handbrakealert').play();
console.log('Handbrake triggered! Please Wait');

var counter = 5;
var resBOTCountdown = setInterval(function(){
console.log('Highest Stake at '+ handbrake +' reached');
console.log(counter);
counter--
if (counter === -1) {
clearInterval(resBOTCountdown);
console.clear();
console.log("Restarting BOT");
console.log("Wait 5 more seconds so it wont double start");
}
}, 1000);

setTimeout(startGame2, 6000);
return true;
}
return false;
}
// Unbind old shit
$('#double_your_btc_bet_lose').unbind();
$('#double_your_btc_bet_win').unbind();

// Loser
$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){


if( $(event.currentTarget).is(':contains("lose")') )
{

gameLost = gameLost + 1;
roundnumb();
console.log('%cWin: ' + gameWin + ' %cLost: ' + gameLost, 'color: #007a5c', 'color: #FF0000');
endtime=(new Date()).getTime();
var time=Math.floor((endtime-starttime )/1000);
if( stopBeforeRedirect() )
{
return;
}
if( stopMaxStake() )
{
return;
}
else

higherBet();
console.log(realtime(time));
console.log('You LOST!');
multiply();
setTimeout(function(){
$loButton.trigger('click');
}, getRandomWait());
//$loButton.trigger('click');


}

}
);
// Winner
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("win")') )
{

gameWin = gameWin + 1;
roundnumb();
console.log('%cWin: ' + gameWin + ' %cLost: ' + gameLost, 'color: #007a5c', 'color: #FF0000');
endtime=(new Date()).getTime();
var time=Math.floor((endtime-starttime )/1000);
console.log(realtime(time));
higherBet();

if( iHaveEnoughMoni() )
{

console.log('You WON!');
reset();
if( stopped )
{
stopped = false;
return false;
}
}
else
{
console.log('You WON! ');
}
setTimeout(function(){
$loButton.trigger('click');
}, getRandomWait());
}
}
);// JavaScript Document
3) Click on Multiple BTC as shown
rMeQ0te.jpg


4) Click on Start Bot (as shown) a pop up will ask you what you'd like to bet, it defaults at .00000001 honestly I would leave it there or use .00000005 as the highest bet. Your BTC will grow slower but it is much much safer this way.
6squAjs.jpg


5) A second pop up will ask you the maximum amount you want to bet, so set this to a low number, that way your betting will reset when you hit that number. (this works most of the time)

6) After that, watch your BTC grow!
Here's an example of my balance after starting with just .0005
Nf1577Q.jpg


-Remember, this bot will auto-pause when your countdown timer reaches 3 minutes before the free roll.
-You need to claim your free roll before restarting the bot by going back through these steps.

Here is the free rolling bot:
https://www.dropbox.com/s/p7upbo1gn4buvov/myfreebitcoin.iim?dl=0
1) need to install imacros to firefox/chrome, then copy and paste the iim file to imacros folder in documents. 2) go and order captchas in deatchbycaptcha (you can try another captcha breaker as well) , then replace the login details to and save: http://snag.gy/fyvWY.jpg
3) Final step, open the main page [free btc] and run the bot, takes some time.Then earn as much as possible and play the lottery. Good luck!

If it's necessary to prove my earnings I'll post a scr about my blockchain profile. As I said I only pay for active members!!!
 
Bumped up the thread!
For a limited time auto sharing available only till August 6th.
m60VPj.jpg
 
Going to give away 30% of the earnings for active members who will take part of this contest!
NB8jrR.jpg
 
Going to give away 30% of the earnings for active members who will take part of this contest!
NB8jrR.jpg
Could you explain me how does it work exactly to make it success cuz i'VE already tried bot with some script and was just for losing.
Thnx
Regard
 
To participate you need to sign up here and use this method! I auto share 70% of profit every single week! I use the option to share with the most active people so that means the more you collect the free roll and more multiply btc you play the more you get back! Here's proof of the sharing.

LuiF2uI.png


So as you can tell, being one of my referrals has it's perks!

Now onto the method!

1) Login to freebit with google chrome and go to your console (right click or use ctrl+shift+j )

2) Copy and paste this code

3) Click on Multiple BTC as shown
rMeQ0te.jpg


4) Click on Start Bot (as shown) a pop up will ask you what you'd like to bet, it defaults at .00000001 honestly I would leave it there or use .00000005 as the highest bet. Your BTC will grow slower but it is much much safer this way.
6squAjs.jpg


5) A second pop up will ask you the maximum amount you want to bet, so set this to a low number, that way your betting will reset when you hit that number. (this works most of the time)

6) After that, watch your BTC grow!
Here's an example of my balance after starting with just .0005
Nf1577Q.jpg


-Remember, this bot will auto-pause when your countdown timer reaches 3 minutes before the free roll.
-You need to claim your free roll before restarting the bot by going back through these steps.

Here is the free rolling bot:
https://www.dropbox.com/s/p7upbo1gn4buvov/myfreebitcoin.iim?dl=0
1) need to install imacros to firefox/chrome, then copy and paste the iim file to imacros folder in documents. 2) go and order captchas in deatchbycaptcha (you can try another captcha breaker as well) , then replace the login details to and save: http://snag.gy/fyvWY.jpg
3) Final step, open the main page [free btc] and run the bot, takes some time.Then earn as much as possible and play the lottery. Good luck!

If it's necessary to prove my earnings I'll post a scr about my blockchain profile. As I said I only pay for active members!!!
code doesn't work as show me
upload_2017-8-5_4-50-11.png
 

Attachments

  • upload_2017-8-5_4-49-16.png
    upload_2017-8-5_4-49-16.png
    390.2 KB · Views: 188
Damn, this doesn't sound hard once you set it up... I will use your referral and sign up to see :) I just really have no experience with it so I will follow your guide.
 
Damn, this doesn't sound hard once you set it up... I will use your referral and sign up to see :) I just really have no experience with it so I will follow your guide.
it doesn't work even you try it brother, because of the script doesn't work.
 
Are you sure you did all of the steps he said?? Maybe we should wait for his reply.
Yes, brother, we should wait for his reply, because I have already tried it and they say that there are some errors in the script.
 
I think this Bit coin thing is banned in India, So what should i Do, please Guide.
Is it really? How you know Bitcoin is banned in India? Still people makes money using Bitcoin from India. I have joined this program and it is a waste of time. The OP is just trying to get referrals and make money from them.
 
Is it really? How do you know Bitcoin is banned in India? Still, people make money using Bitcoin from India. I have joined this program and it is a waste of time. The OP is just trying to get referrals and make money from them.
I'm ok with you brother, the best one to try to get free BTC is https://file.army/i/41x7Q3 from my experience you can trust this 100% I promise.
 
I'm ok with you brother, the best one to try to get free BTC is https://file.army/i/41x7Q3 from my experience you can trust this 100% I promise.
How much you made from this program and what is the difference between freebitco.in and your program? I can join, but don't want to waste time with crap programs.
 
I can honestly say that I don't really understand it, but I will try it because it does sound good.

How do you cash out by the way?
 
Last edited by a moderator:
To participate you need to sign up here and use this method! I auto share 70% of profit every single week! I use the option to share with the most active people so that means the more you collect the free roll and more multiply btc you play the more you get back! Here's proof of the sharing.

LuiF2uI.png


So as you can tell, being one of my referrals has it's perks!

Now onto the method!

1) Login to freebit with google chrome and go to your console (right click or use ctrl+shift+j )

2) Copy and paste this code

3) Click on Multiple BTC as shown
rMeQ0te.jpg


4) Click on Start Bot (as shown) a pop up will ask you what you'd like to bet, it defaults at .00000001 honestly I would leave it there or use .00000005 as the highest bet. Your BTC will grow slower but it is much much safer this way.
6squAjs.jpg


5) A second pop up will ask you the maximum amount you want to bet, so set this to a low number, that way your betting will reset when you hit that number. (this works most of the time)

6) After that, watch your BTC grow!
Here's an example of my balance after starting with just .0005
Nf1577Q.jpg


-Remember, this bot will auto-pause when your countdown timer reaches 3 minutes before the free roll.
-You need to claim your free roll before restarting the bot by going back through these steps.

Here is the free rolling bot:
https://www.dropbox.com/s/p7upbo1gn4buvov/myfreebitcoin.iim?dl=0
1) need to install imacros to firefox/chrome, then copy and paste the iim file to imacros folder in documents. 2) go and order captchas in deatchbycaptcha (you can try another captcha breaker as well) , then replace the login details to and save: http://snag.gy/fyvWY.jpg
3) Final step, open the main page [free btc] and run the bot, takes some time.Then earn as much as possible and play the lottery. Good luck!

If it's necessary to prove my earnings I'll post a scr about my blockchain profile. As I said I only pay for active members!!!

bro, having some problem with the code can you guide ... when i past code in console it didnt work javascript already enabled ....
 
Status
Not open for further replies.

📢 Recommended Partners

MGID - Native Performance & Programmatic Advertising Platform MGID Team
0.00 star(s) 0 ratings
Updated
Roobet.com | Crypto’s Fastest Growing Casino 🦘 Roobet.com
0.00 star(s) 0 ratings
Updated
Duckdice.io - Top Crypto Gambling - Bitcoin Dice DuckDice.io
0.00 star(s) 0 ratings
Updated
BMFAds.com - Advertise and Monetize Your CPC, CPM, POP Traffic BMF Staff
4.00 star(s) 4 ratings
Updated

banner

REWARDS: Active Raffles


  • 🤑 Roll 3: Win 100,000 BMF Points!

    The entry period for this raffle ends in..
Back
Top Bottom

Earnings Disclaimer:  All the posts published herein are merely based on individual views, and they do not expressly or by implications represent those of BeerMoneyForum.com or its owner. It is hereby made clear that BeerMoneyForum.com does not endorse, support, adopt or vouch any views, programs and/or business opportunities posted herein. BeerMoneyForum.com also does not give and/or offer any investment advice to any members and/or it's readers. All members and readers are advised to independently consult their own consultants, lawyers and/or families before making any investment and/or business decisions. This forum is merely a place for general discussions. It is hereby agreed by all members and/or readers that BeerMoneyForum.com is in no way responsible and/or liable for any damages and/or losses suffered by anyone of you.