NPC Code:
if (strequals(#p(2),altairarrowhit)){
should be
NPC Code:
if (strequals(#p(0),altairarrowhit)){
helps?
or you can just go
NPC Code:
if (actionprojectile) {
if (strequals(#p(0),altairarrowhit)) {
if (!nopkzone) {
hurt 1;
}
}
}
that'll do .5 damage. Hope it helps