Star Gladiator Skill

jaiko23

New member
Messages
94
Points
0
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?

 
@@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:

Code:
if (pc->checkskill(sd, SG_DEVIL) && !pc->nextjobexp(sd)) //blindness [Komurka]        clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_DEVIL1);
 
Last edited by a moderator:
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):
 

Code:
    if (pc->checkskill(sd, SG_DEVIL) && !pc->nextjobexp(sd)) //blindness [Komurka]        clif->sc_end(&sd->bl, sd->bl.id, SELF, SI_DEVIL1);
 
Last edited by a moderator:
wow thanks. no wonder i cant find em... im looking at battle.c skill.c even at skill_db lol thanks lemme try this
default_happy.png


 
Back
Top