how to remove Adaptation of Circumtances cooldown delay?

razermantis

New member
Messages
32
Points
0
Github
razermantis920
how to remove Adaptation of Circumtances cooldown delay? kindly help me how to removie that delay

 
Find this on skill.c

if( sc->data[SC_DANCING] && skill->get_inf2(ud->skill_id)&INF2_SONG_DANCE && sd )
skill->blockpc_start(sd,BD_ADAPTATION,3000);

Add comment line // on that line

It should be like this

//if( sc->data[SC_DANCING] && skill->get_inf2(ud->skill_id)&INF2_SONG_DANCE && sd )
//skill->blockpc_start(sd,BD_ADAPTATION,3000);

After editing it, recompile your server

 
Back
Top