|
You last visited: Today at 02:06
Advertisement
[Release] Simple Launcher Source
Discussion on [Release] Simple Launcher Source within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.
10/18/2014, 11:48
|
#31
|
elite*gold: 0
Join Date: Dec 2011
Posts: 33
Received Thanks: 1
|
 sehr gute Arbeit
und so schnell  DANKE ^-^
|
|
|
10/18/2014, 22:55
|
#32
|
elite*gold: 0
Join Date: Aug 2013
Posts: 141
Received Thanks: 27
|
how do you add "remember login"
|
|
|
10/19/2014, 11:31
|
#33
|
elite*gold: 0
Join Date: Oct 2013
Posts: 1,372
Received Thanks: 1,361
|
Quote:
Originally Posted by bboodoo
how do you add "remember login"
|
You can't add remember login because in the original Launcher there isn't a "remember login" too.
|
|
|
10/19/2014, 11:38
|
#34
|
elite*gold: 0
Join Date: May 2010
Posts: 498
Received Thanks: 11,286
|
remember login
PHP Code:
#RequireAdmin #include <IE.au3> #include <ButtonConstants.au3> #include <ComboConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <GUIListBox.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <GUIListBox.au3>
#include <GUIConstants.au3>
Local $aLinks[1], $iInd, $aLinks[2]
$sHtml = FileRead('C:\s4.ini') $log = 'C:\s4.ini'
$hGUI = GUICreate("Form1", 187, 197, 192, 124) $Input1 = GUICtrlCreateInput("", 8, 80, 121, 21) $Label1 = GUICtrlCreateLabel("Login", 136, 80, 30, 17) $Input2 = GUICtrlCreateInput("", 8, 112, 121, 21) $Label2 = GUICtrlCreateLabel("Password", 136, 112, 50, 17) __SetPasswordChar($hGUI,GUICtrlGetHandle($Input2),-1,9679) $Input3 = GUICtrlCreateInput("", 8, 48, 121, 21) $Label3 = GUICtrlCreateLabel("Inform", 136, 48, 33, 17) $Checkbox1 = GUICtrlCreateCheckbox("Password", 8, 144, 97, 17) $iCombo = GUICtrlCreateCombo("", 8, 8, 145, 25) $Add = GUICtrlCreateButton("ADD",8, 168, 75, 25)
$vTmp = StringRegExp($sHtml, '<div class=><h1><a href=(.*?)>(.*?)</a>(.*?)</h1>', 3) ReDim $aLinks[UBound($vTmp) / 3][3] For $i = 0 To UBound($vTmp) - 1 Step 3 $aLinks[$iInd][0] = $vTmp[$i] $aLinks[$iInd][1] = $vTmp[$i + 1] $aLinks[$iInd][2] = $vTmp[$i + 2] GUICtrlSetData($iCombo, $aLinks[$iInd][1], $aLinks[$iInd][1]) $iInd += 1 Next $vTmp = UBound($aLinks) - 1 $iInd = 0
GUISetState(@SW_SHOW, $hGUI) #EndRegion ### END Koda GUI section ###
While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $Checkbox1 If BitAND(GUICtrlRead($Checkbox1),$gui_checked)=$gui_checked Then __SetPasswordChar($hGUI,GUICtrlGetHandle($Input2),-1,0) ElseIf BitAND(GUICtrlRead($Checkbox1),$gui_unchecked)=$gui_unchecked Then __SetPasswordChar($hGUI,GUICtrlGetHandle($Input2),-1,9679) EndIf Case $iCombo $iInd = GUICtrlSendMsg($iCombo, $CB_GETCURSEL, 0, 0) Switch $iInd Case 0 To $vTmp $Login = $aLinks[$iInd][1] $Pass = $aLinks[$iInd][0] GUICtrlSetData($Input1, $aLinks[$iInd][1]) GUICtrlSetData($Input2, $aLinks[$iInd][0]) GUICtrlSetData($Input3, $aLinks[$iInd][2])
If Not IsDeclared("iMsgBoxAnswer") Then Dim $iMsgBoxAnswer $iMsgBoxAnswer = MsgBox(0x4,"S4 Client"," Run S4 Client?" & @CRLF) Select Case $iMsgBoxAnswer = 6;Yes start() Case $iMsgBoxAnswer = 7;No
EndSelect
Case Else MsgBox(16, 'Error', 'Error') EndSwitch
Case $Add add()
EndSwitch WEnd
Func add() $hForm2 = GUICreate("Form2", 220, 135, -1, -1) $nLogin2 = GUICtrlCreateInput("Login", 10, 10) $nPass2 = GUICtrlCreateInput("Pass", 10, 40,0,0, $ES_PASSWORD) $nInfo = GUICtrlCreateInput("Inform", 10, 70) $nAdd = GUICtrlCreateButton("Add", 10, 100, 200, 25) GUISetState() While 1 Switch GUIGetMsg() Case $nAdd FileWrite($log,@CRLF & "<div class=><h1><a href=" & GUICtrlRead($nPass2) & ">" & GUICtrlRead($nLogin2) & "</a>" & GUICtrlRead($nInfo) & "</h1>") $sHtml = FileRead('C:\s4.ini') $vTmp = StringRegExp($sHtml, '<div class=><h1><a href=(.*?)>(.*?)</a>(.*?)</h1>', 3) ReDim $aLinks[UBound($vTmp) / 3][3] For $i = 0 To UBound($vTmp) - 1 Step 3 $aLinks[$iInd][0] = $vTmp[$i] $aLinks[$iInd][1] = $vTmp[$i + 1] $aLinks[$iInd][2] = $vTmp[$i + 2] GUICtrlSetData($iCombo, $aLinks[$iInd][1], $aLinks[$iInd][1]) $iInd += 1 Next $vTmp = UBound($aLinks) - 1 $iInd = 0 Case -3 ExitLoop EndSwitch WEnd GUIDelete($hForm2) EndFunc
Func start() $oIE = _IECreate ("https://www.aeriagames.com/dialog/oauth?response_type=code&client_id=a354ab1d0894ba2ecaac12bf5ad86fd905373a07f&state=36424314&redirect_uri=https://www.aeriagames.com/content_only_launcher&theme=api_ignite")
$oForm = _IEFormGetCollection($oIE,0) $oLogin = _IEFormElementGetObjByName($oForm,"edit[id]") $oPass = _IEFormElementGetObjByName($oForm,"edit[pass]") _IEFormElementSetValue($oLogin,$Login) _IEFormElementSetValue($oPass,$Pass) _IEFormSubmit($oForm)
$sUrl = _IEPropertyGet( $oIE, "locationurl" ) $str=StringRegExpReplace($sUrl,'.*code=','\1') run("S4Client.exe -rc:eu -lac:ger -auth_server_ip:83.220.134.84 -aeria_acc_code:" & $str)
ProcessClose("iexplore.exe") EndFunc
Func __SetPasswordChar($hWnd,$hCtrl,$iToggleState,$sPassChar) If Not IsHWnd($hWnd) Then $hWnd = WinGetHandle($hWnd) EndIf If Not IsHWnd($hCtrl) Then $hCtrl = ControlGetHandle($hWnd, "", $hCtrl) EndIf Local Const $EM_SETPASSWORDCHAR = 0xCC Local Const $EM_GETPASSWORDCHAR = 0xD2 Local $iGet_Pass_Char, $iSet_Pass_Char, $iDef_Pass_Char = 9679 Local $aRet = DllCall("user32.dll", "long", "SendMessageW", "hwnd", $hCtrl, "int", $EM_GETPASSWORDCHAR, "int", 0, "int", 0) If Not @error And $aRet[0] Then $iGet_Pass_Char = $aRet[0] EndIf If $sPassChar = -1 Then $iSet_Pass_Char = $iGet_Pass_Char Else If StringLen($sPassChar) = 1 And IsString($sPassChar) Then $iSet_Pass_Char = Asc($sPassChar) Else $iSet_Pass_Char = Number($sPassChar) EndIf $iDef_Pass_Char = $iSet_Pass_Char EndIf If $iToggleState = -1 Then If $iGet_Pass_Char <> 0 Then $iSet_Pass_Char = 0 Else $iSet_Pass_Char = $iDef_Pass_Char EndIf ElseIf $iToggleState = 0 Then $iSet_Pass_Char = 0 ElseIf $iToggleState = 1 Then $iSet_Pass_Char = $iDef_Pass_Char EndIf DllCall("user32.dll", "none", "SendMessageW", "hwnd", $hCtrl, "int", $EM_SETPASSWORDCHAR, "int", $iSet_Pass_Char, "int", 0) DllCall("user32.dll", "none", "InvalidateRect", "hwnd", $hCtrl, "ptr", 0, "int", 1) EndFunc
|
|
|
10/19/2014, 11:42
|
#35
|
elite*gold: 0
Join Date: Oct 2013
Posts: 1,372
Received Thanks: 1,361
|
Quote:
Originally Posted by kiler1997
remember login
PHP Code:
#RequireAdmin
#include <IE.au3>
#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <GUIListBox.au3>
#include <GUIConstants.au3>
Local $aLinks[1], $iInd, $aLinks[2]
$sHtml = FileRead('C:\s4.ini')
$log = 'C:\s4.ini'
$hGUI = GUICreate("Form1", 187, 197, 192, 124)
$Input1 = GUICtrlCreateInput("", 8, 80, 121, 21)
$Label1 = GUICtrlCreateLabel("Login", 136, 80, 30, 17)
$Input2 = GUICtrlCreateInput("", 8, 112, 121, 21)
$Label2 = GUICtrlCreateLabel("Password", 136, 112, 50, 17)
__SetPasswordChar($hGUI,GUICtrlGetHandle($Input2),-1,9679)
$Input3 = GUICtrlCreateInput("", 8, 48, 121, 21)
$Label3 = GUICtrlCreateLabel("Inform", 136, 48, 33, 17)
$Checkbox1 = GUICtrlCreateCheckbox("Password", 8, 144, 97, 17)
$iCombo = GUICtrlCreateCombo("", 8, 8, 145, 25)
$Add = GUICtrlCreateButton("ADD",8, 168, 75, 25)
$vTmp = StringRegExp($sHtml, '<div class=><h1><a href=(.*?)>(.*?)</a>(.*?)</h1>', 3)
ReDim $aLinks[UBound($vTmp) / 3][3]
For $i = 0 To UBound($vTmp) - 1 Step 3
$aLinks[$iInd][0] = $vTmp[$i]
$aLinks[$iInd][1] = $vTmp[$i + 1]
$aLinks[$iInd][2] = $vTmp[$i + 2]
GUICtrlSetData($iCombo, $aLinks[$iInd][1], $aLinks[$iInd][1])
$iInd += 1
Next
$vTmp = UBound($aLinks) - 1
$iInd = 0
GUISetState(@SW_SHOW, $hGUI)
#EndRegion ### END Koda GUI section ###
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit
Case $Checkbox1
If BitAND(GUICtrlRead($Checkbox1),$gui_checked)=$gui_checked Then
__SetPasswordChar($hGUI,GUICtrlGetHandle($Input2),-1,0)
ElseIf BitAND(GUICtrlRead($Checkbox1),$gui_unchecked)=$gui_unchecked Then
__SetPasswordChar($hGUI,GUICtrlGetHandle($Input2),-1,9679)
EndIf
Case $iCombo
$iInd = GUICtrlSendMsg($iCombo, $CB_GETCURSEL, 0, 0)
Switch $iInd
Case 0 To $vTmp
$Login = $aLinks[$iInd][1]
$Pass = $aLinks[$iInd][0]
GUICtrlSetData($Input1, $aLinks[$iInd][1])
GUICtrlSetData($Input2, $aLinks[$iInd][0])
GUICtrlSetData($Input3, $aLinks[$iInd][2])
If Not IsDeclared("iMsgBoxAnswer") Then Dim $iMsgBoxAnswer
$iMsgBoxAnswer = MsgBox(0x4,"S4 Client"," Run S4 Client?" & @CRLF)
Select
Case $iMsgBoxAnswer = 6;Yes
start()
Case $iMsgBoxAnswer = 7;No
EndSelect
Case Else
MsgBox(16, 'Error', 'Error')
EndSwitch
Case $Add
add()
EndSwitch
WEnd
Func add()
$hForm2 = GUICreate("Form2", 220, 135, -1, -1)
$nLogin2 = GUICtrlCreateInput("Login", 10, 10)
$nPass2 = GUICtrlCreateInput("Pass", 10, 40,0,0, $ES_PASSWORD)
$nInfo = GUICtrlCreateInput("Inform", 10, 70)
$nAdd = GUICtrlCreateButton("Add", 10, 100, 200, 25)
GUISetState()
While 1
Switch GUIGetMsg()
Case $nAdd
FileWrite($log,@CRLF & "<div class=><h1><a href=" & GUICtrlRead($nPass2) & ">" & GUICtrlRead($nLogin2) & "</a>" & GUICtrlRead($nInfo) & "</h1>")
$sHtml = FileRead('C:\s4.ini')
$vTmp = StringRegExp($sHtml, '<div class=><h1><a href=(.*?)>(.*?)</a>(.*?)</h1>', 3)
ReDim $aLinks[UBound($vTmp) / 3][3]
For $i = 0 To UBound($vTmp) - 1 Step 3
$aLinks[$iInd][0] = $vTmp[$i]
$aLinks[$iInd][1] = $vTmp[$i + 1]
$aLinks[$iInd][2] = $vTmp[$i + 2]
GUICtrlSetData($iCombo, $aLinks[$iInd][1], $aLinks[$iInd][1])
$iInd += 1
Next
$vTmp = UBound($aLinks) - 1
$iInd = 0
Case -3
ExitLoop
EndSwitch
WEnd
GUIDelete($hForm2)
EndFunc
Func start()
$oIE = _IECreate ("https://www.aeriagames.com/dialog/oauth?response_type=code&client_id=a354ab1d0894ba2ecaac12bf5ad86fd905373a07f&state=36424314&redirect_uri=https://www.aeriagames.com/content_only_launcher&theme=api_ignite")
$oForm = _IEFormGetCollection($oIE,0)
$oLogin = _IEFormElementGetObjByName($oForm,"edit[id]")
$oPass = _IEFormElementGetObjByName($oForm,"edit[pass]")
_IEFormElementSetValue($oLogin,$Login)
_IEFormElementSetValue($oPass,$Pass)
_IEFormSubmit($oForm)
$sUrl = _IEPropertyGet( $oIE, "locationurl" )
$str=StringRegExpReplace($sUrl,'.*code=','\1')
run("S4Client.exe -rc:eu -lac:ger -auth_server_ip:83.220.134.84 -aeria_acc_code:" & $str)
ProcessClose("iexplore.exe")
EndFunc
Func __SetPasswordChar($hWnd,$hCtrl,$iToggleState,$sPassChar)
If Not IsHWnd($hWnd) Then
$hWnd = WinGetHandle($hWnd)
EndIf
If Not IsHWnd($hCtrl) Then
$hCtrl = ControlGetHandle($hWnd, "", $hCtrl)
EndIf
Local Const $EM_SETPASSWORDCHAR = 0xCC
Local Const $EM_GETPASSWORDCHAR = 0xD2
Local $iGet_Pass_Char, $iSet_Pass_Char, $iDef_Pass_Char = 9679
Local $aRet = DllCall("user32.dll", "long", "SendMessageW", "hwnd", $hCtrl, "int", $EM_GETPASSWORDCHAR, "int", 0, "int", 0)
If Not @error And $aRet[0] Then
$iGet_Pass_Char = $aRet[0]
EndIf
If $sPassChar = -1 Then
$iSet_Pass_Char = $iGet_Pass_Char
Else
If StringLen($sPassChar) = 1 And IsString($sPassChar) Then
$iSet_Pass_Char = Asc($sPassChar)
Else
$iSet_Pass_Char = Number($sPassChar)
EndIf
$iDef_Pass_Char = $iSet_Pass_Char
EndIf
If $iToggleState = -1 Then
If $iGet_Pass_Char <> 0 Then
$iSet_Pass_Char = 0
Else
$iSet_Pass_Char = $iDef_Pass_Char
EndIf
ElseIf $iToggleState = 0 Then
$iSet_Pass_Char = 0
ElseIf $iToggleState = 1 Then
$iSet_Pass_Char = $iDef_Pass_Char
EndIf
DllCall("user32.dll", "none", "SendMessageW", "hwnd", $hCtrl, "int", $EM_SETPASSWORDCHAR, "int", $iSet_Pass_Char, "int", 0)
DllCall("user32.dll", "none", "InvalidateRect", "hwnd", $hCtrl, "ptr", 0, "int", 1)
EndFunc
|
Thanks a lot  I thought it wasnt possible to remember login
|
|
|
10/19/2014, 11:46
|
#36
|
elite*gold: 0
Join Date: May 2010
Posts: 498
Received Thanks: 11,286
|
Quote:
Originally Posted by Pr3xx0r
Thanks a lot  I thought it wasnt possible to remember login 
|
it's not as difficult as it seems :3
|
|
|
11/20/2014, 18:51
|
#37
|
elite*gold: 0
Join Date: Dec 2013
Posts: 242
Received Thanks: 144
|
Still working :3
#Push
|
|
|
11/22/2014, 12:02
|
#38
|
elite*gold: 0
Join Date: May 2014
Posts: 143
Received Thanks: 61
|
Can you post english one please?
|
|
|
11/22/2014, 12:27
|
#39
|
elite*gold: 10
Join Date: Dec 2013
Posts: 1,224
Received Thanks: 3,094
|
Quote:
Originally Posted by UserxD
Can you post english one please?
|
PHP Code:
#RequireAdmin
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <IE.au3>
If Not FileExists(@scriptdir & "/S4Client.exe") Then
MsgBox(48, "Error", "Missing S4Client.exe!")
Exit
EndIf
$oIE = _IECreateEmbedded()
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("S4League Launcher", 288, 115, 376, 131)
GUICtrlCreateObj($oIE, 0, 0, 1, 1)
$Label1 = GUICtrlCreateLabel("Username:", 16, 16, 55, 17)
$Label2 = GUICtrlCreateLabel("Password:", 16, 48, 53, 17)
$fUsername = GUICtrlCreateInput("", 72, 16, 201, 21)
$fPassword = GUICtrlCreateInput("", 72, 48, 201, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_PASSWORD))
$fLoginbutton = GUICtrlCreateButton("Login", 8, 80, 267, 25, $BS_DEFPUSHBUTTON)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
If FileExists(@scriptdir&"/logindata.ini") Then
GUICtrlSetData($fUsername, IniRead(@scriptdir&"/logindata.ini", "Logindata", "username", ""))
GUICtrlSetData($fPassword, IniRead(@scriptdir&"/logindata.ini", "Logindata", "password", ""))
EndIf
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $fLoginbutton
LoginProcess(GUICtrlRead($fUsername), GUICtrlRead($fPassword))
EndSwitch
WEnd
Func LoginProcess($user, $pass)
IniWrite(@scriptdir&"/logindata.ini", "Logindata", "username", $user)
IniWrite(@scriptdir&"/logindata.ini", "Logindata", "password", $pass)
$sURL = "https://www.aeriagames.com/dialog/oauth?response_type=code&client_id=a354ab1d0894ba2ecaac12bf5ad86fd905373a07f&redirect_uri=https://www.aeriagames.com/content_only_launcher&theme=api_ignite"
_IENavigate($oIE, $sURL)
$oForm = _IEFormGetCollection($oIE, 0)
$oUsername = _IEFormElementGetObjByName($oForm, "edit[id]")
$oPassword = _IEFormElementGetObjByName($oForm, "edit[pass]")
_IEFormElementSetValue($oUsername, $user)
_IEFormElementSetValue($oPassword, $pass)
_IEFormSubmit($oForm, 0)
_IELoadWait($oIE)
If _IEPropertyGet($oIE, "innertext") == "." Then
$code = _IEPropertyGet($oIE, "locationurl")
$code = StringTrimLeft($code, StringInStr($code, "code=")+4)
Run('"S4Client.exe" -rc:eu -lac:eng -auth_server_ip:83.220.134.84 -aeria_acc_code:'&$code)
Exit
Else
MsgBox(48, "Error", "Wrong Username or Password!")
EndIf
EndFunc
So hard to change 3 letters?
|
|
|
11/24/2014, 18:35
|
#40
|
elite*gold: 0
Join Date: May 2014
Posts: 143
Received Thanks: 61
|
How i can make it english ?
|
|
|
11/24/2014, 18:43
|
#41
|
elite*gold: 10
Join Date: Dec 2013
Posts: 1,224
Received Thanks: 3,094
|
Quote:
Originally Posted by UserxD
How i can make it english ?
|
Quote:
Originally Posted by UserxD
Can you post english one please?
|
Quote:
Originally Posted by ►D3v1n3r
PHP Code:
#RequireAdmin
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <IE.au3>
If Not FileExists(@scriptdir & "/S4Client.exe") Then
MsgBox(48, "Error", "Missing S4Client.exe!")
Exit
EndIf
$oIE = _IECreateEmbedded()
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("S4League Launcher", 288, 115, 376, 131)
GUICtrlCreateObj($oIE, 0, 0, 1, 1)
$Label1 = GUICtrlCreateLabel("Username:", 16, 16, 55, 17)
$Label2 = GUICtrlCreateLabel("Password:", 16, 48, 53, 17)
$fUsername = GUICtrlCreateInput("", 72, 16, 201, 21)
$fPassword = GUICtrlCreateInput("", 72, 48, 201, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_PASSWORD))
$fLoginbutton = GUICtrlCreateButton("Login", 8, 80, 267, 25, $BS_DEFPUSHBUTTON)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
If FileExists(@scriptdir&"/logindata.ini") Then
GUICtrlSetData($fUsername, IniRead(@scriptdir&"/logindata.ini", "Logindata", "username", ""))
GUICtrlSetData($fPassword, IniRead(@scriptdir&"/logindata.ini", "Logindata", "password", ""))
EndIf
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $fLoginbutton
LoginProcess(GUICtrlRead($fUsername), GUICtrlRead($fPassword))
EndSwitch
WEnd
Func LoginProcess($user, $pass)
IniWrite(@scriptdir&"/logindata.ini", "Logindata", "username", $user)
IniWrite(@scriptdir&"/logindata.ini", "Logindata", "password", $pass)
$sURL = "https://www.aeriagames.com/dialog/oauth?response_type=code&client_id=a354ab1d0894ba2ecaac12bf5ad86fd905373a07f&redirect_uri=https://www.aeriagames.com/content_only_launcher&theme=api_ignite"
_IENavigate($oIE, $sURL)
$oForm = _IEFormGetCollection($oIE, 0)
$oUsername = _IEFormElementGetObjByName($oForm, "edit[id]")
$oPassword = _IEFormElementGetObjByName($oForm, "edit[pass]")
_IEFormElementSetValue($oUsername, $user)
_IEFormElementSetValue($oPassword, $pass)
_IEFormSubmit($oForm, 0)
_IELoadWait($oIE)
If _IEPropertyGet($oIE, "innertext") == "." Then
$code = _IEPropertyGet($oIE, "locationurl")
$code = StringTrimLeft($code, StringInStr($code, "code=")+4)
Run('"S4Client.exe" -rc:eu -lac:eng -auth_server_ip:83.220.134.84 -aeria_acc_code:'&$code)
Exit
Else
MsgBox(48, "Error", "Wrong Username or Password!")
EndIf
EndFunc
So hard to change 3 letters?
|
So hard to read the Post before? Nub.
|
|
|
11/24/2014, 19:23
|
#42
|
elite*gold: 0
Join Date: May 2014
Posts: 143
Received Thanks: 61
|
Man its not work
Its tell me auth.. error
after waiting 561111111145h
Oh its works but after so much time
Why its take 5min to open in english one and its open fast in the german one ?
|
|
|
12/05/2014, 20:51
|
#43
|
elite*gold: 0
Join Date: Oct 2014
Posts: 51
Received Thanks: 51
|
Ich versuchs grad in VB.net doch irgendwie will es mit dem Parameter nicht so richtig,
Code:
'Prüft ob sich der Jenige auf der Loginseite befindet.
If AutoLogin.Url.ToString.Contains("https://www.aeriagames.com/dialog/oauth?response_type=code&client_id=") Then
Me.Text = "S4 League Autologin - Nicht angemeldet!"
'Prüft ob sich der Jenige eingeloggt ist.
ElseIf AutoLogin.Url.ToString.Contains("https://www.aeriagames.com/content_only_launcher?state=&code=") Then
'Der Code wird ausgelesen
Code = AutoLogin.Url.ToString
Code = Code.Replace("https://www.aeriagames.com/content_only_launcher?state=&code=", "")
Me.Text = "S4 League Autologin - Erfolgreich eingeloggt!"
MsgBox("Der Code wurde erfolgreich ausgelesen: " & Code, MsgBoxStyle.Information, "Auslesen des Codes erfolgreich!")
Dim myPath As String = "C:\AeriaGames\S4League\S4Client.exe"
Dim pr As New Process
pr.StartInfo.FileName = myPath
pr.StartInfo.Arguments = "-rc:eu -lac:ger -auth_server_ip:83.220.134.84 -aeria_acc_code:" & Code
pr.Start()
|
|
|
12/26/2014, 06:58
|
#44
|
elite*gold: 0
Join Date: Sep 2014
Posts: 12
Received Thanks: 13
|
it doesnt work in vpn
i use vpn and it doesnt work , what should i do ?
|
|
|
12/26/2014, 14:52
|
#45
|
elite*gold: 0
Join Date: Dec 2014
Posts: 1
Received Thanks: 0
|
Könnte jemand ein Vidoe Davon machen
da ich weniger Erfahrung habe wie das Funktioniert....
Könnte jemand ein Vidoe machen da ich eher weniger Erfahrung habe wie das Funktioniert
|
|
|
 |
