21.04.2011, 09:04
Under a CMD, insert "CMD:nameofcommand". Example:
pawn Код:
CMD:teleport(playerid, params[])
{
if(!IsPlayerLAdmin(playerid)) return 0; // You can change this return
SetPlayerPos(playerid, x, y, z); // You change x, y and z
SendClientMessage(...) // Insert a message
return 1;
}