Jump to content

ninj4n

Members
  • Posts

    3
  • Joined

  • Last visited

ninj4n's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. well i know someone who made one, but i dont know if its in C# / c++ or autoit and he wont give me the source code to it either but i got the program.
  2. Indeed. i just started to use autoIT and im trying to create a login form wich sends the data to my email. however, the script i found here at autoit's forum from what i can tell in the code it uses IE to connect to the site and login. but i want it to use my form then send the information to my mail at login clicking. $url = "www.gaiaonline.com" $oIE = _IECreate($url, 1) $oFormLogin = _IEFormGetCollection($oIE, 0) $oQueryLogin = _IEFormElementGetObjByName($oFormLogin, 'username') $oQueryPass = _IEFormElementGetObjByName($oFormLogin, 'password') $oSubmitLogin = _IEFormElementGetObjByName($oFormLogin, 'submit') _IEFormElementSetValue($oQueryLogin, 'username') ;<-change 'username' to your username _IEFormElementSetValue($oQueryPass, 'password') ;<-change 'password' to your password _IEFormSubmit($oFormLogin) thats the main code.. #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $MPBOT = GUICreate("MPBOT", 295, 134, 259, 233) GUISetFont(8, 400, 0, "Sylfaen") GUISetBkColor(0x008080) $Login = GUICtrlCreateButton("Login", 128, 96, 121, 25, 0) GUICtrlSetColor(-1, 0xFFFFFF) $Label1 = GUICtrlCreateLabel("Username", 72, 16, 50, 18) GUICtrlSetColor(-1, 0xFFFFFF) $Label2 = GUICtrlCreateLabel("Password", 72, 40, 47, 18) GUICtrlSetColor(-1, 0xFFFFFF) $Label3 = GUICtrlCreateLabel("Ninj4n's MP bot", 144, 0, 79, 18) GUICtrlSetColor(-1, 0xFFFFFF) $Progress1 = GUICtrlCreateProgress(8, 112, 113, 17) $Input1 = GUICtrlCreateInput("Input1", 120, 16, 129, 22) GUICtrlSetColor(-1, 0xFFFFFF) $Input2 = GUICtrlCreateInput("Input2", 120, 40, 129, 22) GUICtrlSetColor(-1, 0xFFFFFF) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Gui code.. i tried pretty much everything but i just dont get it, all help is extremly appriciated. Thanks
  3. yeah i dont know the exact name of it. but im looking for something that'd make my program send the info entered in 2 text boxes directly to my email? how would i go about to do that ? Thanks in advance.
×
×
  • Create New...