20.05.2014, 23:36
Quote:
The command that the player is going to use can be used for other things too (/me and /do). Is it possible to do this another way?
|
PHP Code:
CMD:cmd(playerid, params[])
{
// Do stuff here
UsedCmd[playerid]++; // This will increase it +1
}
PHP Code:
CMD:me(playerid, params[])
{
// The command etc
UsedCmd[playerid]++;
}
"How would I be able to setup the rest of the system functioning only if you used the specific command within a specific time? Perhaps 1 minute."
I would suggest using timers.