Fileserve link checker script - Working and Tested !

Status
Not open for further replies.

kiddo

Active Member
476
2010
49
0
[slide]http://i28.tinypic.com/1z14vab.png[/slide]

First install grease-monkey and then the RS link checker script using the links below!


Code:
https://addons.mozilla.org/en-US/firefox/addon/748/

Code:
http://userscripts.org/scripts/show/9467


Then right click on the grease-monkey icon on the bottom right of the firefox window and choose manage user scripts! Then Click on the "Rapidshare link checker" on the top left of that window and then on the bottom right there is a section called excluded pages and an "ADD" button!

Click the add button and add:


Code:
http://www.fileserve.com


then just close it and press add again and do the same for


Code:
http://fileserve.com


Now making sure that the Rs link checker is still highlighted on the top left of the manage user scripts window! Look at the bottom left where is says "drag and drop with mouse.." Right below that there is a edit button ! Click it and choose your preferred text editor! I suggest notepadd++ . well any text editor that displays line numbers so you can see what line you're coding on! (so just navigate to program files folder and find youre text editor)


After you choose an editor, it will open the huge java-script file called "rapidshare_links_checker.user.js"..


Ok so now at "around" line 260 or so under the "function set_variables()" section... this line needs to be added to the group (doesn't have to be an exact line.. mine was line 262):


Code:
Check_fileserve_dot_com_links = GM_getValue("Check_fileserve_dot_com_links", true);



Now that you done that at around line 1745 or so you will see some code groupings that look like the below... Just add the below after one of the groups! I added mine on line 1757 !


Code:
   if(Check_fileserve_dot_com_links){ 
      var fileserve_com= new Array(6)     //http://www.fileserve.com/file/QXwnn2Z/
                                          //http://www.fileserve.com/file/pqEhrgk/
       fileserve_com[0]='(?:www.|)fileserve\.com\/file\/';       //name and search string in link to get description
       fileserve_com[1]='table class="timing"';                           // file_is_alive
       fileserve_com[2]='table class="premium_error"';                            // file_is_dead
       fileserve_com[3]='optional--';                 // no download slots or temporarily unavailable or servererror
       fileserve_com[4]="//a[contains(@href,'fileserve.com')]"; 
       fileserve_com[5]='optional--';
       fileserve_com[6]='<strong>(\\d.*?)</strong> | Uploaded on';   // size
       http_file_hosts.push(fileserve_com);
      }


and then at around line 1559 i added! (you will see the lines for the other host .. It doesn't have to be line 1559 exactly just add it in the group)


Code:
<div id="sites"><span id="Check_fileserve_dot_com_links"></div></span>\


Ok I hope i made it easy for the peeps looking to get fileserve working with the link checker!



Credit goes to the original poster Ni3AM on Warez-BB. :)
 
15 comments
thanks mate! been looking for this. It's working, except that it doesn't display the file names when you hover over the links. anyway, it still awesome!
 
Awesome m8, working great except that I have a premium acct on FS and everytime I go on a page with FS links my download manager pops up to download it, had to log out first.

[slide]http://screensnapr.com/u/1gun0h.png[/slide]
 
Awesome m8, working great except that I have a premium acct on FS and everytime I go on a page with FS links my download manager pops up to download it, had to log out first.

[slide]http://screensnapr.com/u/1gun0h.png[/slide]
Well even I am logged into my FS Premium account mate. However if I go on a page with FS links my download manager doesn't pop up. Maybe there is some other problem?
 
Itz nice that some one posted it here... gud work mate... indeed itz working! Cheerz!!

Edit - If u have problems like that disable Grease monkey wherever u dnt have to check links!!
 
Status
Not open for further replies.
Back
Top