Hello, someone could explain to me the following settings ?
pc_status_def_rate: 100mob_status_def_rate: 100
pc_max_status_def: 100mob_max_status_def: 100
I only want to put 400 of luk - immunity of freezing ( 1 of luk = 0,25% resistance )
Thanks!!
@EDIT
I've made this change on source, is it right?
Before:
case SC_FREEZE: sc_def = st->mdef*100; sc_def2 = st->luk*10 + SCDEF_LVL_DIFF(bl, src, 99, 10); tick_def = 0; //No duration reduction#ifdef RENEWAL tick_def2 = status_get_luk(src) * -10; //Caster can increase final duration with luk#else tick_def2 = 0; //No duration reduction#endif break;
After:
case SC_FREEZE: sc_def = st->mdef*100; sc_def = st->luk*25;// sc_def2 = st->luk*10 + SCDEF_LVL_DIFF(bl, src, 99, 10); tick_def = 0; //No duration reduction#ifdef RENEWAL tick_def2 = status_get_luk(src) * -10; //Caster can increase final duration with luk#else tick_def2 = 0; //No duration reduction#endif break;