27.02.2010, 18:42
If you dont know how to make a teleport command then you should really learn pawno
Put that in OnPlayerCommandText.
pawn Код:
if(!strcmp(cmdtext, "/teleport", true))
{
SetPlayerPos(playerid, x,y,z);
return 1;
}