; Author: Zach Boatrite ; Script Function: ; Ups views of an article on Triond ; by visiting the article page with ; a new tor identity each time. ; ; Prompt the user to run the script - use a Yes/No prompt (4 - see help file) $answer = MsgBox(4, "Article View Upper", "This script will load an up an article's view count. Run?") ; Check the user's answer to the prompt (see the help file for MsgBox return values) If $answer = 7 Then MsgBox(0, "AutoIt", "OK. Bye!") Exit EndIf ; Run FF with the URL. Tor must be running and already configured to run with FF. $article = "http://socyberty.com/philosophy/two-two-six-a-defense-for-goldmans-causal-analysis-of-knowledge/" Run("firefox.exe") WinWaitActive("Mozilla Firefox") ; Now that FF is open let's open the article and let the looping begin :D While True ; Go to address bar and type in article URL, then let it load Send("{F6}") Send($article) Send("{ENTER}") Sleep(45000) ; Use a random to decide whether an ad will be clicked. If Random() > .60 Then ; Use a random time to wait before the ad is clicked Sleep(Random() * 10000) ; Min time is 0 seconds, max time is 100 seconds (1 minute, 40 seconds) MouseClick("primary", 577, 173, 1) Sleep(30000) Send("^W") EndIf ; Use a random number to decide whether or not to add a Like. If Random() > .33 Then Send("{F6}") Send("javascript:doILikeIt(1027159,41,64335);") Send("{ENTER}") Sleep(10000) EndIf ; Go to http://boaty.wildspad.com/stuff/switch_tor_identity.html to get new Tor Identity, let it load too. Send("{F6}") Send("http://boaty.wildspad.com/stuff/switch_tor_identity.html") Send("{ENTER}") Sleep(5000) ; Repeat and up those views :D WEnd ; Finished!