13.08.2011, 11:35
IF you want a command that leaves that area, it will be similar to a teleportation command right?
pawn Код:
if(strcmp("/leavedm", cmdtext, true, 10) == 0)
{
SetPlayerPos(playerid, X, Y, Z); // Place the X Y Z of the position where they player will be when they type this command
SendClientMessage(playerid, COLOR_CODEHERE, "You have left the Deathmatch Area");
return 1;
}