Tutorial Script auto DICE Freebitco.in - Kiếm tiền với freebitco.in có tools

Status
Not open for further replies.

freebitco

Junior
Joined
Dec 12, 2017
Messages
51
Reactions
18
MR
0.001
code này có lúc ăn khủng, có lúc thua sạch :D Hôm qua, mình ăn gần 10k satoshi rồi thua sạch :3
ông xơi tham mỗi phát 20 chả vậy.code mặc định chỉ chơi từ 5$-10$ là ok rồi, có thể mở nhiều tab để chạy mà vì các roll khác nhau => mở 20 tab tương ứng với giá trị của ông chơi :):)
 

quanglam

Junior
Joined
Nov 15, 2014
Messages
150
Reactions
61
MR
0.682
đâu chơi từ 05 mà đó là vì hình chụp dc chừng đó chứ mình chơi từ 0.00000005. nhưng trước vào có ăn thật nhưng treo hơi lâu 1 chút chứ ko như chỉ dẫn của chủ thớt nên ra nông nỗi vậy
 

ngocduchhbg

Hero
Verified
Joined
Mar 9, 2011
Messages
1,678
Reactions
498
MR
0.377
Call me! Call me! Chat with me via Yahoo Messenger Follow me on Facebook Chat with me via Skype
ông xơi tham mỗi phát 20 chả vậy.code mặc định chỉ chơi từ 5$-10$ là ok rồi, có thể mở nhiều tab để chạy mà vì các roll khác nhau => mở 20 tab tương ứng với giá trị của ông chơi :):)
sau khi dán code vào thì ấn cái gì cho nó chạy auto vậy bác
 

LilTom

Hero
Joined
Apr 15, 2013
Messages
1,127
Reactions
229
MR
0.060
phải nạp tiền trang freebitco hả bác?
nạp sao vậy? nạp bằng paypal dc ko? mình nạp nhỏ ak
mà nạp 1 lần xài hoài lun hay sao?
 
kiếm đc thì nhất định sẽ bonus
cơ mà cũng ko nên tham, cheat mà đơn giản thế thì nó đã không tồn tại đến giờ rồi
thực ra đây cũng chả phải là cheat gì chỉ là cai script auto thôi mà, kiếm ăn cũng được nhưng share cho a/e nếm miếng vậy :):). chứ ăn 1 mình cũng không vui mấy
 
thực ra đây cũng chả phải là cheat gì chỉ là cai script auto thôi mà, kiếm ăn cũng được nhưng share cho a/e nếm miếng vậy :):). chứ ăn 1 mình cũng không vui mấy
sửa đoạn nào để thay vì chọn LO mình đổi sang HI vậy bác.
share em đoạn code HI với
 
chuyển lobutton sang hi thôi
PHP:
var startValue = '0.00000001', // Thay đổi giá trị cá cược ở đây
stopPercentage = 0.001,
maxWait = 777,
stopped = false,
stopBefore = 1;
var $hiButton = $('#double_your_btc_bet_hi_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 ***.');
return wait ;
}
function startGame(){
console.log('Game started!');
reset();
$hiButton.trigger('click');
}
function stopGame(){
console.log('Game will stop soon! Let me finish.');
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 *** 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 = false;
return false;
}
}
else
{
console.log('You WON! Betting again');
}
setTimeout(function(){
$hiButton.trigger('click');
}, getRandomWait());
}
});startGame()
 
PHP:
var startValue = '0.00000001', // Thay đổi giá trị cá cược ở đây
stopPercentage = 0.001,
maxWait = 777,
stopped = false,
stopBefore = 1;
var $hiButton = $('#double_your_btc_bet_hi_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 ***.');
return wait ;
}
function startGame(){
console.log('Game started!');
reset();
$hiButton.trigger('click');
}
function stopGame(){
console.log('Game will stop soon! Let me finish.');
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 *** 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 = false;
return false;
}
}
else
{
console.log('You WON! Betting again');
}
setTimeout(function(){
$hiButton.trigger('click');
}, getRandomWait());
}
});startGame()
cắm thử xem sao
thanks bác
 
Status
Not open for further replies.

Announcements

Today's birthdays

Forum statistics

Threads
423,815
Messages
7,133,512
Members
176,259
Latest member
anhnhienxanh

Most viewed of week

Most discussed of week

Most viewed of week

Most discussed of week

Back
Top Bottom