Z e r o Posted September 6, 2013 Posted September 6, 2013 I already disabled its effect but i want to remove the icon on the right side of screen Quote
Akinari Posted September 6, 2013 Posted September 6, 2013 I'm pretty sure just disabling the sc_start in skill.c will do what you want. Not sure what you've currently done to make it not work with the icon. Either: skill.c #ifdef RENEWAL sc_start(src,src,SC_EXTREMITYFIST2,100,skill_lv,skill_get_time(skill_id,skill_lv)); #endif To: #ifdef RENEWAL // sc_start(src,src,SC_EXTREMITYFIST2,100,skill_lv,skill_get_time(skill_id,skill_lv)); #endif Or: status.c #ifdef RENEWAL set_sc( MO_EXTREMITYFIST , SC_EXTREMITYFIST2 , SI_EXTREMITYFIST , SCB_NONE ); #endif To: #ifdef RENEWAL set_sc( MO_EXTREMITYFIST , SC_EXTREMITYFIST2 , SI_BLANK , SCB_NONE ); #endif Untested, but should work. Quote
Z e r o Posted September 6, 2013 Author Posted September 6, 2013 Thanks ill try it Thanks it worked Quote
Question
Z e r o
I already disabled its effect but i want to remove the icon on the right side of screen
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.