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)

Diаmonds 01/11/2014 21:05

Quote:

Originally Posted by Real.epvp (Post 26694903)
For the Aurora pack how can i edit the .swf files?

As you said here [Only registered and activated users can see links. Click Here To Register...], code it yourself :p

Real.epvp 01/12/2014 16:32

I am i just want to see what the ui looks like.

Diаmonds 01/12/2014 16:35

Quote:

Originally Posted by Real.epvp (Post 26729786)
I am i just want to see what the ui looks like.

I don't know if I understood you right, but I think you need this [Only registered and activated users can see links. Click Here To Register...]. At the end it shows you how to see the .swf

gabrielcool1 01/16/2014 16:28

I have some Ideas and i want to know how to make them real.
1st. Put spawn and Bases in a Map. (i wanna put eic on 4-2 vru 4-3 and mmo 4-1)

th0rex 01/16/2014 16:34

Search the packet to create a station and put the x, y and mapid as you wish.

gabrielcool1 01/16/2014 18:00

Quote:

Originally Posted by omitma (Post 26779523)
Search the packet to create a station and put the x, y and mapid as you wish.

The question is.. where to find it..

Requi 01/16/2014 18:04

Quote:

Originally Posted by gabrielcool1 (Post 26781073)
The question is.. where to find it..

I'll make a detailed tutorial here on epvp in few days.
But for now try to understand one of my videos.
I explain it a bit:
[Only registered and activated users can see links. Click Here To Register...]

manulaiko 01/16/2014 21:59

Hey!

Can you add my releases to the post?

Requi 01/16/2014 22:21

Quote:

Originally Posted by manulaiko (Post 26785149)
Hey!

Can you add my releases to the post?

Added both things.

Destiny 01/17/2014 00:50

base
Code:

  if (this.Id == 1)
            {
                this.Users[userId].Send("0|s|0|1|redStation|1|1500|1000|1000");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }
            else if (this.Id == 5)
            {
                this.Users[userId].Send("0|s|0|1|blueStation|2|1500|20000|1000");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }
            else if (this.Id == 9)
            {
                this.Users[userId].Send("0|s|0|1|greenStation|3|1500|20000|12400");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }
            if (this.Id == 20)
            {
                this.Users[userId].Send("0|s|0|1|redStation|1|1500|1000|6200");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }
            else if (this.Id == 24)
            {
                this.Users[userId].Send("0|s|0|1|blueStation|2|1500|10000|1000");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }
            else if (this.Id == 28)
            {
                this.Users[userId].Send("0|s|0|1|greenStation|3|1500|20000|6200");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }
            else if (this.Id == 92)
            {
                this.Users[userId].Send("0|s|0|1|pirateStation|6|1500|11000|6400");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }


AexPJ 01/17/2014 17:20

Hello, my name is maruis I love to play old wairror but today I had a problem, ie I could not disconnect I put in the radioactive die but we DMG - (-200.000) we reached the enemy base I was killed by a player and the basic General not had any rank + I can not login ... NoCheatImPGM pretty please help me I did nothing wrong: (..

Requi 01/17/2014 17:47

Please ask in the official thread.

SYSTEMEWAR 01/18/2014 22:49

Hello guys ,

I need visual packet for damage ( rocket and RL )

example for laser -->

[IMG=expandable: 1]http://img11.hostingpics.net/pics/489574exemple.jpg[/IMG]

You can help me ?


thanks you ;)

Requi 01/18/2014 22:59

Same as laser.

NoCheatImPGM 01/18/2014 23:35

Pourquoi tu ne me le demande pas ?
Quote:

"0|Y|" + this.userId + "|" + selecteduserId + "|L|" + selecteduserId.HP + "|" + selecteduserId.Shield + "|" + PowerOfTheAttak +"|100|1"

//Exemple!

gabrielcool1 01/19/2014 00:26

I wanna ask you something guys..
Is there anyway to change sucesfuly the HP of admin ship? (Hp and shield) . i can change it to 612,000 but when someone hits me i get killed..

NoCheatImPGM 01/19/2014 10:37

[IMG=expandable: 1]http://puu.sh/6qezm.png[/IMG]

th0rex 01/19/2014 11:13

