13.08.2011, 13:07
Hey yeah i create /leavedm
Heres i want when i type /leavedm i will leave the deathmatch area
On Next Type /leavedm i need to have a message return saying "You already Leave The DM"
Heres The Code
Hope you help me
Heres i want when i type /leavedm i will leave the deathmatch area
On Next Type /leavedm i need to have a message return saying "You already Leave The DM"
Heres The Code
pawn Код:
if(strcmp("/leavedm", cmdtext, true, 10) == 0)
{
SetPVarInt(playerid, "InDm", 0);
SetPlayerPos(playerid,-687.8727,938.8134,13.6328);
SetPlayerFacingAngle(playerid, 13.6328);
SendClientMessage(playerid, COLOR_RED, "You left The Deathmatch Area");
return 1;
}