[Ajuda] aumentar dano de todas as armas
#1

olб galera da fуrum samp estou a procura de uma fs que aumente o dano de todas as armas para deixar o servidor mais RPG.

queria aumentar o dobro de dano de todas as armas.
jб procurei no ****** mais achei e testei e nгo mudava nada queria um que funciona e que seje para todas as armas.
Reply
#2

Vк se serve
https://sampforum.blast.hk/showthread.php?tid=191121
Reply
#3

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid)
{
    if(issuerid != INVALID_PLAYER_ID) // If not self-inflicted
    {
        new
            infoString[128],
            weaponName[24],
            victimName[MAX_PLAYER_NAME],
            attackerName[MAX_PLAYER_NAME];
 
        GetPlayerName(playerid, victimName, sizeof (victimName));
        GetPlayerName(issuerid, attackerName, sizeof (attackerName));
 
        GetWeaponName(weaponid, weaponName, sizeof (weaponName));
 
        format(infoString, sizeof(infoString), "%s has made %.0f damage to %s, weapon: %s", attackerName, amount, victimName, weaponName);
        SendClientMessageToAll(-1, infoString);
    }
    return 1;
}
pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid)
{
    if(issuerid != INVALID_PLAYER_ID && weaponid == 34)
    {
        // One shot to kill with sniper rifle
        SetPlayerHealth(playerid, 0.0);
    }
    return 1;
}
https://sampwiki.blast.hk/wiki/OnPlayerTakeDamage
Reply
#4

Mteck e so meter a public lб e defina-la ?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)