Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 23:35

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

Advertisement



Playing with development bot

Discussion on Playing with development bot within the DarkOrbit forum part of the Browsergames category.

Reply
 
Old   #1
 
pippop's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 73
Received Thanks: 11
Playing with development bot

Hi folks,
i'm trying to explore the bot world and now i can login in dakorbit page. There i can do a lot of useful things, like bidding, upgrade skylab, sell ammo and so on... Now i try to log in map with my bot... and i have a question:
How i can access to the map? I must log in darkorbit page first and then log in to the map? there is a way to log directly in map?

Thank you in advance!
pippop is offline  
Old 05/02/2012, 20:20   #2
 
myron836's Avatar
 
elite*gold: 0
Join Date: Jun 2011
Posts: 606
Received Thanks: 140
i guess you can bypass the backpage... but i dunno how to *trollface*
myron836 is offline  
Old 05/02/2012, 21:42   #3
 
pippop's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 73
Received Thanks: 11
The focus of the question is if there is a smarter way to log in map
pippop is offline  
Old 05/02/2012, 23:06   #4
 
mustangv7's Avatar
 
elite*gold: 50
Join Date: Aug 2011
Posts: 630
Received Thanks: 340
With the SID you can login directly in the spacemap
mustangv7 is offline  
Old 05/03/2012, 01:21   #5
 
elite*gold: 0
Join Date: Mar 2012
Posts: 226
Received Thanks: 49
Quote:
Originally Posted by mustangv7 View Post
With the SID you can login directly in the spacemap
I need this, say the solution please

Sorry for my bad english, i'm french
maxdu45000 is offline  
Old 05/03/2012, 03:16   #6
 
