Quero Pedir alguem q possa me passa um comando q ja existe
#8

@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(playerid0xFF0000FF"| ERRO | Vocк jб estб fazendo plantгo");
    
Plantao[playerid] = true;
    
SetTimerEx("GranaPlantao"1000*60*40false"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(playerid0xFF0000FF"| ERRO | Vocк jб estб fazendo plantгo");
    
Plantao[playerid] = true;
    
SetTimerEx("GranaPlantao"1000*60*40false"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(playerid10000); // No lugar de 10000 vocк coloca o valor da grana
    
SendClientMessage(playerid, -1"** Vocк terminou o plantao e foi recompensado!");
    return 
1;

Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)