jaiko23 1 Posted July 14, 2015 hi its me again.. i was wondering.. im trying to find SG Skill which is Demon(increase your atkspd by getting you blind)... can someone point out where is can i remove the blind effect of that skill? Quote Share this post Link to post Share on other sites
0 Winterfox 83 Posted July 14, 2015 (edited) @@jaiko23 Open /map/pc.c and outcomment / delete: if (pc->checkskill(sd, SG_DEVIL) && !pc->nextjobexp(sd)) clif->status_change(&sd->bl,SI_DEVIL1, 1, 0, 0, 0, 1); //Permanent blind effect from SG_DEVIL. and: if( pc_checkskill(sd, SG_DEVIL) && !pc_nextjobexp(sd) ) clif_status_load(&sd->bl, SI_DEVIL, 0); //Remove perma blindness due to skill-reset. Open /map/clif.c and outcomment / delete: if (pc->checkskill(sd, SG_DEVIL) && !pc->nextjobexp(sd)) //blindness [Komurka] clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_DEVIL1); Edited July 14, 2015 by Winterfox Quote Share this post Link to post Share on other sites
0 Oxxy 24 Posted July 14, 2015 (edited) open pc.c and delete this(6261-6262): if (pc->checkskill(sd, SG_DEVIL) && !pc->nextjobexp(sd)) clif->status_change(&sd->bl,SI_DEVIL1, 1, 0, 0, 0, 1); //Permanent blind effect from SG_DEVIL. and aswell this(6941-6942): if( pc_checkskill(sd, SG_DEVIL) && !pc_nextjobexp(sd) ) clif_status_load(&sd->bl, SI_DEVIL, 0); //Remove perma blindness due to skill-reset. then open clif.c and delete this (9319-9320): if (pc->checkskill(sd, SG_DEVIL) && !pc->nextjobexp(sd)) //blindness [Komurka] clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_DEVIL1); Edited July 14, 2015 by Oxxy Quote Share this post Link to post Share on other sites
0 jaiko23 1 Posted July 14, 2015 wow thanks. no wonder i cant find em... im looking at battle.c skill.c even at skill_db lol thanks lemme try this Quote Share this post Link to post Share on other sites
hi its me again.. i was wondering.. im trying to find SG Skill which is Demon(increase your atkspd by getting you blind)...
can someone point out where is can i remove the blind effect of that skill?
Share this post
Link to post
Share on other sites