|
Similar Threads
|
[Release - Open-Source] Launcher + Zip Updater.
12/03/2024 - Aion Private Server - 38 Replies
Hello Aion world http://cdn.elitepvpers.org/forum/images/smilies/bi ggrin.gif,
I've decided to move to Aion development, so I can't just enter the forums with just saying "Hello world!".
so, here's a little open source release, its a launcher with bin32 updater (using zip files as patch files).
Features:
• Zip updater from live server.
• Server status check.
|
[RELEASE] Launcher/Updater [Source]
07/12/2022 - Rappelz Private Server - 96 Replies
Hello everyone...
For those of you that don't know me, and those that do and don't recognize the username... I go by Montesboogey, previously on Epvp as Urusendayo. I've lost my account info and unfortunately had to re-register. I've been away for quite some time as I've been caring for my brother in the cancer hospital. (Still fighting strong, the brave bastard) Anyway...
I've done a bit of development recently and since I cannot currently afford to have my server running again any time...
|
[Release] Open source Launcher v1
04/09/2020 - EO PServer Guides & Releases - 22 Replies
Devil's launcher open source project
°Features :
Server status picture based.
News .
Costom GUI.
Rollover pictures.
Special Design.
|
[Release] GTA SA:MP Launcher (+Source)
03/27/2016 - Grand Theft Auto - 14 Replies
Gute Tag liebe Community,
da einige Server ja nun einen eigenen Clienten/Launcher haben, dachte ich mir, tue ich das auch mal.
Also ich habe einen kleinen & relativ (vomSource) gehaltenen simplen Launcher gemacht.
Ich weiß es ist sonderlich nichts besonderes, aber wen ich's schon habe kann ichs ja auch teilen.
Kurze Feature Liste:
-Eigenes Form Design
-Hübsches Background Image
|
[Release]X,Y,Z Pointer + Simple Source
01/12/2012 - S4 League Hacks, Bots, Cheats & Exploits - 11 Replies
So.
Ich habe mir den Bypass von Mr.Se!man gekauft, und verschiedene sachen gesucht.
Und dachte mir, ich release mal die Pointer für die X,Y, und Z koordinaten.
BaseAddress: 0127344c
Offset1: 444
Offset2: 58
Offset3: E8
|
All times are GMT +1. The time now is 02:06.
|
|