@edit
Vamos lб!
Primeiro no topo do seu GM vocк coloca:
PHP код:
new bool:Plantao[MAX_PLAYERS];
Depois vocк coloca o comando:
Caso seja STRCMP:
PHP код:
if (strcmp(cmd, "/plantao", true) == 0)
{
if (Plantao[playerid] == true) return SendClientMessage(playerid, 0xFF0000FF, "| ERRO | Vocк jб estб fazendo plantгo");
Plantao[playerid] = true;
SetTimerEx("GranaPlantao", 1000*60*40, false, "i", playerid);
SendClientMessage(playerid, -1, "** Vocк comeзou um plantгo de 40 minutos!");
return 1;
}
Caso seja ZCMD:
PHP код:
CMD:plantao(playerid)
{
if (Plantao[playerid] == true) return SendClientMessage(playerid, 0xFF0000FF, "| ERRO | Vocк jб estб fazendo plantгo");
Plantao[playerid] = true;
SetTimerEx("GranaPlantao", 1000*60*40, false, "i", playerid);
SendClientMessage(playerid, -1, "** Vocк comeзou um plantгo de 40 minutos!");
return 1;
}
E por fim, adicione isso no fim do GM:
PHP код:
forward GranaPlantao(playerid);
public GranaPlantao(playerid)
{
Plantao[playerid] = false;
GivePlayerMoney(playerid, 10000); // No lugar de 10000 vocк coloca o valor da grana
SendClientMessage(playerid, -1, "** Vocк terminou o plantao e foi recompensado!");
return 1;
}