15.10.2011, 13:35
Yes, see if this work.
pawn Код:
GetPlayerName(strval(tmp), Pname, sizeof(Pname));
format(String, sizeof(String), "You have teleported to %s(%d)", Pname, strval(tmp));
SendClientMessage(playerid, COLOR, String);
GetPlayerName(playerid, Pname, sizeof(Pname));
format(String, sizeof(String), "%s(%d) was teleported to you", Pname, playerid);
SendClientMessage(strval(tmp), COLOR, String);