If you want to change it ingame, just do something like this:
Code:

// In your player code
public void UpdateHP()
        {
            GameDatabase.Instance.UpdateHP(this);
            var ack = new Packet(EHpUpdate);
            ack.Write<uint>(HP);
            Session.Send(ack.GetData());
        }

And then just call it

gabrielcool1 01/19/2014 16:12

Quote:

Originally Posted by NoCheatImPGM (Post 26817462)
[IMG=expandable: 1]http://puu.sh/6qezm.png[/IMG]

That wasnt working ;s a new guy in our team had to modify the source.

NoCheatImPGM 01/19/2014 16:38

So you can use this code :

Quote:

else if (packetHeader.StartsWith("LifeTest"))
{
string LifeTry = packetParser.GetString();
this.Ship.maxHP = Convert.ToUInt32(LifeTry);
this.Ship.HP = this.Ship.maxHP;
}
Then you have to write : LifeTest|900000
in the CLI form.

th0rex 01/19/2014 16:59

And he should check if the ship is Admin ...

nckrnckr 01/19/2014 22:09

hi i ask some question :)

[IMG=expandable: 1]http://i.hizliresim.com/wb2g30.png[/IMG]

[IMG=expandable: 1]http://4.bp.blogspot.com/-a6oyOqOyyAg/UGF_kyNjS6I/AAAAAAAAAB4/apvf7aijNeQ/s1600/Ads%C4%B1z.png[/IMG]

howw to add my server drone flight scheme ?

manulaiko 01/20/2014 10:16

Can you add this thread to the tutorials?
[Only registered and activated users can see links. Click Here To Register...]

Quote:

Originally Posted by nckrnckr (Post 26828867)
hi i ask some question :)

[IMG=expandable: 1]http://i.hizliresim.com/wb2g30.png[/IMG]

[IMG=expandable: 1]http://4.bp.blogspot.com/-a6oyOqOyyAg/UGF_kyNjS6I/AAAAAAAAAB4/apvf7aijNeQ/s1600/Ads%C4%B1z.png[/IMG]

howw to add my server drone flight scheme ?

You can't.
If you don't use the new swf you won't be able, because the formations are in the [Only registered and activated users can see links. Click Here To Register...] file

Requi 01/20/2014 13:16

Quote:

Originally Posted by manulaiko (Post 26831783)
Can you add this thread to the tutorials?
[Only registered and activated users can see links. Click Here To Register...]

I already did it at the first time, when you did ask.
[IMG=expandable: 0]http://puu.sh/6rzJC.png[/IMG]

manulaiko 01/20/2014 19:45

Quote:

Originally Posted by Requi (Post 26833047)
I already did it at the first time, when you did ask.
[IMG=expandable: 0]http://puu.sh/6rzJC.png[/IMG]

Didn't see it xD, thanks anyway

mirecekxxx 01/21/2014 16:46

Guys, is there any way to enable laser flash when lasers shooting ? Any packet or ?.. I cannnot find anything..

nckrnckr 01/21/2014 17:41

[IMG=expandable: 1]http://i.hizliresim.com/KPo9M8.png[/IMG]

title seems
drones seems
ranks seems
but ClanTag not seems

how to :S ı can not find ''where add packet'' :SS

th0rex 01/21/2014 18:09

Just send that with the right values for the user.
Program.Maps[this.mapid].SendForEverUserOnMap("f|C|" + this.userid + "|" + Program.Maps[this.mapid].Users[userid].Ship.ShipId + "|1|" + Program.Maps[this.mapid].Users[userid].Ship.ClanTag + "|" + Program.Maps[this.mapid].Users[userid].Ship.Name + "|" + Program.Maps[this.mapid].Users[this.userid].Ship.X + "|" + Program.Maps[this.mapid].Users[this.userid].Ship.Y + "|" + Program.Maps[this.mapid].Users[userid].Ship.FactionId + "|0|1|1|3|0");

nckrnckr 01/21/2014 18:26

Quote:

