Bitcoin Forum

Economy => Micro Earnings => Topic started by: Phyzyprogrammer on October 21, 2017, 07:21:47 AM



Title: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: Phyzyprogrammer on October 21, 2017, 07:21:47 AM
Hello guys , pls i really need your help!!

so i was creating afreebitco.in script so, i wanted to add a stop profit to it, so that it will stop at a perticulAR PROFIT THAT i want, so am hoping you guys can help me complete the script so am gonna post it below,

Code:
var startValue = '0.00000002', // Don't lower the decimal point more than 4x of current balance
stopPercentage = 50.00,
maxWait = 077,
stopped = true, // debugging
stopBettingAfterProfit = 0.00000100, // In Profit Value                                           // THIS IS THE AUTO STOP FUNCTION I CREATED BUT ITS NOT WORKING AS I WANT IT
stopBefore = 1; // In minutes for timer before stopping redirect on webpage
var $loButton = $('#double_your_btc_bet_lo_button'),
$hiButton = $('#double_your_btc_bet_hi_button');
function multiply(){
var current = $('#double_your_btc_stake').val();
var multiply = (current * 2).toFixed(8);
$('#double_your_btc_stake').val(multiply);
}
function getRandomWait(){
var wait = Math.floor(Math.random() * maxWait ) + 100;
console.log('Waiting for ' + wait + 'ms before next bet.');
return wait ;
}
function startGame(){
console.log('Game started!');
reset();
$hiButton.trigger('click');
}
function stopGameAfterProfit(){
('stop_after_profit_value').val(value >='0.00000100')                   //THIS IS THE STOP PROFIT I CREATED, BUT IT ALWAYS STOP AFTER IT WINS, INSTEAD OF IT TO STOP AT THE
console.log('Game will stop soon! Let me finish.');                         //VALUE I WANT
stopped = true;
}
function reset(){
$('#double_your_btc_stake').val(startValue);
}
function deexponentize(number){
return number * 10000000;
}
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;
}
$('#double_your_btc_bet_lose').unbind();
$('#double_your_btc_bet_win').unbind();
$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("lose")') )
{
console.log('You LOST! Multiplying your bet and betting again.');
multiply();
setTimeout(function(){
$hiButton.trigger('click');
}, getRandomWait());
}
});
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("win")') )
{
if( stopBeforeRedirect() )
                {
                        return;
                }
if( iHaveEnoughMoni() )
{
console.log('You WON! But don\'t be greedy. Restarting!');
reset();
if( stopped )
{
stopped = true;
return true;
}
}
else
{
console.log('You WON! Betting again');
}
setTimeout(function(){
$hiButton.trigger('click');
}, getRandomWait());
}
});startGame();


thats the code guys i really hope you can help me so has to hv a stop profit


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: zikabra on October 21, 2017, 08:36:02 AM
Don't fool yourself man, script wont help you to win and if you use martingale you have 100% chance to lose all money.
And you are in wrong topic  ;)


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: Phyzyprogrammer on October 21, 2017, 10:02:09 AM
Don't fool yourself man, script wont help you to win and if you use martingale you have 100% chance to lose all money.
And you are in wrong topic  ;)
Don't fool yourself man, script wont help you to win and if you use martingale you have 100% chance to lose all money.
And you are in wrong topic  ;)


i understand that i might loss or even loss all but i really dont care, i just gamble for fun and luck but pls if u can help with the auto stop i will really appreciate u sir


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: coin_curious on October 21, 2017, 10:38:15 AM

Let it loose all its money. was already stolen anyway.




Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: ceferov on October 21, 2017, 10:53:44 AM
2 days ago i returned my balance from 120k to 340k in freebitco.in with autobet. then lost them all till my balance is 0. we should know when to just take and go


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: Phyzyprogrammer on October 21, 2017, 11:56:53 AM
2 days ago i returned my balance from 120k to 340k in freebitco.in with autobet. then lost them all till my balance is 0. we should know when to just take and go


thankx bro thats y i need the auto stop profit to add it to my script my aim is to earn 1000satoshies perday


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: Phyzyprogrammer on October 21, 2017, 11:57:24 AM

Let it loose all its money. was already stolen anyway.



sorry i dont get what you mean


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: Phyzyprogrammer on October 21, 2017, 07:59:43 PM
pls guys any help is appreciated


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: burky156 on October 21, 2017, 10:20:38 PM
i tried to understand but i couldn't get it. As far as i can understand you would loose your money.


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: Agent Smith on October 21, 2017, 11:05:08 PM
Hello guys , pls i really need your help!!

so i was creating afreebitco.in script so, i wanted to add a stop profit to it, so that it will stop at a perticulAR PROFIT THAT i want, so am hoping you guys can help me complete the script so am gonna post it below,

Code:
var startValue = '0.00000002', // Don't lower the decimal point more than 4x of current balance
stopPercentage = 50.00,
maxWait = 077,
stopped = true, // debugging
stopBettingAfterProfit = 0.00000100, // In Profit Value                                           // THIS IS THE AUTO STOP FUNCTION I CREATED BUT ITS NOT WORKING AS I WANT IT
stopBefore = 1; // In minutes for timer before stopping redirect on webpage
var $loButton = $('#double_your_btc_bet_lo_button'),
$hiButton = $('#double_your_btc_bet_hi_button');
function multiply(){
var current = $('#double_your_btc_stake').val();
var multiply = (current * 2).toFixed(8);
$('#double_your_btc_stake').val(multiply);
}
function getRandomWait(){
var wait = Math.floor(Math.random() * maxWait ) + 100;
console.log('Waiting for ' + wait + 'ms before next bet.');
return wait ;
}
function startGame(){
console.log('Game started!');
reset();
$hiButton.trigger('click');
}
function stopGameAfterProfit(){
('stop_after_profit_value').val(value >='0.00000100')                   //THIS IS THE STOP PROFIT I CREATED, BUT IT ALWAYS STOP AFTER IT WINS, INSTEAD OF IT TO STOP AT THE
console.log('Game will stop soon! Let me finish.');                         //VALUE I WANT
stopped = true;
}
function reset(){
$('#double_your_btc_stake').val(startValue);
}
function deexponentize(number){
return number * 10000000;
}
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;
}
$('#double_your_btc_bet_lose').unbind();
$('#double_your_btc_bet_win').unbind();
$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("lose")') )
{
console.log('You LOST! Multiplying your bet and betting again.');
multiply();
setTimeout(function(){
$hiButton.trigger('click');
}, getRandomWait());
}
});
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("win")') )
{
if( stopBeforeRedirect() )
                {
                        return;
                }
if( iHaveEnoughMoni() )
{
console.log('You WON! But don\'t be greedy. Restarting!');
reset();
if( stopped )
{
stopped = true;
return true;
}
}
else
{
console.log('You WON! Betting again');
}
setTimeout(function(){
$hiButton.trigger('click');
}, getRandomWait());
}
});startGame();


thats the code guys i really hope you can help me so has to hv a stop profit

Nice script but it will never work.
You cannot beat the law of large numbers.
The probability of doubling is 47.50%, autobet does not help :/


Title: Re: FREEBITCO.IN AUTOSTOP NEW SCRIPT
Post by: Phyzyprogrammer on October 25, 2017, 08:59:07 AM
Okay guys pls just help me with the auto stop thanks  ;D