Bitcoin Forum
April 25, 2024, 12:44:08 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: FREEBITCO.IN AUTOSTOP NEW SCRIPT  (Read 616 times)
Phyzyprogrammer (OP)
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
October 21, 2017, 07:21:47 AM
 #1

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

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

Posts: 1714005848

View Profile Personal Message (Offline)

Ignore
1714005848
Reply with quote  #2

1714005848
Report to moderator
You can see the statistics of your reports to moderators on the "Report to moderator" pages.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714005848
Hero Member
*
Offline Offline

Posts: 1714005848

View Profile Personal Message (Offline)

Ignore
1714005848
Reply with quote  #2

1714005848
Report to moderator
1714005848
Hero Member
*
Offline Offline

Posts: 1714005848

View Profile Personal Message (Offline)

Ignore
1714005848
Reply with quote  #2

1714005848
Report to moderator
1714005848
Hero Member
*
Offline Offline

Posts: 1714005848

View Profile Personal Message (Offline)

Ignore
1714005848
Reply with quote  #2

1714005848
Report to moderator
zikabra
Full Member
***
Offline Offline

Activity: 574
Merit: 139


View Profile
October 21, 2017, 08:36:02 AM
 #2

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  Wink
Phyzyprogrammer (OP)
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
October 21, 2017, 10:02:09 AM
 #3

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


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

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

Activity: 409
Merit: 103



View Profile WWW
October 21, 2017, 10:38:15 AM
 #4


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



◄ freebcc.org ►
ceferov
Full Member
***
Offline Offline

Activity: 504
Merit: 101



View Profile WWW
October 21, 2017, 10:53:44 AM
 #5

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

https://www.ETH2X.com - Multiplayer roulette gambling platform.
Phyzyprogrammer (OP)
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
October 21, 2017, 11:56:53 AM
 #6

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

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 (OP)
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
October 21, 2017, 11:57:24 AM
 #7


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



sorry i dont get what you mean

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 (OP)
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
October 21, 2017, 07:59:43 PM
 #8

pls guys any help is appreciated

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

Activity: 658
Merit: 112



View Profile
October 21, 2017, 10:20:38 PM
 #9

i tried to understand but i couldn't get it. As far as i can understand you would loose your money.
Agent Smith
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
October 21, 2017, 11:05:08 PM
 #10

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 :/
Phyzyprogrammer (OP)
Member
**
Offline Offline

Activity: 90
Merit: 10

Visit www.btcscriptbot.wordpress.com to get latest


View Profile WWW
October 25, 2017, 08:59:07 AM
 #11

Okay guys pls just help me with the auto stop thanks  Grin

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
Pages: [1]
  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!