[GET] free Auto like script for facebook :)

emptyzero

Power Member
Joined
Aug 13, 2012
Messages
731
Reaction score
376
Hello, since Mark is playing n not letting us to Bank like we used to at facebook..
i will consider sharing some scripts i have to make facebook a shitty place :P

this script will like almost anything you have on your news feed, group, page, whenever it notice [ like ] it will hit it :)
liking speed is controlled so you don't get banned..

liking status updates on your news feeds would increase your " fb account stamina " letting your friends see your status updates more often.

====== edited Added external code because Forum changed some codes ! ========

Code:
http://bousla.net/BHW/autolike.txt
this is the script, hit thanks if you like it..
 
Last edited:
bro actually i don't want to like ALL of the posts, actually what will i get :P ?
 
nah, this will like everything :D Literally, it's build to parse [ like ] phrase and hit it.
 
How do I use this? Put it in my site header? It will auto like every like button?
 
inspect element -> console -> past and hit enter.. that's it
 
excuse me..noob here.. you say "letting your friends see your status updates more often." then if your friends see your status more often but still don't hit the like button..then it will be useless?
 
excuse me..noob here.. you say "letting your friends see your status updates more often." then if your friends see your status more often but still don't hit the like button..then it will be useless?
if your status is " like worthy" they would like it, but the problem is that fb new updates, kinda select which posts to show for your friends... but when you do like most of their status, more of your posts will be shown on their news feed. that's it.
 
Hello, since Mark is playing n not letting us to Bank like we used to at facebook..
i will consider sharing some scripts i have to make facebook a shitty place :P

this script will like almost anything you have on your news feed, group, page, whenever it notice [ like ] it will hit it :)
liking speed is controlled so you don't get banned..

liking status updates on your news feeds would increase your " fb account stamina " letting your friends see your status updates more often.

PHP:
/*    I Like Everything    Description: Like everything on Facebook    BlackHatworld | emptyzero*/
var sad = document.getElementsByTagName('*'),    happy = [],    halt = false;    // Select only the Like buttons.// Convert the sad NodeList to a happy Array.for (var i = 0; i < sad.length; i++) {    if (sad[i] && (sad[i].title == 'Like this' || sad[i].title == 'Like this comment')) {        happy.push(sad[i]);    }}
var happyDiv = document.createElement('div');happyDiv.innerHTML = '<div id=\'happy\' style=\'background-color:#ddd;font-size:16px;text-align:center;position:fixed;top:40px;right:40px;width:200px;height:150px;border:4px solid black;z-index:9999;padding-top:15px;\'>Like All By emptyzero <br> BlackHatworld<br><span>0</span> of '+happy.length+' items liked.<div id=\'happyStatus\' style=\'margin-top:30px;\'><a id=\'happyButton\' href=\'#\' style=\'display:block;\' onclick=\'haltFn();\'>Stop it.</a></div></div>';document.getElementsByTagName('body')[0].appendChild(happyDiv);
function happyFn(happy) {    if (halt || !happy || !happy.length) {        document.getElementById('happyStatus').innerHTML = 'Done!';        return;    }    happy[0].click();    happy[0].style.color='#FF0000';    var countSpan = document.querySelector('#happy span');    countSpan.innerHTML = parseInt(countSpan.innerHTML) + 1;        // Wait for each Like to be processed before trying the next.    // Facebook enforces this requirement.    window.setTimeout(function() {        happyFn(happy.splice(1));    }, 5000);}
function haltFn() {    halt = true;    return false; // prevent default event}
happyFn(happy);

this is the script, hit thanks if you like it..

Something is wrong with script,i see only SyntaxError: missing } after function body
maybe work only in chrome not in firefox?
 
didn't test on firefox, i don't use it..
works like a charm on g chrome..
 
didn't test on firefox, i don't use it..
works like a charm on g chrome..

bro your script dont work.test in google chrome and firefox.
in chrome: SyntaxError: Unexpected end of input
in firefox: SyntaxError: missing } after function body
 
it seems that forum changed some characters in code, added original.. try now..
 
Hello, since Mark is playing n not letting us to Bank like we used to at facebook..
i will consider sharing some scripts i have to make facebook a shitty place :P

this script will like almost anything you have on your news feed, group, page, whenever it notice [ like ] it will hit it :)
liking speed is controlled so you don't get banned..

liking status updates on your news feeds would increase your " fb account stamina " letting your friends see your status updates more often.

====== edited Added external code because Forum changed some codes ! ========


this is the script, hit thanks if you like it..

for me the code is not working :(
it shows
SyntaxError: Unexpected token ILLEGAL
 
Back
Top