[Ajuda] Verificar valor da variavel
#5

usando o seu como base

pawn Code:
//TOPO Do gamemode
new tanogod[MAX_PLAYERS] = 0;

// OnPlayerConnect
tanogod[playerid] = 0;


//onplayercommand
if (strcmp("/god", cmdtext, true, 10) == 0)
{
    tanogod[playerid] = 1;
    SetPlayerHealth(playerid, 999999);
    SendClientMessage(playerid, -1, "[GOD] Vocк ativou o modo god, para desativar digite: (/god)");
    return 1;
}

if (strcmp("/ofgod", cmdtext, true, 10) == 0)
{
    if(tanogod[playerid] == 0)
    {
        SendClientMessage(playerid, -1, "Nao tens god ligado");
        return 1;
    }
    else
    {
        tanogod[playerid] = 0;
        SetPlayerHealth(playerid, 100);
        SendClientMessage(playerid, -1, "[GOD] Vocк desativou o modo god. (/god)");
    }
    return 1;
}
tenta ae
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: 1 Guest(s)