22.01.2017, 22:37
If i have 99 score it don't work if i put in 100 it worked... it must be 99 score or higher to use this command.
Код:
CMD:test(playerid, params[])
{
if (GetPlayerScore(playerid) > 99)
{
SendClientMessage(playerid, -1, "Worked!");
return 1;
}
return SendClientMessage(playerid, COLOUR_RED, "You must have 99 or higher score to this command.");
}


