SA-MP Forums Archive
OnPlayerTakeDamage - bodypart parameter - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: OnPlayerTakeDamage - bodypart parameter (/showthread.php?tid=511823)



OnPlayerTakeDamage - bodypart parameter - Salim_Karaja - 07.05.2014

When onplayertakedamage event is called, the bodypart parameter is always 1,
even when I shoot at diffrent places, I've debugged it like this;

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
{
    printf("bodypart = %d", bodypart);
// rest of the code ..
return 1;
}