SA-MP Forums Archive
[AJUDA] Cуdigo Vida +100 !!! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Cуdigo Vida +100 !!! (/showthread.php?tid=316248)



[AJUDA] Cуdigo Vida +100 !!! - Mercurio - 05.02.2012

Resolvido --


Re: [AJUDA] Cуdigo Vida +100 !!! - Enderman - 05.02.2012

pawn Код:
new Float:Health;
GetPlayerHealth(playerid,Health);
if(Health > 100)
{
    //mensagem + kick
}



Re: [AJUDA] Cуdigo Vida +100 !!! - Mercurio - 06.02.2012

Poderia ser um pouco mais claro?? .-.

Fazendo um enorme favor!!


Re: [AJUDA] Cуdigo Vida +100 !!! - dPlaYer_ - 06.02.2012

Faz uma public '-'


Re: [AJUDA] Cуdigo Vida +100 !!! - WeenSoares_ - 06.02.2012

Disponha.
pawn Код:
public OnPlayerUpdate(playerid)
{
    new msg[128];
    new Float:Sangue;
    new pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pName, sizeof(pName));
    GetPlayerHealth(playerid, Sangue);
    if(Sangue > 100)
    {
        format(msg, sizeof(msg), "* %s foi kickado por estб com Life acima de 100.", pName);
        SendClientMessage(playerid, -1, msg);
        Kick(playerid);
    }
    return 1;
}



Re: [AJUDA] Cуdigo Vida +100 !!! - Mercurio - 06.02.2012

Muito obrigado '-' mesmo pedindo para despor, eu irei agradece-lo pela gentileza

Rep +


Re: [AJUDA] Cуdigo Vida +100 !!! - WeenSoares_ - 06.02.2012

rs de nada.