View Single Post
  #3  
Old 11-11-2002, 10:38 AM
tamarae
Hill Giant
 
Join Date: Oct 2002
Posts: 179
Default

in zone/attack.cpp on the line that says:

Code:
if (weapon->common.spellID == 1598)
    SpellFinished(weapon->common.spellID, GetID(), 10, 0);
Change it to:

Code:
if (weapon->common.spellID == 2434)
    SpellFinished(weapon->common.spellID, GetID(), 10, 0);

I also added the neutralize magic so that the sword of Capt Bvellos in Kael will proc properly:

Code:
if (weapon->common.spellID == 2434)  // Avatar (combat)
    SpellFinished(weapon->common.spellID, GetID(), 10, 0);
else if (weapon->common.spellID == 1775)  // Neutralize Magic (Kael sword)
    SpellFinished(weapon->common.spellID, GetID(), 10, 0);
else 
    SpellFinished(weapon->common.spellID, other->GetID(), 10, 0);
__________________
--Tamarae Dastile
The Dominare Server
Reply With Quote