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)

Bone-marrow 09/18/2013 07:01

Quote:

Originally Posted by Afropony (Post 25003568)
Use the files by madatel. Just the files from azure won't work.

It works now, thanks :D

Dаnny 09/18/2013 11:21

Quote:

Originally Posted by Bone-marrow (Post 25003712)
It works now, thanks :D

Please keep in mind with the rules. :(

Quote:

Originally Posted by Crαnk
Please do not write thanks, press the button. "Thanks"-posts are considered to be Spam.


Bone-marrow 09/18/2013 16:06

Quote:

Originally Posted by danito8202 (Post 25004943)
Please keep in mind with the rules. :(

In my opinion, my post wasn't only saying "thanks", but thank you for reminding me of the forum rules which I have read already.

Moonsteroid 09/24/2013 15:56

Requi, JD's server isnt public.

Bone-marrow 09/24/2013 16:01

Lightorbit is public now I think.

Requi 09/24/2013 16:06

Quote:

Originally Posted by ignoxx (Post 25100778)
Requi, JD's server isnt public.

Of course it's public. Everyone can join, when it's online.
Quote:

Originally Posted by Bone-marrow (Post 25100864)
Lightorbit is public now I think.

Changed :)

Requi 09/29/2013 15:01

CoolJedy's Server is public now.

skeith_sk8 10/01/2013 17:58

Who make the img?.... and if u know it (or u make it), how :)? thank you for this good thread
PS: supported as a mod

Läuftbeidir123 10/02/2013 20:06

wo findet ich Darkorbit privater server das online ist???

Requi 10/02/2013 20:17

Im ersten Post findest du Server. Nicht jeder ist dauerhaft online.

Derzeit ist jeder offline wegen Updates oder sie haben Serverwartungen.

Bone-marrow 10/06/2013 05:05

Perhaps add the remix tutorial by bla?

Requi 10/06/2013 13:47

Quote:

Originally Posted by Bone-marrow (Post 25282082)
Perhaps add the remix tutorial by bla?

Actually the remixes don't have anything to do with servers.

MS-Colder 10/11/2013 16:46

work but now its stop the player cant play they are in mode "waiting"

melikhan 10/11/2013 17:06

Quote:

Originally Posted by MS-Colder (Post 25368614)
work but now its stop the player cant play they are in mode "waiting"

What are you talking about?

mad-xerxes 10/11/2013 17:48

I created my private server "Aurora", it was amazing, until I open the emulator, it says: Not a basic Win32 application, and closes. My question is: Do I have to have a 64-bit operating system?

Another question is that when entering the equipment there is nothing, could tell me where to download the equipment or share the post where you have taken?


Quote:

Originally Posted by Requi (Post 25368552)
What is your OS (Windows)?[/url]

Windows XP (x86)

Requi 10/11/2013 17:49

So there is the problem. The emulator is only working with .NET Framework 4.5, which doesn't exist for Windows XP.
You should upgrade to Vista, 7 or 8.

mad-xerxes 10/11/2013 18:02

Quote:

Originally Posted by Requi (Post 25369649)
So there is the problem. The emulator is only working with .NET Framework 4.5, which doesn't exist for Windows XP.
You should upgrade to Vista, 7 or 8.

Oh thank you very much, that's fine by me, be installing windows 7.

Another little thing, do you not know how to put equipment, lasers, shields? or somewhere to download it?

Requi 10/11/2013 18:12

There isn't any download for it yet.
You need to code it yourself then.

mad-xerxes 10/11/2013 20:03

Quote:

Originally Posted by Requi (Post 25370041)
There isn't any download for it yet.
You need to code it yourself then.

Sh*t that's hard, well thank you very much Requi!

jordimaster 10/12/2013 12:08

