View Single Post
  #2  
Old 09-19-2008, 06:18 PM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

Quote:
Originally Posted by So_1337
Heya.

It seems that both Customer Service Resurrect and Divine Resurrect give Resurrection Effects as a debuff once the rez is accepted.

If these spells shouldn't give Rez effects:

in zone/client_process.cpp, void Client::OPRezzAnswer(const EQApplicationPacket* app),

around line 943, try changing

Code:
SpellOnTarget(756,this);
to:

Code:
// No Rez effects for Customer Service Rez, or Divine Rez
if((ra->spellid != 994) && (ra->spellid != 2738))
                        SpellOnTarget(756,this);
Untested.
Reply With Quote