11.06.2010, 12:02
You have to put { brackets under the strcmp lines.
For example:
For example:
pawn Код:
if(!strcmp("/buy micro SMG", cmdtext, true))
{
SendClientMessage(playerid,0xAA3333AA,"You have bought a Micro SMG for $4000.");
GivePlayerWeapon(playerid, 28,200);
GivePlayerMoney(playerid,-4000);
return 1;
}