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

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.