03.07.2014, 07:18
I created a command and it looks like this
But when im relogging then i can do it again without waiting again...
Код:
CMD:signcheck(playerid, params[])
{
if(JustReported[playerid] > 0)
{
SendClientMessageEx(playerid, COLOR_GREY, "Wait 1 hour to sign again!");
return 1;
}
JustReported[playerid]=3600;
GivePlayerCash(playerid, 50000);
SendClientMessageEx(playerid, COLOR_WHITE, "You have successfully signed your check.");
return 1;
}



