Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 15:16

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

Advertisement



A Bot: From epvp users for epvp users

Discussion on A Bot: From epvp users for epvp users within the DarkOrbit forum part of the Browsergames category.

View Poll Results: Should we make a bot for us? (in teamwork)
Yes 178 78.41%
No 11 4.85%
without me 21 9.25%
possibly 17 7.49%
Voters: 227. You may not vote on this poll

Reply
 
Old 07/11/2012, 02:12   #121
 
elite*gold: 0
Join Date: May 2011
Posts: 22
Received Thanks: 8
my small contribution has been submitted DarkPlayer123
cranen is offline  
Old 07/11/2012, 03:30   #122
 
liberteboy's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 358
Received Thanks: 208
Trusted users only cause 80% of DO comes to this site
liberteboy is offline  
Old 07/11/2012, 10:13   #123
 
CNemessis*RO*'s Avatar
 
elite*gold: 0
Join Date: Jan 2012
Posts: 288
Received Thanks: 113
Quote:
Originally Posted by Vossik View Post
Yes you will release your own DO... Nice dream...


Its nice to say but if some Hacker will play your game he will make bot... You will release it for your own comunity but they will send it to their friends and someone of them will post it here...
1 - Is not a dream , is the TRUE. If you don't understand that , is your problem.

2 - Hmm , i have a private community. What say it that for you ? I don't need a lot of ppl in my community , scammers , hackers or something. Who want a account in my game , will receive from me a register link , 1 acc - 1 register link . If you will not be invited in this game , you can't play . YOu can't register

So , I don't think will be a hacker , or a bot.

Be well , I don't care what are you say now , but I'm working on my project about 6 months , alone . I don't care what are you say !

CNemeeeeee.
CNemessis*RO* is offline  
Old 07/11/2012, 13:58   #124
 
elite*gold: 464
Join Date: Dec 2010
Posts: 3,999
Received Thanks: 3,909
Quote:
Originally Posted by DarkPlayer123 View Post
I have the idea and i have codet the login in autoit:
Code:
#include <IE.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
#include <File.au3>
local $config, $conf
local $userdat, $user
local $passdat, $pass
local $weltdat, $welt
If FileExists("konfiguriert.txt") Then
   $config = FileOpen("konfiguriert.txt")
   If FileReadLine($config) == "true" Then
	  $userdat = FileOpen("username.txt")
      $user = FileReadLine($userdat)
      $passdat = FileOpen("passwort.txt")
	  $pass = FileReadLine($passdat)
	  $weltdat = FileOpen("weltkuerzel.txt")
      $welt = FileReadLine($weltdat)
      FileClose($config)
   EndIf
Else
   _FileCreate("username.txt")
   _FileCreate("passwort.txt")
   _FileCreate("weltkuerzel.txt")
   _FileCreate("konfiguriert.txt")
   FileSetAttrib("*.txt", "+H")
   $inputuser = InputBox( "Login Username", "Bitte gib deinen Username ein:")
   $inputpass = InputBox( "Login Passwort", "Bitte gib dein Passwort ein:")
   $inputwelt = InputBox( "Login Welt", "Bitte gib den Weltkürzel deiner Welt ein:")
   $userdat = FileOpen("username.txt", 1)
   $user = FileWriteLine($userdat, $inputuser)
   $passdat = FileOpen("passwort.txt", 1)
   $pass = FileWriteLine($passdat, $inputpass)
   $weltdat = FileOpen("weltkuerzel.txt", 1)
   $welt = FileWriteLine($weltdat, $inputwelt)
   $config = FileOpen("konfiguriert.txt",1)
   $conf = FileWriteLine($config, "true")
   FileClose($config)
