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?