View Single Post
  #2  
Old 01-30-2004, 07:10 AM
napo_p2p napo_p2p is offline
oh snaps
napo_p2p's Avatar
Join Date: Sep 2003
Location: Pismo Beach, California
Posts: 2,118
napo_p2p has a spectacular aura aboutnapo_p2p has a spectacular aura about
Send a message via AIM to napo_p2p Send a message via MSN to napo_p2p
Re: Help with actionprojectile

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
Reply With Quote