View Single Post
  #8  
Old 11-22-2002, 04:49 PM
kpr
Fire Beetle
 
Join Date: Sep 2002
Posts: 2
Default

I'm new to all of this but for the avatar fix can't you use the 'goodEffect'? to see if the spell proc on the weapon is benifical? 99% of the benefical procs are cast on the client (minus dispell procs). I modified the proc code to the following:

if(spells[weapon->common.spellId].goodEffect == 1 || spells[weapon->common.spellId].goodEffect == 2)
SpellFinished(weapon->common.spellId, GetID(), 10, 0);
else
SpellFinished(weapon->common.spellId, other->GetID(), 10, 0);


like i said this is my first time messing with this, awesome code but is this correct? You guys seemed to know what you were doing so I'm assuming you've already ran across this but just checking thanks.
Reply With Quote