17.12.2017, 11:16
Esse sistema й obsoleto, a partir da 0.3z jб й possнvel identificar nativamente em que parte do corpo o jogador foi atingido.
Veja: https://sampwiki.blast.hk/wiki/OnPlayerTakeDamage
Exemplo (da prуpria wiki):
Veja: https://sampwiki.blast.hk/wiki/OnPlayerTakeDamage
Exemplo (da prуpria wiki):
PHP Code:
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid, bodypart)
{
if(issuerid != INVALID_PLAYER_ID && weaponid == 34 && bodypart == 9)
{
// One shot to the head to kill with sniper rifle
SetPlayerHealth(playerid, 0.0);
}
return 1;
}