Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 12:18

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

Advertisement



Private Server Info and Support Thread

Discussion on Private Server Info and Support Thread within the DarkOrbit forum part of the Browsergames category.

Reply
 
Old 05/22/2017, 10:52   #2911
 
elite*gold: 0
Join Date: May 2017
Posts: 8
Received Thanks: 23
Quote:
Originally Posted by steppdroid View Post
Why my minimap have a blackscreen?

Because youre not a coder, and you doesnt know how to fix it.

GG
NEWFILESOFMARCH is offline  
Thanks
1 User
Old 05/22/2017, 11:31   #2912
 
ItsTequila's Avatar
 
elite*gold: 0
Join Date: Jun 2015
Posts: 647
Received Thanks: 954
Quote:
Originally Posted by NEWFILESOFMARCH View Post
Because youre not a coder, and you doesnt know how to fix it.

GG
Look who spoke, the one who's leaking files on epvp
ItsTequila is offline  
Thanks
3 Users
Old 05/22/2017, 13:30   #2913
 
Eatforyou's Avatar
 
elite*gold: 39
Join Date: Mar 2015
Posts: 506
Received Thanks: 593
Quote:
Originally Posted by steppdroid View Post
Why my minimap have a blackscreen?
Because old Coder removed it, but why, dont ask me, because this makes zero sense, why it got removed

Regards.
Eatforyou is offline  
Old 05/24/2017, 21:09   #2914
 
FreddieUranus's Avatar
 
elite*gold: 0
Join Date: Mar 2017
Posts: 25
Received Thanks: 9
Quote:
Originally Posted by LEJYONER(DS) View Post
Hey guys, how i can found all item loot id's like that:



I need loot id for button image like that:

you mean CPU's or all that (drone formations, cpu, ammo, techno)?
FreddieUranus is offline  
Old 05/24/2017, 22:08   #2915
 
elite*gold: 0
Join Date: Dec 2014
Posts: 341
Received Thanks: 221
Quote:
Originally Posted by FreddieUranus View Post
you mean CPU's or all that (drone formations, cpu, ammo, techno)?
for all category (laser, rocket, rocket launcher, special items, mines, cpus, credits, techno, ship ability, drone formations)
LEJYONER(DS) is offline  
Old 05/28/2017, 19:19   #2916
 
~Skyfall~'s Avatar
 
elite*gold: 14
Join Date: Mar 2017
Posts: 72
Received Thanks: 162
How can I add fat lasers in OrbitReborn Files
~Skyfall~ is offline  
Old 05/29/2017, 11:59   #2917
 
elite*gold: 0
Join Date: Jun 2013
Posts: 42
Received Thanks: 89
WarUniverse

Hello guys.
Im creating standalone game called WarUniverse with gameplay like darkorbit at 2009 year. It would be native for Android and Desktop. So before first release, i need to test it.

I need 10 testers, who helped me to find major bugs.

Main features are ready: maps, npcs, ships, equipment system, drones, etc

Please contact me (strannik_himer on skype), if you want to play it first.

Screenshot:
HimerOK is offline  
Thanks
3 Users
Old 06/02/2017, 11:14   #2918
 
elite*gold: 0
Join Date: Jun 2017
Posts: 1
Received Thanks: 0
video link please
torbaci21 is offline  
Old 06/04/2017, 13:19   #2919
 
Freshek's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 803
Received Thanks: 1,362
Quote:
Originally Posted by WarriorYT View Post
Oh thank you very much son of a *****
You've just called 'son of a *****' one of the guys that made the sources you're using. But wait, you are pro 2k17 Java developer who fixed SOMEONE'S else source. Congratulations.

oh wait


you've won the same certificate 2nd time
Freshek is offline  
Thanks
2 Users
Old 06/04/2017, 23:20   #2920
 
elite*gold: 0
Join Date: Nov 2011
Posts: 100
Received Thanks: 22
Guys can you explain me the difference between DO's 2d and 3d code
I have intentions to create my own private server, but only browser games i ever worked on are pure html/php games similar to travian/ikariam and such...
I managed to create basic hangar and gg, but i just don't know where to start from in the actual game...
I looked for similar topics, but found none... i'm sorry if there is one
nikola99 is offline  
Old 06/04/2017, 23:33   #2921
 
manulaiko3.0's Avatar
 
elite*gold: 0
Join Date: May 2014
Posts: 662
Received Thanks: 1,154
Quote:
Originally Posted by nikola99 View Post
Guys can you explain me the difference between DO's 2d and 3d code
I have intentions to create my own private server, but only browser games i ever worked on are pure html/php games similar to travian/ikariam and such...
I managed to create basic hangar and gg, but i just don't know where to start from in the actual game...
I looked for similar topics, but found none... i'm sorry if there is one
It's not about whether it's 2D or 3D, it's more about the client version.

