elitepvpers

elitepvpers (https://www.elitepvpers.com/forum/)
-   DarkOrbit (https://www.elitepvpers.com/forum/darkorbit/)
-   -   [Collection Thread] Private Server Info and Support Thread (https://www.elitepvpers.com/forum/darkorbit/2830133-private-server-info-support-thread.html)

Technostar 11/15/2015 18:17

Hello guys,
does someone have a copy of the Azure Do Server (Version 0.6.2) ?

AaronJ21 11/15/2015 18:24

Quote:

Originally Posted by nykomc (Post 33360796)
My database start to 1000 why?

In phpmyadmin open the user table, go in operations, Truncate table

cryz35 11/15/2015 18:56

Quote:

Originally Posted by 123456789thread (Post 33360880)
Hello guys,
does someone have a copy of the Azure Do Server (Version 0.6.2) ?

nope but it was as bad as the first one as i remember

Technostar 11/15/2015 19:09

Quote:

Originally Posted by cryz35 (Post 33361167)
nope but it was as bad as the first one as i remember

Bad in what point of view ?
I think 90% of all PServer use it as a base ^^

cryz35 11/15/2015 20:36

Quote:

Originally Posted by 123456789thread (Post 33361251)
Bad in what point of view ?
I think 90% of all PServer use it as a base ^^

Recursive calls as I remember, not OOP base, low maintability o.o
0.6 was even more complicated than previous one, lol

manulaiko3.0 11/16/2015 16:43

Quote:

Originally Posted by 123456789thread (Post 33361251)
Bad in what point of view ?
I think 90% of all PServer use it as a base ^^

And that's why 90% of PServers are crap, exactly the same as the rest and have even more bugs than DarkOrbit

steppdroid 11/16/2015 18:08

Full Diplomacy Clan OrbitReborn
 
Hi all, I wrote the code for the full clan diplomacy in OrbitReborn Emulator, but there is some problem, someone can help me?
Of course I've already adapted the cms.
Thanks!

My file:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]

NoCheatImPGM 11/16/2015 19:01

Quote:

Originally Posted by steppdroid (Post 33366786)
Hi all, I wrote the code for the full clan diplomacy in OrbitReborn Emulator, but there is some problem, someone can help me?
Of course I've already adapted the cms.
Thanks!

My file:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]


[IMG=expandable: 1]http://i.epvpimg.com/yMmnb.png[/IMG]
wtf is dis :o

steppdroid 11/16/2015 19:10

Quote:

Originally Posted by NoCheatImPGM (Post 33367268)
[IMG=expandable: 1]http://i.epvpimg.com/yMmnb.png[/IMG]
wtf is dis :o

Extract from database the type diplomacy

NoCheatImPGM 11/16/2015 19:32

Quote:

Originally Posted by steppdroid (Post 33367355)
Extract from database the type diplomacy

I know I can read, but you'd better don't do that...

Requi 11/17/2015 04:33

Quote:

Originally Posted by steppdroid (Post 33366786)
Hi all, I wrote the code for the full clan diplomacy in OrbitReborn Emulator, but there is some problem, someone can help me?
Of course I've already adapted the cms.
Thanks!

My file:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]

Wtf? Just use: Message.Append((int)Rows["type"]);

instead of checking the value and then setting the exact you just verified.

steppdroid 11/17/2015 11:13

Quote:

Originally Posted by Requi (Post 33369854)
Wtf? Just use: Message.Append((int)Rows["type"]);

instead of checking the value and then setting the exact you just verified.

Code:

if (Session.CharacterInfo.ClanWar.Contains(Info.ClanId))
            {
                using (SqlDatabaseClient MySqlClient = SqlDatabaseManager.GetClient())
                {
                    MySqlClient.SetParameter("clanid", Info.ClanId);
                    DataRow Row = MySqlClient.ExecuteQueryRow("SELECT type FROM clan_diplomacy WHERE second_clan_id = @clanid");
 
                    if (Row != null)
                    {
                       
                            Message.Append((int)Row["type"]); // clan diplomacy 1 = alliance, 2 = non aggression pact, 3 = war
                       
                    }
                    else { Message.Append(0); }
                }
            }
            else
            {
                Message.Append(0);
            }

Unfortunately, the problem remains that when jump in another map, clan diplomacy often disappears.

Sήøwy 11/17/2015 15:54

You are not sending the clan diplomacy when the player gets to a new map.
When you're creating he's ship you need to send it, when he jumps a portal also.

nykomc 11/18/2015 09:39

