Private Server HowTo's by Requi

10/16/2013 22:02 Requi#1
What's up guys.
As I have many tutorials on youtube and also showed few things here on elitepvpers, I wanted to make one thread for all.

Here you can find all videos by me (for those, who didn't subscribed me) and my other threads, which are in the nowhere of elitepvpers.

Mostly here are videos, because I make many of them. They are more clear, than just reading a whole site of elitepvpers ;)

Index:
Your own CLI Commands
Wie erstelle ich einen DarkOrbit Privat Server
How can I create my own darkorbit privat server
Privat Server mit Freunden spielen
Playing with Friends on a DarkOrbit Private Server
Packets für DarkOrbit Privat Server herausfinden
Getting DarkOrbit Private Server Packets

Your own CLI Commands:

If you write something in to the CLI, the client send this to the server.
Not as a stupid
Code:
A|0|BRB...
Packet

So if you write as example "ship 98", you need to check, if the packetHeader Contains ship. As every packet

Code:
if (packetHeader.StartsWith("ship"))
Then you need to get the ID of the ship. Xdr implented a nice function into the packets.cs
You can easily read types.
So:
Code:
if (packetHeader.StartsWith("ship"))
{
this.Ship.ID = packetHeader.ReadUInt32();
}
As the packets.cs only split at a |, you actually need to write a split function for the " " (Space).

Open the packets.cs and edit one of the first lines, where the | get splitted.
Code:
if (packet.Contains("|"))
{
packetData = packet.Split('|');
}
else //for the spacebar
{
packetData = packet.Split(' ');
}
So, if you write now at the CLI: "ship 98", you need the relog and you have the ship.

But you don't want to relog?
Send the RDY packet again.

Code:
private void updateShip()
{
INSERT HERE THE RDY PACKET FROM START
}
And at the end, we have at the packetReader in the Users.cs this code at the end for one simply CLI Command:
Code:
if (packetHeader.StartsWith("ship"))
{
this.Ship.ID = packetHeader.ReadUInt32();
this.updateShip();
}
Wie erstelle ich einen DarkOrbit Privat Server:


How can I create my own darkorbit privat server:


Privat Server mit Freunden spielen:


Playing with Friends on a DarkOrbit Private Server:


Packets für DarkOrbit Privat Server herausfinden:


Getting DarkOrbit Private Server Packets:


I will add everytime a new tutorial, if I have something.
Bookmark this page, before it gets in the nowhere of elitepvpers and you can't find it anymore. Maybe you need it later again ;)

Regards,
Requi
10/16/2013 22:17 Dr.Toni#2
You have your own Thread for it? :eek:
10/16/2013 22:19 Requi#3
Quote:
Originally Posted by Dг.Tσпi™ View Post
You have your own Thread for it? :eek:
It's just a collecting thread as I make the most tutorials for private servers in this section.
So you can find it very easily ;)
10/16/2013 22:19 shooteram#4
Finally, someone just understood how to do against all the flood questions.
Thank you for this useful thread Ricky.

It will be most easy to see by hidding your videos with some spoiler.
-It's just a suggestion.
10/16/2013 22:25 Dr.Toni#5
Quote:
Originally Posted by Requi View Post
It's just a collecting thread as I make the most tutorials for private servers in this section.
So you can find it very easily ;)
I mean the sticky.
10/16/2013 22:29 Requi#6
Ah you mean that. This is just for my tutorials :)
Elsastylez said it's okay.
10/16/2013 22:33 Dr.Toni#7
Okay. Than I will be quiet now.
Btw..
Nice Thread :)
10/16/2013 22:34 NoCheatImPGM#8
So this one will be stick ?
I hope...

Thanks a lot it will be helpfull for me :)

Best regards, PGM.
10/16/2013 22:34 Requi#9
This won't be stick. I think.
In my opinion it doesn't deserved to get stick.
10/16/2013 23:11 melikhan#10
Thanks for this thread requi, it will be usefull for many people, because of you the spam will be few now :p

PS: You are really pony-addicted... XD
10/16/2013 23:21 cryz35#11
Nice thread, but ain't nobody got time for watching those videos (me) :(