Jump to content

bmarky

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by bmarky

  1. Well, sometimes when my mother enter my room, she says something like this
  2. Just wanted to learn how to manage a simple ini file. Here is what i made: If FileExists(@ProgramFilesDir & "\urname.ini") Then $var = IniRead(@ProgramFilesDir & "\urname.ini", "alapok", "name", "NotFound") MsgBox(48, "Name", "Your name is: " & $var) Else $name = InputBox ("Name", "You run this script first time. Please, enter your name.", "Your name comes here") IniWrite(@ProgramFilesDir & "\urname.ini", "alapok", "name", $name) MsgBox(64,"Name", "Your name have been stored.") EndIf It comes handy, if you forgot your name Mark
  3. Just would like to show where i am #include <IE.au3> $i = -1 $usernm = ":P" $passwd = ":P" $oIE = _IECreate ("http://swle.yarold.eu/main.php") $HATT = "A human awareness test" WinWait("Yarold's Samurai War Link Exchange - Windows Internet Explorer") Sleep (500) Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") ;$usernm = InputBox("Username", "Enter your username.") Sleep (150) Send ($usernm) Send ("{TAB}") ;$passwd = InputBox("Password", "Enter your password.", "", "*") Sleep (150) Send ($passwd) Send ("{TAB}") Send ("{TAB}") Send ("{ENTER}") Sleep (7000) $oLinks = _IELinkGetCollection ($oIE) $iNumLinks = @extended $iNumLinks2 = $iNumLinks - 23 MsgBox(0, "Link Info", $iNumLinks2 & " links found") For $oLink In $oLinks $i = $i + 1 If $i > 22 OR $iNumLinks - 1 > $i Then _IELinkClickByIndex ($oLink.href, $i, 0) If _IEPropertyGet ($oLink, "tilte")= $HATT Then MsgBox (0, "HAT!", "I found a Human Awarness Test! Watch out!") Endif EndIf Sleep (1) Next I have an idea for filtering, i will use IELinkClickbyIndex with an if method. Too lazy to calculate now The only thing that i cant get work, the If _IEPropertyGet ($oLink, "tilte")= $HATT Then MsgBox (0, "HAT!", "I found a Human Awarness Test! Watch out!") Endif Could anybody help to fix it? Update: with IELink.... , but not workig Pls check out, whats the problem
  4. I am trying to do a same auto script, please take a look at here: http://www.autoitscript.com/forum/index.php?showtopic=78034
  5. Hello! Here is the script: #include <IE.au3> $oIE = _IECreate ("http://swle.yarold.eu/main.php") Sleep (5000) Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("{TAB}") Send ("nickname") Send ("{TAB}") Send ("password") Send ("{TAB}") Send ("{TAB}") Send ("{ENTER}") Sleep (5000) $oLinks = _IELinkGetCollection ($oIE) $iNumLinks = @extended MsgBox(0, "Link Info", $iNumLinks & " links found") For $oLink In $oLinks _IECreate ($oLink.href) Sleep (1) Next Now, it working! (So nice login method ) 2 things remarning. How could i filter wich link to open? Some easyer way to login? Thanks for help! Mark
  6. Hi, again me I can't get to work my script, to open all the link that _IELinkGetCollection "collected". Any idea? Any feature to filter those links it opens? Thank you for your help! Mark
  7. Hello again! So back to sripting... Again, could anybody look after this sricpt (http://rapidshare.com/files/106410714/paraszTC016.exe.html) and say me how it works?
  8. Thx, mate, it is okey until its open mozilla... The main problem with it, its become slower... and i cant use any other programs... Pls help anyhow, i know it is possible (http://rapidshare.com/files/106410714/paraszTC016.exe.html - the author dont give me the source...) Thank you for your help
  9. Hello dear Forumers I am thinking on a voter(flooder) auto script (the author of the web page alowed to flood ). On of the 3 steps of the program to open up a web page(www.kiaparaszt.atw.hu/index.php?ki=nev) without brownser in a 150ms period... I have read all the tutorials but nothing found . Pls help! I will continue, thank you for help, Marky
×
×
  • Create New...