From client 1.6 to 4.1 all packets structure are the same, raw strings where each parameter is separated by a |
With client 6.3.5 to 7.5.1 packets changed and they became byte arrays, so instead of having 0|I|userID... you had something like this:

Code:
Packet version = new Packet(667);
version.writeShort(major);
version.writeShort(minor);
version.writeShort(build);
And from 8.5+ to current one they are the same as the byte arrays + encryption.
manulaiko3.0 is offline  
Thanks
4 Users
Old 06/05/2017, 00:01   #2922
 
elite*gold: 0
Join Date: Nov 2011
Posts: 100
Received Thanks: 22
Quote:
Originally Posted by manulaiko3.0 View Post
It's not about whether it's 2D or 3D, it's more about the client version.

From client 1.6 to 4.1 all packets structure are the same, raw strings where each parameter is separated by a |
With client 6.3.5 to 7.5.1 packets changed and they became byte arrays, so instead of having 0|I|userID... you had something like this:

Code:
Packet version = new Packet(667);
version.writeShort(major);
version.writeShort(minor);
version.writeShort(build);
And from 8.5+ to current one they are the same as the byte arrays + encryption.
Thanks for the info.
Is original DO written in Java ?
And is there a way to get packages from game that is no longer available on web?
nikola99 is offline  
Old 06/05/2017, 00:12   #2923
 
elite*gold: 0
Join Date: Mar 2017
Posts: 1
Received Thanks: 0
Quote:
Originally Posted by manulaiko3.0 View Post
It's not about whether it's 2D or 3D, it's more about the client version.

From client 1.6 to 4.1 all packets structure are the same, raw strings where each parameter is separated by a |
With client 6.3.5 to 7.5.1 packets changed and they became byte arrays, so instead of having 0|I|userID... you had something like this:

Code:
Packet version = new Packet(667);
version.writeShort(major);
version.writeShort(minor);
version.writeShort(build);
And from 8.5+ to current one they are the same as the byte arrays + encryption.
Buenas manu! Soy nuevo de por aqui! Me llamo David. Antes he estado hablando con Borja, menudo crack. Mi pregunta es, como interceptas los paquetes? he probado con wireshark en un server antiguo privado, pero no logro encontrar la cadena del paquete, siento responder en español! solo era para conocernos..
TheHanns is offline  
Old 06/05/2017, 00:40   #2924
 
manulaiko3.0's Avatar
 
elite*gold: 0
Join Date: May 2014
Posts: 662
Received Thanks: 1,154
Quote:
Originally Posted by nikola99 View Post
Thanks for the info.
Is original DO written in Java ?
And is there a way to get packages from game that is no longer available on web?
Original DO seems to be coded in either C++ or C#.
The way you retrieve packets is by decompiling main.swf and look for the onStreamData (for clients 1.6 to 4.1) or to the packet classes to get their structure (clients 6.3.5+)

I made a tutorial for retrieving packets for client 4.1 a lot ago, but it stills working. It's in the first post.

Quote:
Originally Posted by TheHanns View Post
Buenas manu! Soy nuevo de por aqui! Me llamo David. Antes he estado hablando con Borja, menudo crack. Mi pregunta es, como interceptas los paquetes? he probado con wireshark en un server antiguo privado, pero no logro encontrar la cadena del paquete, siento responder en español! solo era para conocernos..
Decompilando main.swf es la manera más fácil y rápida de averiguarlo.
manulaiko3.0 is offline  
Old 06/05/2017, 06:48   #2925
 
elite*gold: 0
Join Date: Jun 2013
Posts: 42
Received Thanks: 89
Quote:
Originally Posted by HimerOK View Post
Hello guys.
Im creating standalone game called WarUniverse with gameplay like darkorbit at 2009 year. It would be native for Android and Desktop. So before first release, i need to test it.

I need 10 testers, who helped me to find major bugs.

Main features are ready: maps, npcs, ships, equipment system, drones, etc

Please contact me (strannik_himer on skype), if you want to play it first.

Screenshot:
Video of the game:


Now you can play it, link to download under video. I think its not ready to wide publish yet, so i just leave it here.
HimerOK is offline  
Thanks
1 User
Reply

Tags
2018, darkorbit, emulator, private, server


Similar Threads Similar Threads
Private private server :P READ FOR MORE INFO
12/01/2010 - SRO Private Server - 12 Replies
hey guys im wondering if there is anyway to make a real private server like ZSZC or SWSRO or MYSRO but to where i can only play and level a character and as if it was a real private server. but just for me, not like an emulator where im already lvl 90 or 120 or whatever. i mean one where i set the rates and i level. if not then ok u can close this. but i was just wondering.



All times are GMT +2. The time now is 12:18.


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.