Easy command to know the position of any player of the server just put
$(command) (NICK)
$(command) (NICK)
Quote:
case X: //Pos command By HarD
{
try
{
if (sender.isGm)
{
Player player = GameServer.GetPlayersManager().GetPlayerByName(val ues[0]);
string message;
message = ("Map: " + player.map.mapId + " X: " + player.x.ToString() + " Y: " + player.y.ToString());
sender.SendPacket(GlobalMessage.MakeMessage(0, 0, 6, message));
}
}
catch { }
}
break;