Hi all.Please help how to make my server to start with 5.000.000 credits and 10.000.000 uri?

steppdroid 11/18/2015 11:43

Quote:

Originally Posted by nykomc (Post 33376504)
Hi all.Please help how to make my server to start with 5.000.000 credits and 10.000.000 uri?

x'D Edit the database

pvpcoolersdev 11/18/2015 14:26

Hi please add pvpcoolers server ? you're list is not complete

Sήøwy 11/18/2015 16:32

Quote:

Originally Posted by nykomc (Post 33376504)
Hi all.Please help how to make my server to start with 5.000.000 credits and 10.000.000 uri?

Change your database at that columns you need, edit the structure and change the defined value.

oleg-19952008 11/18/2015 20:50

Thinking about your emulator, but do not know in what form you need to send packets to the client, such as PET|L need to send PET then L or send them whole ? Where can you find a fully decrypted packets of the game (something like this ("f|C|" . self::getID() . "|" . self::getShip() . "|15|" . self::getUName() . "|" . self::getTag() . "|" . self::getX() . "|" . self::getY() . "|" . self::getFaction() . "|0|" . self::getRank() . "|0|0|7||0|0")) ?
How is the authorization procedure ? I tried to join the client, the client is waiting when he will send <policy-file-request/>, I send <cross-domain-policy><allow-access-from domain='*' to-ports='*' /></cross-domain-policy> but what to send ? Package LOGIN|MY_ID|my-sid|VERSION I sent but I do not understand what to send.
I found a package of "AP" and "ET" client 4.1 and sometimes I see the package "MY_SID|4.1" what does this mean and what does it do ?

S7K Yuuki 11/18/2015 21:05

Quote:

Originally Posted by oleg-19952008 (Post 33380557)
Thinking about your emulator, but do not know in what form you need to send packets to the client, such as PET|L need to send PET then L or send them whole ? Where can you find a fully decrypted packets of the game (something like this)

Code:

"f|C|" . self::getID() . "|" . self::getShip() . "|15|" . self::getUName() . "|" . self::getTag() . "|" . self::getX() . "|" . self::getY() . "|" . self::getFaction() . "|0|" . self::getRank() . "|0|0|7||0|0"
How is the authorization procedure ?
I tried to join the client, the client is waiting when he will send
Code:

<policy-file-request/>
I send
Code:

<cross-domain-policy><allow-access-from domain='*' to-ports='*' /></cross-domain-policy>
but what to send ? Package LOGIN|MY_ID|my-sid|VERSION I sent but I do not understand what to send.
I found a package of "AP" and "ET" client 4.1 and sometimes I see the package "MY_SID|4.1" what does this mean and what does it do ?

God, next time try to make it cleaner... Took me 3 times to undertand your post.

First you receive the PolicyFileRequest as you said, once you send back the PolicyFile (As you are doing) The client will send instantly the Login packet

Code:

LOGIN|playerID|sessionID|clientVersion
Then do the correct checks to allow or not that player into the game and send back the Ship Initialization packet (Ofc with the correct Settings packets, you can get them from any emulator)

Code:

RDY|I|playerID|username|shipID|maxSpeed|shield|maxShield|health|maxHealth|cargo|maxCargo|user.x|user.y|mapId|factionId|clanId|shipAmmo|shipRockets|expansion|premium|exp|honor|level|credits|uridium|jackpot|rank|clanTag|ggates|0|cloaked
Regards.-

oleg-19952008 11/18/2015 21:08

Still have the problem, I changed the screen resolution instead of 1280x720 made h and 1366x768 but lost the planet, the resources are all in place, just in main.swf I replaced all values 1280x720 on h and the planet disappeared in what could be the problem ? And the page put this code
$("#container").css("position","fixed");
$("#container").css("top",0);
$("#container").css("left",0);
$("#container").css("width","100%");
$("#container").css("height","100%");
What could be wrong ?
In xml/maps.php I have not changed, if you replace the main.swf on another planet work.
[IMG=expandable: 1]https://pp.vk.me/c628830/v628830021/2abdc/XeTOsKXxh68.jpg[/IMG]

-=Flavio=- 11/19/2015 16:06

Quote:

