Isolate Posted January 31, 2017 Share Posted January 31, 2017 Di ma FCP kapag walang suot tsaka lang po sya ma FCP kapag suot na meron po ba kayong script na kahit walang suot ma FCP para kapag na full strip Quote Link to comment Share on other sites More sharing options...
Technoken Posted January 31, 2017 Share Posted January 31, 2017 (edited) Try mo to find and change this line on src/map/skill.c from // Full Chemical Protection case CR_FULLPROTECTION: { unsigned int equip[] = {EQP_WEAPON, EQP_SHIELD, EQP_ARMOR, EQP_HEAD_TOP}; int i_eqp, s = 0, skilltime = skill_get_time(skill_id,skill_lv); for (i_eqp = 0; i_eqp < 4; i_eqp++) { if( bl->type != BL_PC || ( dstsd && pc_checkequip(dstsd,equip[i_eqp]) < 0 ) ) continue; sc_start(src,bl,(sc_type)(SC_CP_WEAPON + i_eqp),100,skill_lv,skilltime); s++; } to // Full Chemical Protection case CR_FULLPROTECTION: { unsigned int equip[] = {EQP_WEAPON, EQP_SHIELD, EQP_ARMOR, EQP_HEAD_TOP}; int i_eqp, s = 0, skilltime = skill_get_time(skill_id,skill_lv); for (i_eqp = 0; i_eqp < 4; i_eqp++) { if( bl->type != BL_PC ) continue; if(tsc->data[SC_STRIPWEAPON + i_eqp]) status_change_end(bl, (sc_type)(SC_STRIPWEAPON + i_eqp), -1 ); sc_start(src,bl,(sc_type)(SC_CP_WEAPON + i_eqp),100,skill_lv,skilltime); s++; } Edited January 31, 2017 by Technoken Quote Link to comment Share on other sites More sharing options...