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
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();
}
}
Private private server :P READ FOR MORE INFO 12/01/2010 - SRO Private Server - 12 Replies hey guys im wondering if there is anyway to make a real private server like ZSZC or SWSRO or MYSRO but to where i can only play and level a character and as if it was a real private server. but just for me, not like an emulator where im already lvl 90 or 120 or whatever. i mean one where i set the rates and i level. if not then ok u can close this. but i was just wondering.