Originally Posted by oleg-19952008 (Post 33380656)
Still have the problem, I changed the screen resolution instead of 1280x720 made h and 1366x768 but lost the planet, the resources are all in place, just in main.swf I replaced all values 1280x720 on h and the planet disappeared in what could be the problem ? And the page put this code
$("#container").css("position","fixed");
$("#container").css("top",0);
$("#container").css("left",0);
$("#container").css("width","100%");
$("#container").css("height","100%");
What could be wrong ?
In xml/maps.php I have not changed, if you replace the main.swf on another planet work.
[IMG=expandable: 1]https://pp.vk.me/c628830/v628830021/2abdc/XeTOsKXxh68.jpg[/IMG]

you have the planet's file on the server folder? and it is set up?

YURI-ELIADE.ITALY 11/19/2015 21:42

someone can tell me how can I disable the cargo of aliens

[Only registered and activated users can see links. Click Here To Register...]

Requi 11/19/2015 21:52

Quote:

Originally Posted by YURI-ELIADE.ITALY (Post 33387564)
someone can tell me how can I disable the cargo of aliens

[Only registered and activated users can see links. Click Here To Register...]

learn to code?!

YURI-ELIADE.ITALY 11/19/2015 21:56

Quote:

Originally Posted by Requi (Post 33387637)
learn to code?!

But I can not turn off cargo of aliens help me :handsdown:

steppdroid 11/20/2015 10:54

Quote:

Originally Posted by YURI-ELIADE.ITALY (Post 33387656)
But I can not turn off cargo of aliens help me :handsdown:

Alien.cs, line 306,307

kucurbium.cs, line 296,297

Ready*12 11/21/2015 14:36


Orbit World 11/23/2015 01:03

Where i download, source emulator 9.0 ? or 3D ?

BotorCrime 11/23/2015 16:19

Quote:

Originally Posted by Orbit World (Post 33408796)
Where i download, source emulator 9.0 ? or 3D ?

U have to pay for 9.0/10.0 buddy.

oleg-19952008 11/23/2015 21:10

Guys help, I wrote the emulator, but there is one problem, I don't know how you can spartiate the coordinates at which the ship is to PET flew behind the ship but with a slight delay.
The emulator without using the database. The same time he joins the client and sends the data. But I know where I broke.
It works to change maps via console and change of ship (doesn't quite work, this map is NULL ).
[IMG=expandable: 1]https://pp.vk.me/c627316/v627316021/2fe89/iP_dRajTZ7E.jpg[/IMG]

-Real- 11/23/2015 22:25

Quote:

Originally Posted by BotorCrime (Post 33411552)
U have to pay for 9.0/10.0 buddy.

Pay? Really? LOL .....Learn Programming if you want to make 9.0/10.0 Server..

cryz35 11/23/2015 23:21

Quote:

Originally Posted by BotorCrime (Post 33411552)
U have to pay for 9.0/10.0 buddy.

I didnt pay buddy. (:

ItsTequila 11/24/2015 11:39

Quote:

Originally Posted by cryz35 (Post 33414817)
I didnt pay buddy. (:

you get paid kek

manulaiko3.0 11/24/2015 13:36

Quote:

Originally Posted by NUMANDERBUHMAN (Post 33416483)
you get paid kek

He toke a look at SB

cryz35 11/24/2015 15:26

Quote:

Originally Posted by manulaiko3.0 (Post 33417059)
He toke a look at SB

Lmao I had 6.3.1 before sb and nah I don't look at java shit ;)

P.s: "sb" 6.3.1 emulator never released anywhere, how am i supposed to "look" on it? Get your facts right.

Basspro21 11/24/2015 18:41

Wait
 
So all this information is to make a private server? Like why would you want a private sever in the first place?

Diаmonds 11/24/2015 20:12

Quote:

Originally Posted by Basspro21 (Post 33419340)
So all this information is to make a private server? Like why would you want a private sever in the first place?

[Only registered and activated users can see links. Click Here To Register...]

ItsTequila 11/24/2015 20:14

Quote:

Originally Posted by Basspro21 (Post 33419340)
So all this information is to make a private server? Like why would you want a private sever in the first place?

You are either bugpoint member or some wallet warrior from DO Xdddddddddddddddddddddddddddddddddddddd

nykomc 11/26/2015 18:46

hi i have darkplanets cms and emulator and i want to fix ship Police and Cloak how know how to fix this?

dogun47 11/29/2015 10:21

hi my server is very good but I want add 3d graphics please give me 3d files
and I buy Ammo the shop BUT spacemap is not ammo my english bad sorry..I buy the mcb-25 but not the spacemap is mcb-25 :(( please help me

halenko 11/29/2015 20:07

Hello Epvp,

Could you help me ? I would need ship creation packet for 9.0

Thanks you very much


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

Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.