On old emulator this do that LUK unfreeze more fast
src/map/status.c
case SC_FREEZE: sc_def = status->mdef*100; sc_def2 = status->luk*10; tick = status->luk>249?0:tick; // luk:250 = unfreeze break;
Now, the new emulator is (src/map/status.c)
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
And if add this "tick = status->luk>249?0:tick;" gives error.
Sorry my