1) Mozilla Firefox
2) Install Grease Monkey (https://addons.mozilla.org/firefox/addon/748)
A.) Click Add to Firefox button
B.) Click Install Now - Wait til installation is finished
C.) Click Restart Firefox
3) Install Friends for Sale Coin Bot Script (http://userscripts.org/scripts/show/56280)
D.) Click Install button
Once you had installed the above program right click the bottom left Grease Monkey Icon and
select Manage User Scripts.
Select Friends for Sale Coin Finder and click Edit
Browse C: drive --> Windows --> Notepad and
copy the below code and paste into it and click saved.
Code:
// ==UserScript==
// @name Friends For Sale Coin Finder
// @namespace FriendsForSale
// @description CoinFinder
// @include http://apps.facebook.com/friendsforsale/users/show/*
// @author Raymond Go Ho
// Friends For Sale Coin Bot
// Buy me to thank me:: http://apps.facebook.com/friendsforsale/users/show/41252087
// Thank you for using this!!
// jQuery Loader is authored by Joan Piedra: http://joanpiedra.com/jquery/greasemonkey/
// Thanks Joan for making the wonderful script
// ==/UserScript==
// Add jQuery
var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);
// Check if jQuery's loaded
function GM_wait() {
if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
else { $ = unsafeWindow.jQuery; letsJQuery(); }
}
GM_wait();
// All your GM code must be inside this functio
function letsJQuery() {
// Find out if the coin on the website.
// Note that querySelectorAll is only available in Firefox 3.5 and above
var coin = document.querySelectorAll("#app7019261521_hover_container
> [id^=app7019261521_the_coin]");
if (coin.length == 1) {
var c = coin[0].firstChild;
var value = parseInt($(c).text());
// 500k - 999k is a mock value, FFS use it to detect bots
if (value >= 500 && value <= 999) {
window.location.reload();
} else {
window.location = c.href;
}
} else if (coin.length == 0) {
var prev = document.querySelector("a.prev");
window.location = prev;
} window.setTimeout("window.location.reload();", 1000);
}
*paste into Notepad and press save
*browse your friends profile in FFS to start
The BOT will automatically browse you Friends profile and collect money it gets.
ENJOY!!
No comments:
Post a Comment