Jump to content
  • 0
Sign in to follow this  
Axl

Remove Effect on Kaite and Kaupe Skills

Question

Hey guys, I've got a question. I searched the entire source and couldn't find the visual effect activation of Kaupe and Kaite, because I'd like to remove them. Could you help me?

 

att.

post-148-0-66738700-1387488121_thumb.jpg

post-148-0-49142500-1387488123_thumb.jpg

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Open srcmapbattle.c and search for:

clif->specialeffect(bl, 462, AREA);
change it to:
//clif->specialeffect(bl, 462, AREA);
Now open srcmapstatus.c, search for:
set_sc( SL_KAUPE , SC_KAUPE , SI_KAUPE , SCB_NONE );set_sc( SL_KAITE , SC_KAITE , SI_KAITE , SCB_NONE );
replace it with:
set_sc( SL_KAUPE , SC_KAUPE , SI_BLANK , SCB_NONE );set_sc( SL_KAITE , SC_KAITE , SI_BLANK , SCB_NONE );
Open srcmapskill.c and find:
clif->specialeffect(bl, 438, AREA)
change it to:
 //clif->specialeffect(bl, 438, AREA);
I think this way there won't be any effects regarding those stati, but I'm not sure.. Edited by pan

Share this post


Link to post
Share on other sites
  • 0

Those clifs just signal that the status has started, I think that those "permanent" effects are signalised by the SI flag, but again, I'm not so sure of that c:

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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