Jump to content
  • 0
Sign in to follow this  
jaiko23

Star Gladiator Skill

Question

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

3 answers to this question

Recommended Posts

  • 0

@@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 by Winterfox

Share this post


Link to post
Share on other sites
  • 0

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 by Oxxy

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.