24.12.2011, 20:31
If i remember right the forum has a "someone posted already" warning and someone already answered correctly
EDIT: No it doesn't have that anymore...
Also i prefer to do my commands like that.
EDIT: Try this one. Should work
EDIT: No it doesn't have that anymore...
Also i prefer to do my commands like that.
pawn Код:
if(strcmp("/cop", cmdtext, true, 4) ==0)
{
if (!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xFF0000FF, "You are not an Admin!")
SetPlayerHealth(playerid, 100);
SetPlayerArmour(playerid, 100);
GivePlayerWeapon(playerid, 24, 9999);
SetPlayerSkin(playerid, 280);
SendClientMessage(playerid, 0x80FFFFFF, "You are now a cop!");
return 1;
}