0% found this document useful (0 votes)
988 views4 pages

Bitcoins Hack

The document provides instructions for using a script to automatically place bets on a Bitcoin doubling website. It includes steps to run the script, variables used in the script, and functions for placing bets, multiplying the bet amount after losses, resetting after wins, and stopping the script before a redirect occurs.

Uploaded by

Ronel Dayo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
988 views4 pages

Bitcoins Hack

The document provides instructions for using a script to automatically place bets on a Bitcoin doubling website. It includes steps to run the script, variables used in the script, and functions for placing bets, multiplying the bet amount after losses, resetting after wins, and stopping the script before a redirect occurs.

Uploaded by

Ronel Dayo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

HOW TO USE THIS SCRIPT:

1. Go to freebitco.in
2. Click on Multiply BTC
3. for CHROME : 1) go to Menu --> More Tools --> Javascript console
2) Copy the script below
3) Paste the script into the javascript console
4) Press Enter key on the keyboard.
for FIREFOX : 1. Press F12 key on the keyboard
2. Copy and paste the script below on the console line
3. then press ENTER key on the keyboard.
******************* SCRIPT ********************

1. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current
balance
2. stopPercentage = 0.001, // In %. I wouldn't recommend going past 0.08
3. maxWait = 500, // In milliseconds
4. stopped = false,
5. stopBefore = 3; // In minutes
6.
7. var $loButton = $('#double_your_btc_bet_lo_button'),
8. $hiButton = $('#double_your_btc_bet_hi_button');
9.
10. function multiply(){
11. var current = $('#double_your_btc_stake').val();
12. var multiply = (current * 2).toFixed(8);
13. $('#double_your_btc_stake').val(multiply);
14. }
15.
16. function getRandomWait(){
17. var wait = Math.floor(Math.random() * maxWait ) + 100;
18.
19. console.log('Waiting for ' + wait + 'ms before next bet.');
20.
21. return wait ;
22. }
23.
24. function startGame(){
25. console.log('Game started!');
26. reset();
27. $loButton.trigger('click');
28. }
29.
30. function stopGame(){
31. console.log('Game will stop soon! Let me finish.');
32. stopped = true;
33. }
34.
35. function reset(){
36. $('#double_your_btc_stake').val(startValue);
37. }
38.
39. // quick and dirty hack if you have very little bitcoins like 0.0000001
40. function deexponentize(number){
41. return number * 1000000;
42. }
43.
44. function iHaveEnoughMoni(){
45. var balance = deexponentize(parseFloat($('#balance').text()));
46. var current = deexponentize($('#double_your_btc_stake').val());
47.
48. return ((balance*2)/100) * (current*2) > stopPercentage/100;
49. }
50.
51. function stopBeforeRedirect(){
52. var minutes = parseInt($('title').text());
53.
54. if( minutes < stopBefore )
55. {
56. console.log('Approaching redirect! Stop the game so we don\'t get
redirected while loosing.');
57. stopGame();
58.
59. return true;
60. }
61.
62. return false;
63. }
64.
65. // Unbind old shit
66. $('#double_your_btc_bet_lose').unbind();
67. $('#double_your_btc_bet_win').unbind();
68.
69. // Loser
70. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
71. if( $(event.currentTarget).is(':contains("lose")') )
72. {
73. console.log('You LOST! Multiplying your bet and betting again.');
74.
75. multiply();
76.
77. setTimeout(function(){
78. $loButton.trigger('click');
79. }, getRandomWait());
80.
81. //$loButton.trigger('click');
82. }
83. });
84.
85. // Winner
86. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
87. if( $(event.currentTarget).is(':contains("win")') )
88. {
89. if( stopBeforeRedirect() )
90. {
91. return;
92. }
93.
94. if( iHaveEnoughMoni() )
95. {
96. console.log('You WON! But don\'t be greedy. Restarting!');
97.
98. reset();
99.
100. if( stopped )
101. {
102. stopped = false;
103. return false;
104. }
105. }
106. else
107. {
108. console.log('You WON! Betting again');
109. }
110.
111. setTimeout(function(){
112. $loButton.trigger('click');
113. }, getRandomWait());
114. }
115. });startgame()
Bet

bconfig = {
maxBet: 0.00000256,
wait: 700,
toggleHilo:false
};

hilo = 'hi';
multiplier = 1;
rollDice = function() {

if ($('#double_your_btc_bet_lose').html() !== '') {


$('#double_your_btc_2x').click();
multiplier++;
if(bconfig.toggleHilo)toggleHiLo();
} else {
$('#double_your_btc_min').click();
multiplier = 1;
}

if (parseFloat($('#balance').html()) < (parseFloat($


('#double_your_btc_stake').val()) * 2) ||
parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
$('#double_your_btc_min').click();
}

$('#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';
}
};

rollDice();

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy