[Ajuda] Verificar valor da variavel
#2

Tenta assim:
pawn Code:
new godmod[MAX_PLAYERS];

if (!strcmp(cmdtext, "/godon"))
{
    if (godmod[playerid] == 1) return SendClientMessage(playerid, -1, "Jб estб ativado.");
    godmod[playerid] = 1;
    SetPlayerHealth(playerid, 999999);
    SendClientMessage(playerid, -1, "ATIVADO");
    return 1;
}
if (!strcmp(cmdtext,"/godoff"))
{
    if (godmod[playerid] == 1) // << Assim
    {
        SetPlayerHealth(playerid, 100);
        godmod[playerid] = 0;
        SendClientMessage(playerid, -1, "DESATIVADO");
    }
    return 1;
}
Te recomendo a utilizar uma variбvel indexada por players, para dividir, quando tiver trabalhando com comandos gerais, pois se dois players utilizarem o comando e a var nгo tiver indexada por jogador, isso irб gerar bugs na execuзгo do cуdigo.
Reply


Messages In This Thread
Verificar valor da variavel - by LucaAllexandre - 22.07.2013, 23:13
Re: Verificar valor da variavel - by WLSF - 22.07.2013, 23:18
Re: Verificar valor da variavel - by LucaAllexandre - 22.07.2013, 23:20
Re: Verificar valor da variavel - by WLSF - 22.07.2013, 23:21
Re: Verificar valor da variavel - by PT - 22.07.2013, 23:26
Re: Verificar valor da variavel - by LucaAllexandre - 22.07.2013, 23:34
Re: Verificar valor da variavel - by PT - 23.07.2013, 00:22

Forum Jump:


Users browsing this thread: 3 Guest(s)