Bạn nào chưa có tài khoản trên bitcofarm.com, hãy đăng ký theo đường link: Ở ĐÂY NHÉ
Đối với các bạn đã chơi bitcofarm.com sẽ thấy, có 03 loại quảng cáo fixads(quảng cáo cố định: mất 10s để xem 1 quảng cáo, với mỗi một lần xem quảng cáo được 100shatoshi + 10point), Standard ads (quảng cáo chuẩn: mất 10s để xem quảng cáo), quảng cáo 30s( Mất 30s để xem hết một quảng cáo: Được 300shatoshi + 30 point) hiện nay số lượng quảng cáo quá nhiều, nếu các bạn kích bằng tay sẽ không thể xem hết số lượng quảng cáo hàng ngày và quá tốn thời gian
Có khá nhiều phương án giải quyết được đưa ra trong đó có 02 phương án khả thi:
+ Phương án 1: Sử dụng phần mềm kích chuột tự động
+ Phương án 2: Sử dụng đoạn kịch bản (script) tích hợp
ở đây mình hướng dẫn các bạn phương án 2: Để thực hiện phương án 2: cần 02 yêu cầu
1. Có 1 phần mềm chạy script trên trình duyệt
2. Có đoạn script chạy quảng cáo tự động
tôi sẽ hướng dẫn các bạn từng bước 1:
Bước 1: Đầu tiên cài phần mềm chạy Script trên trình duyệt
Các bạn vào google tìm plugin: tampermonkey hoặc violentmonkey; đây là 2 plugin thông dụng nhất chạy script và có thể tích hợp vào trình duyệt Opera, Chrome, Coccoc, Moliza firefox. cài đặt rất đơn giản
Chọn Violentmonkey - Chrome Web Store, ở đây do mình sử dụng trình duyệt Chrome
Chọn Add to chrome (nút màu xanh nhé)
Xuất hiện giao diện, các bạn bấm vào nút Thêm tiện ích
Đợi một chút để phần mềm tự động cài đặt và tích hợp vào trình duyệt Chrome nhé, Khi hoàn thành sẽ có biểu tượng ViolentMonkey ở góc phải của màn hình (hình dưới)
Ok, việc cài đặt đã hoàn thành
Bước 2: Thêm đoạn kịch bản (script) chạy bitcofarm tự động
Đầu tiên, kích chuột vào biểu tượng Violent Monkey ở góc phải màn hình (biểu tượng con khỉ đang cười), chọn Mở bảng điều khiển
Kích vào biểu tượng dấu cộng (+) để thêm một script mới nhé - Tạo mới
Các bạn xóa hết nội dung trong đoạn kịch bản này và copy đoạn script bên dưới dán vào
[HTML]
// ==UserScript==
// @name BitcoFarm Click Ads
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Auto Click Ads BitcoFarm
// @author Chip.vlz
// @match http://bitcofarm.com/ads
// @grant none
// ==/UserScript==
(function() {
'use strict';
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
function main(){
jQuery(function() {
process();
});
function process() {
var href = jQuery('#right').find('a[href] > div').not('.disabled_pbx').first().parent().attr('href');
console.log('opened href: ', href);
if (!href) return;
var splitted = href.split('=');
var ad_id = splitted[1].split('&');
ad_id = ad_id[0];
prepareLoginFrame(href, ad_id);
function prepareLoginFrame(href, ad_id) {
var ifrm = jQuery("<iframe></iframe>");
ifrm.attr('id', 'loginIframe');
ifrm.attr("src", href);
ifrm.css({
'width': '640px',
'height': '480px',
'position': 'fixed',
'top': '50%',
'left': '50%',
'transform': 'translate(-50%, -50%)'
});
setTimeout(function() {
var myWindow = jQuery('#loginIframe')[0].contentWindow;
for (var i = 1; i < 99999; i++) {
myWindow.clearInterval(i);
}
myWindow.view = 0;
myWindow.control = 0;
myWindow.settimeout = 12;
myWindow.startit = 1;
myWindow.setInterval(function() {
if(myWindow.view < myWindow.settimeout) {
if (myWindow.startit > 0) {
myWindow.view = myWindow.view + 1;
var width = (myWindow.view*100) / myWindow.settimeout;
myWindow.$('#barload').css('width', width + '%');
}
}
if (myWindow.view == myWindow.settimeout && myWindow.control == 0) {
myWindow.control = 1;
myWindow.$.get('virtual_core.php','adv='+ad_id+'&action=adv', function(e) {
myWindow.$('#desc').hide().html(e).fadeIn().addClass('twirk');
console.log(e);
if (e == 'Completed!') {
jQuery('#' + ad_id).addClass('disabled_pbx');
}
});
}
}, 1000);
myWindow.$('#iframe').remove();
}, 2000);
jQuery('body').append(ifrm);
}
var a = setInterval(function() {
console.log('Check ad: ' + ad_id);
if (jQuery('#'+ad_id).hasClass('disabled_pbx')) {
console.log('Ad' + ad_id + ' completed');
jQuery('#loginIframe').remove();
clearInterval(a);
setTimeout(function() {
process();
}, (getRandomInt(5, 10)*1000));
} else {
console.log('Ad' + ad_id + ' not completed yet!');
}
}, 1000);
function gup(name) {
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.href);
return results[1] || '';
}
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
setTimeout(function() {
location.reload();
}, 17000);
}
}
addJQuery(main);
})();
[/HTML]
Sau đó, kích vào nút Lưu & Đóng
2. Có đoạn script chạy quảng cáo tự động
tôi sẽ hướng dẫn các bạn từng bước 1:
Bước 1: Đầu tiên cài phần mềm chạy Script trên trình duyệt
Các bạn vào google tìm plugin: tampermonkey hoặc violentmonkey; đây là 2 plugin thông dụng nhất chạy script và có thể tích hợp vào trình duyệt Opera, Chrome, Coccoc, Moliza firefox. cài đặt rất đơn giản
Chọn Violentmonkey - Chrome Web Store, ở đây do mình sử dụng trình duyệt Chrome
Chọn Add to chrome (nút màu xanh nhé)
Xuất hiện giao diện, các bạn bấm vào nút Thêm tiện ích
Đợi một chút để phần mềm tự động cài đặt và tích hợp vào trình duyệt Chrome nhé, Khi hoàn thành sẽ có biểu tượng ViolentMonkey ở góc phải của màn hình (hình dưới)
Ok, việc cài đặt đã hoàn thành
Bước 2: Thêm đoạn kịch bản (script) chạy bitcofarm tự động
Đầu tiên, kích chuột vào biểu tượng Violent Monkey ở góc phải màn hình (biểu tượng con khỉ đang cười), chọn Mở bảng điều khiển
Kích vào biểu tượng dấu cộng (+) để thêm một script mới nhé - Tạo mới
Các bạn xóa hết nội dung trong đoạn kịch bản này và copy đoạn script bên dưới dán vào
[HTML]
// ==UserScript==
// @name BitcoFarm Click Ads
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Auto Click Ads BitcoFarm
// @author Chip.vlz
// @match http://bitcofarm.com/ads
// @grant none
// ==/UserScript==
(function() {
'use strict';
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
function main(){
jQuery(function() {
process();
});
function process() {
var href = jQuery('#right').find('a[href] > div').not('.disabled_pbx').first().parent().attr('href');
console.log('opened href: ', href);
if (!href) return;
var splitted = href.split('=');
var ad_id = splitted[1].split('&');
ad_id = ad_id[0];
prepareLoginFrame(href, ad_id);
function prepareLoginFrame(href, ad_id) {
var ifrm = jQuery("<iframe></iframe>");
ifrm.attr('id', 'loginIframe');
ifrm.attr("src", href);
ifrm.css({
'width': '640px',
'height': '480px',
'position': 'fixed',
'top': '50%',
'left': '50%',
'transform': 'translate(-50%, -50%)'
});
setTimeout(function() {
var myWindow = jQuery('#loginIframe')[0].contentWindow;
for (var i = 1; i < 99999; i++) {
myWindow.clearInterval(i);
}
myWindow.view = 0;
myWindow.control = 0;
myWindow.settimeout = 12;
myWindow.startit = 1;
myWindow.setInterval(function() {
if(myWindow.view < myWindow.settimeout) {
if (myWindow.startit > 0) {
myWindow.view = myWindow.view + 1;
var width = (myWindow.view*100) / myWindow.settimeout;
myWindow.$('#barload').css('width', width + '%');
}
}
if (myWindow.view == myWindow.settimeout && myWindow.control == 0) {
myWindow.control = 1;
myWindow.$.get('virtual_core.php','adv='+ad_id+'&action=adv', function(e) {
myWindow.$('#desc').hide().html(e).fadeIn().addClass('twirk');
console.log(e);
if (e == 'Completed!') {
jQuery('#' + ad_id).addClass('disabled_pbx');
}
});
}
}, 1000);
myWindow.$('#iframe').remove();
}, 2000);
jQuery('body').append(ifrm);
}
var a = setInterval(function() {
console.log('Check ad: ' + ad_id);
if (jQuery('#'+ad_id).hasClass('disabled_pbx')) {
console.log('Ad' + ad_id + ' completed');
jQuery('#loginIframe').remove();
clearInterval(a);
setTimeout(function() {
process();
}, (getRandomInt(5, 10)*1000));
} else {
console.log('Ad' + ad_id + ' not completed yet!');
}
}, 1000);
function gup(name) {
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.href);
return results[1] || '';
}
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
setTimeout(function() {
location.reload();
}, 17000);
}
}
addJQuery(main);
})();
[/HTML]
Sau đó, kích vào nút Lưu & Đóng
OK, bây giờ các bạn vào trang bitcofarm.com, đăng nhập với tài khoản và mật khẩu của mình, sau đó kích chọn mục View Ads và tự động kiếm tiền thôi
P/S: Đoạn code trên chỉ chạy các đoạn quảng cáo 10s gồm (fix ads, standard ads), muốn chạy đoạn quảng cáo 30s thì các bạn thêm đoạn code này nhé
[HTML]
// ==UserScript==
// @icon http://bitcofarm.com/img/favicon.png
// @name Bitcofarm Only 30 Sec Ads
// @namespace http://moneybot24.com/
// @version 1.1
// @description Sign up: https://goo.gl/4vXfys - Login, click on view ads and the bot starts automatically
// @author MoneyBot24.com
// @match http://bitcofarm.com/*
// ==/UserScript==
(function() {
if(window.location.href.indexOf("http://bitcofarm.com/ads") > -1){
setInterval( function() {
if (document.hasFocus())
{
var o = $(".hap:contains('30 Points')").not('.disabled_pbx').parent().not('#right');
if(o.length === 0) location.href = location.href;
o.addClass('disabled_pbx');
console.log(o.attr('href'));
window.open(o.attr('href'));
}}, 1000);
}
else if(window.location.href.indexOf("http://bitcofarm.com/modules/adview.php") > -1)
{
$('#bitmedad').prepend('<a href="//moneybot24.com/" target="_blank""><img src="//goo.gl/ZsHNQs" height="100%"/></a>');
setInterval( function(){
if($('#desc').text() === 'Completed!'){
window.close();
}
else if($('#desc').text().trim() === 'Already Clicked!'){
window.close();
}
}, 1000);
}
})();
[/HTML]
OK, máy tính nào xịn thì kiếm được tương đối khá đó nhé. Có chỗ nào chưa hiểu các bạn comment bên dưới nhé
Chúc các bạn kiếm được thật nhiều bitcoin từ trang bitcofarm
P/S: Đoạn code trên chỉ chạy các đoạn quảng cáo 10s gồm (fix ads, standard ads), muốn chạy đoạn quảng cáo 30s thì các bạn thêm đoạn code này nhé
[HTML]
// ==UserScript==
// @icon http://bitcofarm.com/img/favicon.png
// @name Bitcofarm Only 30 Sec Ads
// @namespace http://moneybot24.com/
// @version 1.1
// @description Sign up: https://goo.gl/4vXfys - Login, click on view ads and the bot starts automatically
// @author MoneyBot24.com
// @match http://bitcofarm.com/*
// ==/UserScript==
(function() {
if(window.location.href.indexOf("http://bitcofarm.com/ads") > -1){
setInterval( function() {
if (document.hasFocus())
{
var o = $(".hap:contains('30 Points')").not('.disabled_pbx').parent().not('#right');
if(o.length === 0) location.href = location.href;
o.addClass('disabled_pbx');
console.log(o.attr('href'));
window.open(o.attr('href'));
}}, 1000);
}
else if(window.location.href.indexOf("http://bitcofarm.com/modules/adview.php") > -1)
{
$('#bitmedad').prepend('<a href="//moneybot24.com/" target="_blank""><img src="//goo.gl/ZsHNQs" height="100%"/></a>');
setInterval( function(){
if($('#desc').text() === 'Completed!'){
window.close();
}
else if($('#desc').text().trim() === 'Already Clicked!'){
window.close();
}
}, 1000);
}
})();
[/HTML]
OK, máy tính nào xịn thì kiếm được tương đối khá đó nhé. Có chỗ nào chưa hiểu các bạn comment bên dưới nhé
Chúc các bạn kiếm được thật nhiều bitcoin từ trang bitcofarm
Admin
No comments:
Post a Comment