Quote:
Originally Posted by Imti™
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
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();
}
}