13.11.2010, 13:04
Try this.
pawn Код:
if(strcmp(cmd,"/armour",true)==0)
{
if(GetPlayerMoney(playerid) < 1500)
{
SendClientMessage(playerid,COLOR_RED,"** Sorry, you do not have enough cash. You need $1500!");
}
else
{
SetPlayerArmour(playerid,100);
GivePlayerMoney(playerid, -1500); //
}
if(!IsPlayerInRangeOfPoint(playerid, 10, 316.524994,-167.706985,999.661987) || IsPlayerInRangeOfPoint(playerid, 3,316.524994,-167.706985,999.661987))
{
SendClientMessage(playerid,COLOR_RED,"** Sorry, you are not in a store.");
}
return 1;
}