06.11.2014, 19:13
The problem is this logic here
if(issuerid != INVALID_PLAYER_ID && weaponid == 34 && bodypart == 9)
It should be
else if(issuerid != INVALID_PLAYER_ID && weaponid == 34 && bodypart == 9)
if(issuerid != INVALID_PLAYER_ID && weaponid == 34 && bodypart == 9)
It should be
else if(issuerid != INVALID_PLAYER_ID && weaponid == 34 && bodypart == 9)