Private Server Info and Support Thread

02/22/2014 00:52 Requi#496
What do you mean with from serverside?
Just changing the text on the client?
02/22/2014 00:55 csganja#497
---
02/22/2014 00:56 Requi#498
No, this isn't possible, sorry.
02/22/2014 12:35 csganja#499
---
02/22/2014 13:00 th0rex#500
"0|A|HL|1|" + this.userid + "|HPT|" + this.Ship.HP + "|" + heal
for hp and
"0|A|HL|1|" + this.userid + "|SHD|" + this.Ship.Shield + "|" + heal
for shield.
02/22/2014 21:22 csganja#501
---
02/23/2014 13:27 123can321#502
help, please
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
trade = [Only registered and activated users can see links. Click Here To Register...]
Hangar something cannot be purchased: [Only registered and activated users can see links. Click Here To Register...]


My English is not good turk, thanks for your help
02/23/2014 13:31 cryz35#503
:)
Quote:
Originally Posted by 123can321 View Post
help, please
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
trade = [Only registered and activated users can see links. Click Here To Register...]
Hangar something cannot be purchased: [Only registered and activated users can see links. Click Here To Register...]


My English is not good turk, thanks for your help
Kendin kodlaman lazim
02/23/2014 13:38 123can321#504
Quote:
Originally Posted by cryz35 View Post
:)

Kendin kodlaman lazim
Aurora 1.2 , I'm using the ready-to-pack, not whether they are
++ trade = fixed it
02/23/2014 14:52 csganja#505
---
02/24/2014 08:40 Imti™#506
Can anyone help me to setup this "/indexInternal.es?action=internalSettings" thing, it doesnt change resolution etc :(

And other problem is my chat (using Darkorbit ChatServer):
[Only registered and activated users can see links. Click Here To Register...]
& How i remove that teamspeak server ip from chat :D
02/24/2014 12:39 csganja#507
---
02/24/2014 12:41 Requi#508
Quote:
Originally Posted by Imti™ View Post
Can anyone help me to setup this "/indexInternal.es?action=internalSettings" thing, it doesnt change resolution etc :(

And other problem is my chat (using Darkorbit ChatServer):
[Only registered and activated users can see links. Click Here To Register...]
& How i remove that teamspeak server ip from chat :D
1. Learn php and check the sourcecode.
2. Open port 9338 in your firewall
3. In the translationSpacemap.php

Quote:
Originally Posted by csganja View Post
Ok, got the rocket launcher packets...

0|RL|A|attacker_id|enemy_id|rockets_nr|rocket_type

attacker_id - your ship id
enemy_id - enemy ship id
rockets_nr - 3-5 but can be any number
rocket_type - 7-9 default RL rockets but can be any rocket from 1-10
I already have since a long time :p

Code:
else if (packetHeader.StartsWith("RL"))
                            {
                                string packetSubHeader = packetParser.getString();
                                if (packetSubHeader.StartsWith("L"))
                                {
                                    for (var i = 0; i <= 5; i++)
                                    {
                                        this.Send("0|RL|S|2|" + this.Ship.rockettype + "|" + i);
                                        await Task.Delay(1000);
                                    }
                                    this.Send("0|CLD|ROK|5");
                                }
                                else if (packetSubHeader.StartsWith("A"))
                                {
                                    this.Send("0|RL|A|" + this.userId + "|" + this.selectedUserId + "|5|" + this.Ship.rockettype);
                                    for (var i = 5; i >= 0; i--)
                                    {
                                        this.Send("0|RL|S|2|" + this.Ship.rockettype + "|" + i);
                                        await Task.Delay(1000);
                                    }
                                    this.Send("0|CLD|ROK|5");
                                }
                                else if (packetSubHeader.StartsWith("SEL"))
                                {
                                    this.Ship.rockettype = packetParser.getUInt();
                                }
                            }
02/24/2014 16:25 th0rex#509
Please add [Only registered and activated users can see links. Click Here To Register...] to the list. Thanks in advance ;).
02/24/2014 16:26 csganja#510
---