Jump to content

rslinks.org Rapidshare links collecter


Lmac34
 Share

Recommended Posts

Hi All

Heres a small script i wrote, to get rapidshare links from www.rslinks.org,

Why was this script Created?

I use "Free Download manager" to download every thing, i love the way you can pass a txt file containing all the files you want to download and not have to worry about it again.

it can be a pain in the arse, tring to make your txt file of downloads using rslink.

Having to right click and Copy Shortcut and then paste that into a txt file for every file you would like.

It can take ages if its a complete TV series, 20+Episodes 4+Parts Per Episode

What will this script do?

It Will Generate a Text File containing all the Rapidshare href links within that webpage.

It dose not download them!!!

How To Use It

open Rslinks.org

search for what you are looking for

open page link

Copy URL example "http://www.rslinks.org/node/9278/"

Paste into textbox Please enter Webpage Containing Rapidshare Links

Click Add

Repeat until all pages are selected

Enter the location to store all the Text File containing all the rapidshare links into Please Enter File To Save These Links To Text Box

Click Get Links

Keep Fingers Crossed.

thanks To

ProgAndy for his help on a small problem i had.

#include <GUIConstants.au3>
#include <IE.au3>
#include <GUIListBox.au3>
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Array.au3>
Opt("GUIOnEventMode", 1)
; == GUI generated with Koda ==
$Main = GUICreate("RSLinks.org Get Rapidshare Links", 622, 420, 202, 243)
$Group1 = GUICtrlCreateGroup("Please Enter Webpage Containg RapidShare Links", 8, 8, 609, 57)
$txtWebPage = GUICtrlCreateInput("", 16, 32, 553, 21, -1, $WS_EX_CLIENTEDGE)
$btnAdd = GUICtrlCreateButton("Add", 576, 32, 35, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("Please Enter File To Save These Links To", 8, 320, 609, 57)
$txtSaveFile = GUICtrlCreateInput("", 16, 344, 561, 21, -1, $WS_EX_CLIENTEDGE)
$btnSaveFile = GUICtrlCreateButton("...", 584, 344, 27, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$BtnGo = GUICtrlCreateButton("Get Links", 544, 384, 75, 25)
$lstRSLinksPages = GUICtrlCreateList("", 8, 80, 609, 227, BitOR($LBS_STANDARD,$WS_HSCROLL,$WS_VSCROLL), $WS_EX_CLIENTEDGE)
GUISetState(@SW_SHOW)

GUISetOnEvent($GUI_EVENT_CLOSE, "SpecialEvents")
GUISetOnEvent($GUI_EVENT_MINIMIZE, "SpecialEvents")
GUISetOnEvent($GUI_EVENT_RESTORE, "SpecialEvents")

GUICtrlSetOnEvent($btnAdd, "AddSite")
GUICtrlSetOnEvent($btnSaveFile, "GetSaveFile")
GUICtrlSetOnEvent($BtnGo, "GetLink")

While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case Else
    ;;;;;;;
    EndSelect
WEnd
Exit




func GetLink()
    local $SaveFile = GUICtrlRead($txtSaveFile)
    if($SaveFile = "")Then
        Return
    EndIf
    local $amt = _GUICtrlListBox_GetListBoxInfo($lstRSLinksPages)
    local $index = 0
    while $index < $amt
        local $webpage =  _GUICtrlListBox_GetText($lstRSLinksPages, $index)
        local $file = FileOpen($SaveFile,1)
        $oIE = _IECreate ($webpage,0,0,1,1)
        $links = _IELinkGetCollection($oIE)
        $iNumLinks = @extended
        For $link In $links
            $URL = $link.href
        ;$name = $link.innerHTML
            local $result = StringInStr($URL,"http://rapidshare.com")
            if($result <> 0)Then
                FileWriteLine($file,$URL)
            EndIf
        Next
        _IEQuit ($oIE)
        FileClose($file)
        $index = $index + 1
    WEnd
    MsgBox(0,"END","Completed")
EndFunc


Func SpecialEvents()
    Select
        Case @GUI_CTRLID = $GUI_EVENT_CLOSE
            Exit
        Case @GUI_CTRLID = $GUI_EVENT_MINIMIZE
        Case @GUI_CTRLID = $GUI_EVENT_RESTORE
    EndSelect
EndFunc


Func GetSaveFile()
    $var = FileSaveDialog( "Save/Append To File.", @MyDocumentsDir, "Text Files (*.txt)", 2)
    GUICtrlSetData($txtSaveFile,$var)
EndFunc

Func AddSite()
    local $site = GUICtrlRead($txtWebPage)
    If($site <> "")Then
        _GUICtrlListBox_InsertString($lstRSLinksPages,$site)
    EndIf
EndFunc

Hope This Helps Someone.

Regards

lmac34

Rslinks.au3

post-9187-1215008584_thumb.jpg

Rslinks.exe

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...