Jump to content

zvision.pro

Active Members
  • Posts

    40
  • Joined

  • Last visited

zvision.pro's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Wow EXACTLY. And just ignore my post because you know it's all so true^.
  2. Wow..I'm very unimpressed with this support in the AutoIt forums. I'm sorry that I'm like one of the very few people who aren't automatically advanced at scripting when they first learn AutoIt. I'm sorry that I can't figure out this tough solution. I HAVE searched through 14 pages of threads trying to find an answer. I have NO dang idea what the terms they use mean so it makes it hard. You guys didn't even give me ANYTHING..just tell me to "oh go read the help files". I did. Can I figure this out STILL? No.
  3. Well I got some help from with a little gui from Mobius: #ce ;CONST $s_Site = "http://maplestory.nexon.net/WZ_.ASPX?PART=/Main"; Enable this to use your site by removing the first ';' CONST $s_Site = @SCRIPTDIR &"\maplestory.html"; Disable this when you use your site variable. $oIE = ObjCreate("Shell.Explorer.2") $gui = GUICreate("MapleTrack",500,480) $ie_ctrl = GUICtrlCreateObj ($oIE, 0, 0 , 500, 400) $btn1 = GUICtrlCreateButton("Test 1",250,420,50,22) $btn2 = GUICtrlCreateButton("Test 2",300,420,50,22) GUISetState(@SW_SHOW) IF $Cmdline[0] THEN; If you pass a site as a cmdline variable then $oIE.navigate($Cmdline[1]) ELSE $oIE.navigate($s_Site); Else use the data stored in $s_Site ENDIF ; MAIN LOOP While 1 $msg = GUIGetMsg() SWITCH $msg CASE -3; X that closes dialog. EXIT CASE $btn1 _Button1() CASE $btn2 _Button2() ENDSWITCH WEnd ; USER DEFINED FUNCITONS FUNC _Button1() ; TEST CODE GOES HERE... MsgBox(0,"","Test Func1") ENDFUNC FUNC _Button2() ; TEST CODE GOES HERE... MsgBox(0,"","Test Func2") ENDFUNC It doesn't do much though. He helped a lot but I really have NO clue where to start with this!! It's SO frustrating getting no help because I can't do a simple thing with this, only the basics. He told me its very long to do and I really don't have time because I need this as soon as I can. In the future I will learn auto it if someone can help me with this now and get it out of the way. Can anyone add on to this? If you need to PM that is fine too. PS. - What if I did this so it would only try ONE password at a time, instead of three. Wouldn't this make it a lot easier?
  4. THanks a lot for the responses. I am trying my hardest. Mobius it is because I need it to remember my mule accounts where I A) bot on them and add reputation to my characters. Please, I just need a little help. I dunno where to start!! I'm still reading the examples but I'm clueless on this. EDIT: WOW!! I cant understand this stuff. It's so confusing. I cant UNDERSTAND the help file because I dont understand HALF of what they are even talking about! GAH Do you use something with _IEDocInsertText and _IEDocInsertText ?? ahhhhh
  5. Oh no, I am definitely reading the help files!! I am learning AutoIt, but I'm just saying I'm very bad with comps let alone PROGRAMMING!! So it would take me a long time and I would probably get to a point where I would get too mad and never figure it out. I just came here to see if anyone can do it for me or at least help me in any way!! I am learning from what you people bring to me also. Thank you and please someone help!!
  6. I hope someone helps me because it will take soo long for me to learn this. I'm basically a noob with anything at computers so it will be extremely tough!! hah. It's just helping me save tons of time, because I make mule accounts all the time for the game Please if anyone would help in any way it would be VERY appreciated!
  7. So here's the deal. I play a game called MapleStory and I made about 100 accounts a long time ago to add to my main character's fame (it's like reputation points, if you played you would know!) but forgot all the account's passwords. I have all the account names in a text file and it's listed like: "mymule0001" "mymule0002" etc.. (without the quotes of course). I was just wondering, is there anyway that a script could go on to the MapleStory website and type in every account and check say 3 passwords? (the website for the account login is http://passport.nexon.net/WZ.ASPX?PART=/Login). I dunno if this would be a simple script or something that would take long, but here's an example of something I am talking about: The script loads, types in mymule0001 for the account and the password "123456". If the password doesn't work, it tries a new password such as "password". If this doesn't work, it tries one last password. It then logs what accounts works and ones that failed. I dunno if this is a simple script that will just auto try this passwords or if it will be complicated but I'm looking for some help!! Let me know if you're confused about this and I'll try to explain a little more. Thank you.
  8. So do I just add BlockInput (1) then HotKeySet("{Insert}", "Stop")?? Im SO confused because I dont know how to merge these two together.................
  9. Well I dunno what that does..I just would like something where I can combine the two scripts and use the Insert button as a way to enable the mouse and keyboard again..
  10. Works great! Thanks for the help ResNullius!
  11. Well I'm completely new and it's almost finished and I just need to combine these files but when I try to add: HotKeySet("{Insert}", "Stop") It doesn't work and I dunno what the problem is...even if I add that line to Fred's keyboard script it doesn't work so I dunno how to stop it..
  12. Good use...? Wats that mean? Can anyone help me I need done soon.
×
×
  • Create New...