17.09.2012, 18:01
If you want the "you don't have 3 score" message to be true then:
pawn Код:
if(strcmp("/jetpack", cmdtext, true) == 0)
{
if(GetPlayerScore(playerid) >= 3)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_USEJETPACK);
}
else
{
SendClientMessage(playerid, 0xFFFFFFFF, "you don't have 3 score");
}
return 1;
}