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

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.