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
Packet
So if you write as example "ship 98", you need to check, if the packetHeader Contains ship. As every packet
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:
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.
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.
And at the end, we have at the packetReader in the Users.cs this code at the end for one simply CLI Command:
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
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...
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"))
You can easily read types.
So:
Code:
if (packetHeader.StartsWith("ship"))
{
this.Ship.ID = packetHeader.ReadUInt32();
}
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(' ');
}
But you don't want to relog?
Send the RDY packet again.
Code:
private void updateShip()
{
INSERT HERE THE RDY PACKET FROM START
}
Code:
if (packetHeader.StartsWith("ship"))
{
this.Ship.ID = packetHeader.ReadUInt32();
this.updateShip();
}
|
|
|
|
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