07.01.2010, 19:39
Under your teleport command:
Somewhere in the gamemode/filterscript:
Easiest way imo.
Код:
new string[128]; format(string,128,"%s has teleported to area (/command)",ReturnPlayerName(playerid)); SendClientMessageToAll(COLOR_,string);
Код:
stock ReturnPlayerName(playerid) //By Alex "******" Cole
{
new pname[MAX_PLAYER_NAME];
pname="Invalid PlayerID";
if(IsPlayerConnected(playerid))
{
GetPlayerName(playerid, pname, sizeof (pname));
}
return pname;
}