morningstar261's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 71
Received Thanks: 135
To log directly into the space map use the following link in your program(if you're codding in C/C++ i can give you the exact code for this too):

Code:
http://{0}.darkorbit.bigpoint.com/indexInternal.es?dosid={1}&action=internalMapRevolution

{0}=serverID (i.e. us1, us1, ect...)
{1}=SessionID;
This will take you straight into a webpage and load the map.
But if you are trying to create a artificial intellegence bot for boxing, hunting, ect.. you're going to have to crack BP's encryption, write an algorithm for it to encrypt/decrypt all the incoming and outgoing packets, then use a simple login packet to connect to the map which goes something along the lines of LOGIN|UID|SID|CLIENTVERSION Try using WPE Pro to sniff the login packet and get the exact format. (hint: sniffing packets will not give you the answer as to what encryption BP uses, WPE Pro just tells you the packets are encrypted, thats it, you will have ot use other programs to crack the encryption.)
morningstar261 is offline  
Old 05/03/2012, 03:49   #7
 
elite*gold: 0
Join Date: Mar 2012
Posts: 226
Received Thanks: 49
How i can connect me on darkorbit hangar with SID please?
maxdu45000 is offline  
Old 05/03/2012, 10:17   #8
 
pippop's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 73
Received Thanks: 11
Quote:
Originally Posted by morningstar261 View Post
To log directly into the space map use the following link in your program(if you're codding in C/C++ i can give you the exact code for this too):

Code:
http://{0}.darkorbit.bigpoint.com/indexInternal.es?dosid={1}&action=internalMapRevolution

{0}=serverID (i.e. us1, us1, ect...)
{1}=SessionID;
This will take you straight into a webpage and load the map.
But if you are trying to create a artificial intellegence bot for boxing, hunting, ect.. you're going to have to crack BP's encryption, write an algorithm for it to encrypt/decrypt all the incoming and outgoing packets, then use a simple login packet to connect to the map which goes something along the lines of LOGIN|UID|SID|CLIENTVERSION Try using WPE Pro to sniff the login packet and get the exact format. (hint: sniffing packets will not give you the answer as to what encryption BP uses, WPE Pro just tells you the packets are encrypted, thats it, you will have ot use other programs to crack the encryption.)
First of all... thank you! I sniffed packets with wireshark and i have a general idea of the encryption. If you look here:
there is an good topic. If you or someone else can give me an hint it's accepted
pippop is offline  
Old 05/09/2012, 02:51   #9
 
morningstar261's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 71
Received Thanks: 135
Quote:
Originally Posted by maxdu45000 View Post
How i can connect me on darkorbit hangar with SID please?
Its basically the same code which i posted above for logging straight into the map using SID. Except you want hangar so do this:

Code:
Links To Dark Orbit Home:
"http://{0}.darkorbit.bigpoint.com/indexInternal.es?dosid={1}&action=internalDock"ServerID,SID;
	{0}->ServerID  //your server ID us1, us2, int1, ect....
	{1}->SID  //your session ID, right click home pageand view source to get SID
Thats the basics of it, depending on what language you are coding in, the format may be different, plus you need to link the process to your GUI
In c++ it would be something like usually at the bottom of the form.h:
Code:
private: System::Void hangarToolStripMenuItem1_Click(System::Object^  sender, System::EventArgs^  e) {
			 Process  ^p;
			 ProcessStartInfo ^pInfo;
			 pInfo = gcnew ProcessStartInfo();
			 pInfo->Verb = L"open";
			 pInfo->FileName = String::Format(L"http://{0}.darkorbit.bigpoint.com/indexInternal.es?dosid={1}&action=internalDock",ServerID,SID);
			 pInfo->UseShellExecute = true;
			 p = Process::Start(pInfo);
		 }
And you need to make sure the link you click is activating the event by adding this line to the form generated code:
Code:
// 
// hangarToolStripMenuItem1
// 
this->hangarToolStripMenuItem1->Name = L"hangarToolStripMenuItem1";
this->hangarToolStripMenuItem1->Size = System::Drawing::Size(92, 22);
this->hangarToolStripMenuItem1->Text = L"Hangar";
this->hangarToolStripMenuItem1->Click += gcnew System::EventHandler(this, &Form2::hangarToolStripMenuItem1_Click);   //<--this is the line you are adding, the rest above is done for you by windows form generator
This is an example of a link added into a menu, but it can be used the same way for a button too, windows forms will generate the code for you whether its a menu link or a button. You can make a link to every page in the home page like the clan, trade, uridium, shop, galaxy gates, pilot sheet, mail, ect.. Everything you see in the home page has a link. And with your SID you can connect to it directly.

To mae it even simpler, if you can create a loggin function so you dont have to loggin manually and loo for the SID, it would be a lot simpler and better for the use of your program.
morningstar261 is offline  
Reply

« Hilfe :/ | Leonov! »

Similar Threads Similar Threads
Playing around and need help
12/12/2012 - Shaiya Private Server - 11 Replies
well i got orange stats on capes. that's no biggi at all. i use server 6. i got that it needed to be serv 3 or bigger (reading other post). But. accsessory regnum with orange stats have serv2 and still have orange. stats. why is that? secound. well as ppl know i don't think capes can be added to the pro blacksmith for rec runing.. i have seen ReqDex both 3 and 7 on the capes. what is Reqdex and have anyone found out how to get capes to get abel to use rec runes on them? and how? :-)...
How Old u was playing sro........?
02/16/2010 - Silkroad Online - 30 Replies
hehe post it ^^
Need some help here about playing
06/15/2009 - Aion - 1 Replies
Hey, yesterday i just started to play Aion China, well first impression is good, but after like 3 hours of playing i've get some message like i need to rest or smth so my exp and reward gonna be 50% now only, well i thought ok i'll try to play some more, after 1-2 hours i've got message that i need to rest for 5 hours so my gained exp and rewards now 0%. Anybody having same problems? Maybe this probleme because of servers. Thank you for answers. Regards Soundwave3
Q>>Does anyone here playing PSF!??
11/26/2008 - Soldier Front - 7 Replies
sorry if i got in wrong section :handsdown::handsdown: but i want to ask if theres a wallhack for PSF??? if theres can anyone teach me:handsdown::handsdown: sorry if im noob in this game because im playing CABAL :p:p i just want to try and many players in PSF that there is a glitch:p:p just send to my email or just post here here's my email [email protected]
Is anyone Still Playing at 20x?
10/11/2008 - Dekaron Private Server - 3 Replies
if there is someone who Playing there Put ur IGN and Guilds.



All times are GMT +1. The time now is 23:36.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.