Jump to content
  • 0
Sign in to follow this  
jaiko23

Magnus Exorcismus skill help !

Question

Sorry in advance I dont know if im on the right section...

 

anyway can someone help me...

 

i wanna edit Magnus Exorcismus skill.. making it hit player too.. i mean not only when the wear undead armor... even if they wear aside from undead armor.. is it anyway possible?

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0

In src/map/skill.c

 

Look for this

case UNT_MAGNUS:			if (!battle->check_undead(tstatus->race,tstatus->def_ele) && tstatus->race!=RC_DEMON)				break;			skill->attack(BF_MAGIC,ss,&src->bl,bl,sg->skill_id,sg->skill_lv,tick,0);			break;

And replace with this:

case UNT_MAGNUS:    if (!battle_check_undead(tstatus->race,tstatus->def_ele) && tstatus->race!=RC_DEMON && tstatus->race != RC_DEMIHUMAN)        break;    skill_attack(BF_MAGIC,ss,&src->bl,bl,sg->skill_id,sg->skill_lv,tick,0);    break;
Edited by Dogpatch

Share this post


Link to post
Share on other sites
  • 0
case UNT_MAGNUS:
    if (!battle_check_undead(tstatus->race,tstatus->def_ele) && tstatus->race!=RC_DEMON && tstatus->race != RC_DEMIHUMAN)
        break;
    skill_attack(BF_MAGIC,ss,&src->bl,bl,sg->skill_id,sg->skill_lv,tick,0);
    break;
 
this one not working...
 
 
i was thinking i saw some RC_DEMIPLAYER.. should i change it with that? or erm.. idk but its not working.. 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.