Originally Posted by omitma (Post 26849294)
Just send that with the right values for the user.
Program.Maps[this.mapid].SendForEverUserOnMap("f|C|" + this.userid + "|" + Program.Maps[this.mapid].Users[userid].Ship.ShipId + "|1|" + Program.Maps[this.mapid].Users[userid].Ship.ClanTag + "|" + Program.Maps[this.mapid].Users[userid].Ship.Name + "|" + Program.Maps[this.mapid].Users[this.userid].Ship.X + "|" + Program.Maps[this.mapid].Users[this.userid].Ship.Y + "|" + Program.Maps[this.mapid].Users[userid].Ship.FactionId + "|0|1|1|3|0");

very thanks :D working :)
parameters stored there :)

EDİT : why nickname color not green ?

[IMG=expandable: 1]http://i.hizliresim.com/emzYoZ.png[/IMG]

NoCheatImPGM 01/21/2014 18:52

Try this :
Code:

if (Pair.Value.Ship.clan == this.Users[userId].Ship.clan)
                            {
                                this.Users[Pair.Key].Send("f|C|" + userId + "|" + Program.Users[userId].Ship.Id + "|1| " + Program.Users[userId].Ship.clan + "|" + Program.Users[userId].Ship.Name + "|" + Program.Users[userId].Ship.x + "|" + Program.Users[userId].Ship.y + "|" + Program.Users[userId].Ship.factionId + "|1|" + Program.Users[userId].Ship.rank + "|" + ((this.factionId != Program.Users[userId].Ship.factionId && IsStarterMap) ? "1" : "0") + "|1|" + Program.Users[userId].Ship.rings + "");
                            }


nckrnckr 01/21/2014 20:22

Quote:

Originally Posted by NoCheatImPGM (Post 26850046)
Try this :
Code:

if (Pair.Value.Ship.clan == this.Users[userId].Ship.clan)
                            {
                                this.Users[Pair.Key].Send("f|C|" + userId + "|" + Program.Users[userId].Ship.Id + "|1| " + Program.Users[userId].Ship.clan + "|" + Program.Users[userId].Ship.Name + "|" + Program.Users[userId].Ship.x + "|" + Program.Users[userId].Ship.y + "|" + Program.Users[userId].Ship.factionId + "|1|" + Program.Users[userId].Ship.rank + "|" + ((this.factionId != Program.Users[userId].Ship.factionId && IsStarterMap) ? "1" : "0") + "|1|" + Program.Users[userId].Ship.rings + "");
                            }


dont work :S

ipentheaod 01/29/2014 07:17

I can't get on localhost,even if MYSQL and Apache on.Any help?

epixvkad 01/29/2014 15:43

I need help.I have own server files(edited azure) but when I try to go on localhost,it redirects me to localhost/xampp/
Any options to stop?

-Zocker- 01/29/2014 18:25

i search a good Coder for my new do p-Server .
Pn. me or adde me in Skype: essling007123

manulaiko 01/29/2014 19:13

Quote:

Originally Posted by -Zocker- (Post 26952576)
i search a good Coder for my new do p-Server .
Pn. me or adde me in Skype: essling007123

It's funnier make it by your own than asking other's to code it for you

0wnix 01/29/2014 19:33

Hey guys, I am looking for the packet that send the "shield regeneration animaton" (not the fortress one), anyone have it ?

thanks in advance

Requi 01/29/2014 19:37

Quote:

Originally Posted by player.elite (Post 26953752)
Hey guys, I am looking for the packet that send the "shield regeneration animaton" (not the fortress one), anyone have it ?

thanks in advance

Do you mean the blue numbers?

0wnix 01/29/2014 19:45

Quote:

Originally Posted by Requi (Post 26953803)
Do you mean the blue numbers?

Nope, I already have this, I mean this
[Only registered and activated users can see links. Click Here To Register...]

asterixxx1995 01/29/2014 20:04

this.Send("0|A|SHS|0|");

0wnix 01/29/2014 20:20

Quote:

Originally Posted by asterixxx1995 (Post 26954216)
this.Send("0|A|SHS|0|");

Thanks it works (this.Send("0|A|SHS|"+ this.userId + "|");) btw how to stop it cause it do not disappear :B

EDIT : Found, 0|A|SHS|userId|Duration(second)

EDIT2 : wrong :( it continue even if the shield is full


All times are GMT +2. The time now is 16:23.

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