Can someone post here the source code of Website login script of elitepvpers I will add it in my hack so it will be no leech
#include "WinHttp.au3"
Opt("MustDeclareVars", 1)
; Open needed handles
Local $hOpen = _WinHttpOpen()
Local $hConnect = _WinHttpConnect($hOpen, "elitepvpers.com")
; Specify the reguest:
Local $hRequest = _WinHttpOpenRequest($hConnect, Default, "en-us/library/aa384101(VS.85).aspx")
; Send request
_WinHttpSendRequest($hRequest)
; Wait for the response
_WinHttpReceiveResponse($hRequest)
Local $sHeader = _WinHttpQueryHeaders($hRequest) ; ...get full header
; Clean
_WinHttpCloseHandle($hRequest)
_WinHttpCloseHandle($hConnect)
_WinHttpCloseHandle($hOpen)
; Display retrieved header
MsgBox(0, "Header", $sHeader)
Ohhhhh SweeetQuote:
Something like this ?
#include<IE.au3>
;Get Username
$1=InputBox("Username","Type in your Username:")
;If you dont set $1
If @error Then
MsgBox(16,"Error","No username !")
Else
;Get Password
$2=InputBox("Password","Type in your Password:","","•")
;If you dont set $2
If @error Then
MsgBox(16,"Error","No password !")
Else
;Open Browser and wait until Browser loaded
$IE=_IECreate()
_IELoadWait($IE)
;Navigate to "http://www.elitepvpers.com/forum/login.php?do=login" and wait until Browser loaded
_IENavigate($IE,"http://www.elitepvpers.com/forum/login.php?do=login")
_IELoadWait($IE)
;Get Username Input and Passwort Input
$username=_IEGetObjById($IE,"navbar_username")
$password=_IEGetObjById($IE,"navbar_password")
;Tick Stay Logged in Checkbox (Usually it is ticked, so if you dont want to stay logged in, you have to do this step)
$cookie=_IEGetObjById($IE,"cb_cookieuser_navbar")
_IEAction($cookie,"click")
;Set Inputs
_IEFormElementSetValue($username,$1)
_IEFormElementSetValue($password,$2)
EndIf
EndIf