Requi one ultimate off again :(

lokalit 10/12/2013 12:29

Why i cant logon to map?

sword_gold 10/12/2013 21:50

Hi Requi, I tried your emulator but it says an error on MySQL, can you tell me because I get this?


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

nckrnckr 10/12/2013 22:52

Hello,
my server has EMP, ISH and SMB
but only EMP works
because
else if (packetHeader.StartsWith("S"))
covers all
What should I do to run the SMB and ISH?

Requi 10/12/2013 23:13

Quote:

Originally Posted by sword_gold (Post 25389189)
Hi Requi, I tried your emulator but it says an error on MySQL, can you tell me because I get this?


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

app.ini
Delete password.
Check if databasename is right.
Quote:

Originally Posted by nckrnckr (Post 25390099)
Hello,
my server has EMP, ISH and SMB
but only EMP works
because
else if (packetHeader.StartsWith("S"))
covers all
What should I do to run the SMB and ISH?

If you click on ISH, the Emulator gets the Packet from the Client. Check which is it.
Then:
elseif(packetHeader.StartsWith("S"))
{
if(subHeader.StartsWith("EMP")) //Need to create variable subHeader which checks, what comes after the packetHeader.
and so on....
]

nckrnckr 10/12/2013 23:27

Quote:

Originally Posted by Requi (Post 25390410)
app.ini
Delete password.
Check if databasename is right.


If you click on ISH, the Emulator gets the Packet from the Client. Check which is it.
Then:
elseif(packetHeader.StartsWith("S"))
{
if(subHeader.StartsWith("EMP")) //Need to create variable subHeader which checks, what comes after the packetHeader.
and so on....
]

they all take the same suite of problems

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

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

so it only works EMP

Requi 10/13/2013 00:00

There is the solution man.
There is:
if (packetSubHeader.StartsWith("EMP"))
{
.......
}
//then write this:
elseif(packetSubHeader.StartsWith("ISH"))
{
nearly same code for ISH like EMP
}
elseif(just like ISH and EMP))
{
...
}

nckrnckr 10/13/2013 00:46

Quote:

Originally Posted by Requi (Post 25391070)
There is the solution man.
There is:
if (packetSubHeader.StartsWith("EMP"))
{
.......
}
//then write this:
elseif(packetSubHeader.StartsWith("ISH"))
{
nearly same code for ISH like EMP
}
elseif(just like ISH and EMP))
{
...
}

my problem fixed

EMP
SMB
ISH
working :)

EDİT: ELA (energy leech) with which you run this package ?

sword_gold 10/13/2013 03:12

Quote:

Originally Posted by Requi (Post 25390410)
app.ini
Delete password.
Check if databasename is right.


If you click on ISH, the Emulator gets the Packet from the Client. Check which is it.
Then:
elseif(packetHeader.StartsWith("S"))
{
if(subHeader.StartsWith("EMP")) //Need to create variable subHeader which checks, what comes after the packetHeader.
and so on....
]

Worked, but then will not let me attack the aliens, here I leave a picture, sorry for the inconvenience. I try to reboot and gives the same error, just change the final numbers:

From client u: 28
From client u: 34
From client or 7

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

Lifestyler. 10/13/2013 03:14

Thang you bro its much better now.

Requi 10/13/2013 03:28

Quote:

Originally Posted by sword_gold (Post 25392854)
Worked, but then will not let me attack the aliens, here I leave a picture, sorry for the inconvenience. I try to reboot and gives the same error, just change the final numbers:

From client u: 28
From client u: 34
From client or 7

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

The attack system is a whole fail in the newest version of azure.
u|NUMBER stands for choosing a "item" in the quickslotbar.

And whats your exactly problem?

sword_gold 10/13/2013 03:51

Quote:

Originally Posted by Requi (Post 25392964)
The attack system is a whole fail in the newest version of azure.
u|NUMBER stands for choosing a "item" in the quickslotbar.

And whats your exactly problem?

I press CTRL or from the bar directly pressed UCB-100 ammo to attack, but not attack.

I use the default emulator azure, and when I press CTRL or when I select the UCB-100 ammo, if attacked, just very soft.

killer boss 10/13/2013 14:47

hello ,

i work into emulator but i search title packet =)

Thx for your reponse

Good Bye

sami37 10/13/2013 18:23

Quote:

Originally Posted by sword_gold (Post 25393063)
I press CTRL or from the bar directly pressed UCB-100 ammo to attack, but not attack.

I use the default emulator azure, and when I press CTRL or when I select the UCB-100 ammo, if attacked, just very soft.

You need to recode a attack system (bullet part), because actually the system attack only count if you got UCB-100 ammo, them you need to check global ammo

sword_gold 10/13/2013 18:36

Quote:

