[ajuda] Baixa dano das armas pelo No-Leg
#1

pawn Код:
public OnPlayerGiveDamage(playerid, damagedid, Float:amount, weaponid)
{
    new Float:Life, Float:Colete, Float:Dano;
    GetPlayerArmour(damagedid, Colete);
    GetPlayerHealth(damagedid, Life);
    amount = amount/4;
    if(Colete > 0)
    {
        if(amount > Colete)
        {
            Dano = amount - Colete;
            Life = Life - Dano;
            SetPlayerArmour(damagedid, 3.0);
            SetPlayerHealth(damagedid, Life);
            return 1;
        }
        Colete = Colete - amount;
        SetPlayerArmour(damagedid, Colete);
    }
    if(Colete < 0)
    {
        Life = Life - amount;
        SetPlayerHealth(damagedid, Life);
    }
    return 1;
}
esse no leg ta matadno com 2 tiros n sei pq
Reply


Messages In This Thread
[ajuda] Baixa dano das armas pelo No-Leg - by coringa_smith157 - 04.06.2012, 14:35
Re: [ajuda] Baixa dano das armas pelo No-Leg - by EditPawn - 04.06.2012, 15:21
Re: [ajuda] Baixa dano das armas pelo No-Leg - by Jigsaw` - 04.06.2012, 17:38
Re: [ajuda] Baixa dano das armas pelo No-Leg - by paulor - 04.06.2012, 18:11

Forum Jump:


Users browsing this thread: 2 Guest(s)