Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 19:04

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



login bot

Discussion on login bot within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
login bot

Hi,

Ich hab vollgendes problem,WEnn ich dieses script anwende

PHP Code:
#include<IE.au3>





$name=Inputbox("Benutzername","Bitte gib deinen Benutzernamen ein")
$passwort=Inputbox("Passwort","Bitte gib dein Passwort ein")

$oIE=_IECreate("http://www.z8games.com/")


$oForm _IEFormGetCollection($oIE,0)
    
$oUsername _IEFormElementGetObjByname($oForm,"tb_loginid")
    
$oPassword _IEFormElementGetObjByName($oForm,"tb_password")
    
_IEFormElementSetValue ($oUsername,$name)
    
_IEFormElementSetValue ($oPassword,$passwort)


_IEFormSubmit($oForm
(Quelle : )

log der mich net bei z8games ein, sobald ich daten änder und dasselbe mit Elitepvpers versuche klappt alles wunderbar.

Was ist daran falsch, es ist doch genauso wie im tut, oda hat z8games irgendson schutz??
maxi39 is offline  
Old 10/09/2010, 18:36   #2
 
h0fi00's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 74
Received Thanks: 19
du musst im Quellentext schauen vielleicht heissen dort die Kästchen anders.
h0fi00 is offline  
Old 10/09/2010, 18:47   #3
 
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
Quote:
Originally Posted by h0fi00 View Post
du musst im Quellentext schauen vielleicht heissen dort die Kästchen anders.
hab ich ja gemacht, guck ma first post:

Quote:
$oUsername = _IEFormElementGetObjByname($oForm,"tb_loginid")
$oPassword = _IEFormElementGetObjByName($oForm,"tb_password")
maxi39 is offline  
Old 10/09/2010, 20:37   #4
 
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
hab grad bemerkt das beim aus führen des scripts in der log das erscheint:

PHP Code:
--> IE.au3 V2.4-0 Warning from function _IEFormElementGetObjByName$_IEStatus_NoMatch
--> IE.au3 V2.4-0 Warning from function _IEFormElementGetObjByName$_IEStatus_NoMatch
--> IE.au3 V2.4-0 Error from function _IEFormElementSetValue$_IEStatus_InvalidDataType
--> IE.au3 V2.4-0 Error from function _IEFormElementSetValue$_IEStatus_InvalidDataType 
hat jmd n plan warum?
maxi39 is offline  
Old 10/10/2010, 18:55   #5
 
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
*PUSH* is doch wenn man wieder ein theard nach oben holt? oda

egal weis wirklich keiner ne antwort?
maxi39 is offline  
Old 10/10/2010, 21:35   #6
 
elite*gold: 0
Join Date: Jul 2009
Posts: 2,241
Received Thanks: 848
Du kannst auch einfachhalber ControlSend nutzen, bzw. ControlClick.
mipez is offline  
Old 10/11/2010, 01:13   #7
 
PenGuin :O's Avatar
 
elite*gold: 2
Join Date: Mar 2008
Posts: 1,778
Received Thanks: 1,222
Geht bei Internet Explorer nur schelcht mipez

@TE:
Die Errorangaben besagen, dass es das:

Code:
$oUsername = _IEFormElementGetObjByname($oForm,"tb_loginid")
$oPassword = _IEFormElementGetObjByName($oForm,"tb_password")
auf der Seite nicht gibt
PenGuin :O is offline  
Thanks
1 User
Old 10/11/2010, 10:44   #8
 
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
Quote:
Originally Posted by pinguin94 View Post
Geht bei Internet Explorer nur schelcht mipez

@TE:
Die Errorangaben besagen, dass es das:

Code:
$oUsername = _IEFormElementGetObjByname($oForm,"tb_loginid")
$oPassword = _IEFormElementGetObjByName($oForm,"tb_password")
auf der Seite nicht gibt
ah , danke also hab ichs einfach nur falsch angeben. thx
maxi39 is offline  
Old 10/11/2010, 13:16   #9
 
elite*gold: 0
Join Date: Jul 2009
Posts: 2,241
Received Thanks: 848
Lulz?
Geht sehr wohl oô
Aber scheint eh gelöst worden zu sein.
mipez is offline  
Old 10/11/2010, 13:33   #10
 
PenGuin :O's Avatar
 
elite*gold: 2
Join Date: Mar 2008
Posts: 1,778
Received Thanks: 1,222
Wenn bereits der Fokus auf dem passenden Input liegt geht ControlSend, ansonsten nicht, da du per ControlSend afaik keine Elemente einer Website ansteuern kannst.
PenGuin :O is offline  
Thanks
1 User
Old 10/12/2010, 00:00   #11
 
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
Quote:
Originally Posted by pinguin94 View Post
Geht bei Internet Explorer nur schelcht mipez

@TE:
Die Errorangaben besagen, dass es das:

Code:
$oUsername = _IEFormElementGetObjByname($oForm,"tb_loginid")
$oPassword = _IEFormElementGetObjByName($oForm,"tb_password")
auf der Seite nicht gibt
nur leider gibt es die zeichen auf z8games.com

guck ma das sagt mir der quell text
für die ID
Code:
<input name="tb_loginid" type="text" maxlength="30" size="12" id="tb_loginid" class="textbox">
für pw:

Code:
<input name="tb_password" type="password" maxlength="20" size="12" id="tb_password" class="textbox">
maxi39 is offline  
Old 10/12/2010, 07:12   #12
 
elite*gold: 0
Join Date: Jul 2010
Posts: 450
Received Thanks: 78
wenn wir schonmal bei dem Thema sind :
Code:
#include<IE.au3>





$name=Inputbox("Benutzername","Bitte gib deinen Benutzernamen ein")
$passwort=Inputbox("Passwort","Bitte gib dein Passwort ein")

$oIE=_IECreate("http://www.schuelervz.net/")


$oForm = _IEFormGetCollection($oIE,0)
    $oUsername = _IEFormElementGetObjByname($oForm,"E-Mail")
    $oPassword = _IEFormElementGetObjByName($oForm,"Passwort")
    _IEFormElementSetValue ($oUsername,$name)
    _IEFormElementSetValue ($oPassword,$passwort)


_IEFormSubmit($oForm)
Ich hab sein Script grad verändert Aber das geht net 0.o
Bitte um Hilfe.
eagly200 is offline  
Old 10/12/2010, 10:25   #13
 
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
Quote:
Originally Posted by eagly200 View Post
wenn wir schonmal bei dem Thema sind :
Code:
[PHP]#include<IE.au3>





$name=Inputbox("Benutzername","Bitte gib deinen Benutzernamen ein")
$passwort=Inputbox("Passwort","Bitte gib dein Passwort ein")

$oIE=_IECreate("http://www.schuelervz.net/")


$oForm = _IEFormGetCollection($oIE,0)
    $oUsername = _IEFormElementGetObjByname($oForm,"E-Mail")
    $oPassword = _IEFormElementGetObjByName($oForm,"Passwort")
    _IEFormElementSetValue ($oUsername,$name)
    _IEFormElementSetValue ($oPassword,$passwort)


_IEFormSubmit($oForm)
[/PHP]
PHP Code:
Ich hab sein Script grad verändert Aber das geht net 0.o
Bitte um Hilfe

PHP Code:

mit elitepvpers geht
:


#include<IE.au3>





$name=Inputbox("Benutzername","Bitte gib deinen Benutzernamen ein")
$passwort=Inputbox("Passwort","Bitte gib dein Passwort ein")

$oIE=_IECreate("http://www.elitepvpers.com/")


$oForm _IEFormGetCollection($oIE,0)
    
$oUsername _IEFormElementGetObjByname($oForm,"vb_login_username")
    
$oPassword _IEFormElementGetObjByName($oForm,"vb_login_password")
    
_IEFormElementSetValue ($oUsername,$name)
    
_IEFormElementSetValue ($oPassword,$passwort)


_IEFormSubmit($oForm
maxi39 is offline  
Old 10/12/2010, 13:07   #14
 
elite*gold: 0
Join Date: Jul 2010
Posts: 450
Received Thanks: 78
ja aber das Problem bei z.B. Schuelervz.net ist ,das man die eingqabe-Box für PW und E-mail erst anklicken muss, weil ansnsten da dann falscher BenutzerName oder PW steht.
eagly200 is offline  
Old 10/12/2010, 13:44   #15
 
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
Quote:
Originally Posted by eagly200 View Post
ja aber das Problem bei z.B. Schuelervz.net ist ,das man die eingqabe-Box für PW und E-mail erst anklicken muss, weil ansnsten da dann falscher BenutzerName oder PW steht.
häää ich frag mich was du hast das geht doch wunderbar, ok aba nur wenn man button klick einfügt ;D

Code:
#include<IE.au3>





$name=Inputbox("Benutzername","Bitte gib deinen Benutzernamen ein")
$passwort=Inputbox("Passwort","Bitte gib dein Passwort ein")

$oIE=_IECreate("http://www.schuelervz.net/")


$oForm = _IEFormGetCollection($oIE,0)
    $oUsername = _IEFormElementGetObjByname($oForm,"email")
    $oPassword = _IEFormElementGetObjByName($oForm,"password")
    $obutton = _IEFormElementGetObjByName($oform , "login")
	_IEFormElementSetValue ($oUsername,$name)
    _IEFormElementSetValue ($oPassword,$passwort)


_IEAction($obutton, "click")
maxi39 is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
Wie Speichert man die Login daten und macht nen Auto Login
07/15/2010 - Metin2 Private Server - 5 Replies
Souh ma wieder ne "Blöde Frage"... wie speichert man die login daten und macht nen autologin für den client wie es hier gemacht worden ist: http://www.elitepvpers.com/forum/metin2-pserver-dis cussions-questions/616285-my-new-client.html Über ne antwort würde ich mich freuen...
Hot ice Down oder login Server down!!Wenn ja sagt wolfi bescheid dass login down ist
01/01/2010 - Metin2 Private Server - 1 Replies
hallo kann jmnd bescheid sagen bitte
[REQUEST] Login server for CoemuV2 errors and login freeze.
07/21/2009 - CO2 Private Server - 6 Replies
http://i564.photobucket.com/albums/ss81/onlyme64/e rror2.jpg I get this error when i try to debug the login server. But strangley when i open the login server from bin/release it opens without any errors. When i open it from bin/debug it crashes. When i open the the good login server and game server and try to log in and i get a login freeze. Here is a screeny: http://i564.photobucket.com/albums/ss81/onlyme64/ error3.jpg What do i do? :(
Login-Error: Cannot login to Server
04/10/2009 - Aion - 8 Replies
It works fine but 1 hour ago gameguard was updated with ggscan.des or something like this and now i have every time following error while login: "Cannot connect to the authorization server" can someone help me?



All times are GMT +2. The time now is 19:04.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.