Originally Posted by sami37 (Post 25403011)
You need to recode a attack system (bullet part), because actually the system attack only count if you got UCB-100 ammo, them you need to check global ammo

I picked up some boxes to have UCB-100 and did not result, then use SAB ammo and still does not attack.

sami37 10/13/2013 19:16

Quote:

Originally Posted by sword_gold (Post 25403246)
I picked up some boxes to have UCB-100 and did not result, then use SAB ammo and still does not attack.

I am doing it like this

Code:

string[] bullet1 = Ship.bullet.Split(new Char[] { '|' });
            // LCB-10(x1)|MCB-25(x2)|MCB-50(x3)|UCB-100(x4)|SAB-50(roba escudo)|RSB-75(x5)
            uint LCB10 = Convert.ToUInt32(bullet1[0]);
            uint MCB25 = Convert.ToUInt32(bullet1[1]);
            uint MCB50 = Convert.ToUInt32(bullet1[2]);
            uint UCB100 = Convert.ToUInt32(bullet1[3]);
            uint SAB50 = Convert.ToUInt32(bullet1[4]);
            uint RSB75 = Convert.ToUInt32(bullet1[5]);
            uint totalbullet = LCB10 + MCB25 + MCB50 + UCB100 + SAB50 + RSB75;

            if (this.destroyedClass)
            {
                return;
            }
            uint _userId = this.Ship.selectedUserId;

            if (this.Ship.isAttacking == false || _userId == 0)
            {
            }
            else if (totalbullet < 15)
            {
                this.Ship.isAttacking = false;
                if (!AvisedB)
                {
                    AvisedB = true;
                    this.Send("0|W|L|1");
                }
            }


sword_gold 10/13/2013 19:28

Quote:

Originally Posted by sami37 (Post 25404034)
I am doing it like this

Code:

string[] bullet1 = Ship.bullet.Split(new Char[] { '|' });
            // LCB-10(x1)|MCB-25(x2)|MCB-50(x3)|UCB-100(x4)|SAB-50(roba escudo)|RSB-75(x5)
            uint LCB10 = Convert.ToUInt32(bullet1[0]);
            uint MCB25 = Convert.ToUInt32(bullet1[1]);
            uint MCB50 = Convert.ToUInt32(bullet1[2]);
            uint UCB100 = Convert.ToUInt32(bullet1[3]);
            uint SAB50 = Convert.ToUInt32(bullet1[4]);
            uint RSB75 = Convert.ToUInt32(bullet1[5]);
            uint totalbullet = LCB10 + MCB25 + MCB50 + UCB100 + SAB50 + RSB75;

            if (this.destroyedClass)
            {
                return;
            }
            uint _userId = this.Ship.selectedUserId;

            if (this.Ship.isAttacking == false || _userId == 0)
            {
            }
            else if (totalbullet < 15)
            {
                this.Ship.isAttacking = false;
                if (!AvisedB)
                {
                    AvisedB = true;
                    this.Send("0|W|L|1");
                }
            }



What is that file??. For to be the same as yours.

killer boss 10/13/2013 19:35

reponse pliz
 
Quote:

Originally Posted by killer boss (Post 25398784)
hello ,

i work into emulator but i search title packet =)

Thx for your reponse

Good Bye

you can help me ?

sami37 10/13/2013 20:11

Quote:

Originally Posted by sword_gold (Post 25404252)
What is that file??. For to be the same as yours.

Users.cs at AttackShip
But you need to edit some other thing to get it work like i did

Quote:

Originally Posted by killer boss (Post 25404391)
you can help me ?

i don't understand your question, what do you want exactly? Can you provide some more details?

killer boss 10/13/2013 20:25

i need title packet
( on the game under name )

Goliath Hunter or other title i need packet example for drone this.Send("0|n|d|" + this.userId + "|3/3-25-25-25,3/4-25-25-25-25,3/3-25-25-25");

I'm looking for the code for title ! ^^

thx

sword_gold 10/13/2013 20:37

Quote:

Originally Posted by sami37 (Post 25405090)
Users.cs at AttackShip
But you need to edit some other thing to get it work like i did

I have problems with the Requiem-Server and I looking in my file Users.cs and can not find the code you said, maybe you have another server.

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


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

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