[Ajuda] Sem lag no x1 (alguem sabe como?)
#1

SIM BPF DETECTED-_- alguem tem o code que faz com que possa atirar na skin ao inves do lag? esse negуcil de atira no alg й um saco
Reply
#2

https://sampforum.blast.hk/showthread.php?tid=327020
Reply
#3

ta vlw mais aonde eu coloco cada coisa :S sou novo em pawno
Reply
#4

pawn Код:
public OnPlayerGiveDamage(playerid, damagedid, Float:amount, weaponid)
{
    new Float:Life, Float:Colete, Float:Dano;
    GetPlayerArmour(damagedid, Colete);
    GetPlayerHealth(damagedid, Life);
    if(Colete > 0)
    {
        if(amount > Colete)
        {
            Dano = amount - Colete;
            Life = Life - Dano;
            SetPlayerArmour(damagedid, 0.0);
           SetPlayerHealth(damagedid, Life);
            return 1;
        }
        Colete = Colete - amount;
        SetPlayerArmour(damagedid, Colete);
    }
    if(Colete < 1)
    {
        Life = Life - amount;
        SetPlayerHealth(damagedid, Life);
    }
    return 1;
}
Ve se vai ae ._.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)