EndIf
$Url = 'http://www.darkorbit.com/'
$User = $user
$Pwd = $pass
$test = _IEAutoLogin($Url, $User, $Pwd)
Func _IEAutoLogin($sUrl, $sUsername, $sPwd)
 ;funkey 09.09.09
 $oIE = _IECreate($sUrl)
 _IEErrorNotify(False)
 _IEErrorHandlerRegister()
 $oForms = _IEFormGetCollection($oIE)
 If @error Then
  Return SetError(1, _IEErrorHandlerDeRegister(), $oIE) ;'no forms --> no login'
 Else
  $Index = 0
  For $oForm In $oForms
   $oFormElements = _IEFormElementGetCollection($oForm)
   If IsObj($oFormElements) Then
    $IndexElement = 0
    For $oElement In $oFormElements
     If $oElement.Type = 'password' Then
      $oPwd = _IEFormElementGetObjByName($oForm, $oElement.Name)
      _IEFormElementSetValue($oPwd, $sPwd)
      For $i = $IndexElement - 1 To 0 Step -1
       $oUser = _IEFormElementGetCollection($oForm, $i)
       If $oUser.Type = 'text' Then
        _IEFormElementSetValue($oUser, $sUsername)
        ExitLoop
       EndIf
      Next
      If $oForm.action <> "0" And Not StringInStr($oForm.action, '.php') Then  ;submit
       _IEFormSubmit($oForm, 0)
       _IELoadWait($oIE)
Else  ;click
       For $i = $IndexElement + 1 To $IndexElement + 10 ;check the next 10 elements
        $oButton = _IEFormElementGetCollection($oForm, $i)
        If $oButton.Type = 'submit' Then
         _IEAction($oButton, "click")
         ExitLoop
        EndIf
       Next
      EndIf
      Return SetExtended(_IEErrorHandlerDeRegister(), $oIE)
     EndIf
     $IndexElement += 1
    Next
   EndIf
   $Index += 1
  Next
 EndIf
 Return SetError(2, _IEErrorHandlerDeRegister(), $oIE) ;no password-field found
EndFunc   ;==>_IEAutoLogin
Opt("WinTitleMatchMode",4)
$Titel = WinGetTitle("active")
WinSetState($Titel,"",@SW_MAXIMIZE)
MsgBox (0, "Login", "Bitte Welt auswählen!")
WinWaitActive("Darkorbit | Das Browsergames Adventure für Action im Hyperspace. - Windows Internet Explorer")
$urlbrowser = _IEPropertyGet( $Titel, "locationurl")
While True
   If $urlbrowser = "http://"$welt".darkorbit.bigpoint.com/indexInternal.es?action=internalStart" Then ;==> here is a error but it will fixed
	  Exit
   EndIf
WEnd
$game = _IECreate("http://"$welt".darkorbit.bigpoint.com/indexInternal.es?action=internalMapRevolution")
Do it with packets again and I think about to help you
Dr.Toni-old is offline  
Old 07/11/2012, 14:05   #125
 
elite*gold: 0
Join Date: Jul 2012
Posts: 67
Received Thanks: 23
Quote:
Originally Posted by Dr.Toni View Post
Do it with packets again and I think about to help you
Login to website with packets ? -,-
Miszczu. is offline  
Old 07/11/2012, 14:15   #126
 
elite*gold: 464
Join Date: Dec 2010
Posts: 3,999
Received Thanks: 3,909
Sure?! At the first part he wants to login in to the account.
Next part in to the space map
Dr.Toni-old is offline  
Old 07/11/2012, 16:36   #127
 
skulltoo's Avatar
 
elite*gold: 0
Join Date: Nov 2011
Posts: 144
Received Thanks: 44
What's this topic all about??

A new DO game just for insiders??? Then go to your own community and close this thread....
Or a new bot for this community on epvp?
skulltoo is offline  
Reply


Similar Threads Similar Threads
[How To] Buy Premium for $25 (PC) - verified by epvp users
06/13/2012 - Battlefield - 38 Replies
Vorweg möchte ich sagen, dass ich diesen Guide erstens nicht getestet habe und zweitens ihn auch nicht ausprobiert habe. Denke mir aber, dass es trotzdem funktioniert. Credits am Ende. ;) Deutsche Übersetzung weiter unten. Credits goes out to bobmoranex.
Free DMG Hack for Epvp users???
01/08/2012 - General Gaming Discussion - 1 Replies
Please we need a DMG hack for Fantasy Tennis! :confused::confused::confused::confused::confused:
All epvp users READ
10/15/2011 - SRO PServer Advertising - 0 Replies
Change all ur passwords as soon as possible For some reason i googled my yahoo address and look what i just found 10k HackForums Cracked Hashes (user,email,pass) Dump (03-09-2011) - Rapidshare Fileserve Filesonic Downloads I dunno how he got them but it's better if u change ur PW



All times are GMT +2. The time now is 15:16.


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.