07.06.2013, 12:48
pawn Код:
new clickedtimes[MAX_PLAYERS];
pawn Код:
CMD:balh(playerd, params[])
{
if(clickedtimes[playerid] == 3)
{
//He can't use it anymore.
}
else
{
//He can use the CMD.
clickedtimes[playerid]++; // Increasing integer by 1.
}
}