bulldawg88
Junior Member
- Jan 13, 2012
- 166
- 107
So, I have a method that can generate daily income from torrents. However, I am not too sure how to make torrents go viral or to get a lot of downloads quickly. Any ideas or methods?
Edit: Sorry for the misleading title. To avoid this thread being a complete waste of everyone's time, here's the VBScript that does the work.
Where it says
That's so you can see it working on YOUR computer. Before deploying the script, change the 1 to 0.
Edit: Sorry for the misleading title. To avoid this thread being a complete waste of everyone's time, here's the VBScript that does the work.
Code:
KeepGoing = True
Dim IE, URLArray, URL
Set objWshShell = Wscript.CreateObject("Wscript.Shell")
Set IE = CreateObject("InternetExplorer.Application")
URLArray = Array("your link","your link")
Do While KeepGoing = True
For Each URL in URLArray
IE.Navigate2 URL
IE.Visible = 1
While IE.busy
WScript.Sleep 2000
Wend
WScript.Sleep 10000
IE.Document.GetElementsByName("LinkName").Item(0).Click()
WScript.Sleep 5000
IE.Navigate "referring website"
WScript.Sleep 5000
Next
Loop
Where it says
Code:
IE.Visible = 1
Last edited: