Crystalization / Freezing i think

Skymomo

New member
Messages
14
Points
0
hi hercules i want to remove the no item effect of

diamond dust but i can't find the code please help me

 
Open src/map/pc.c and search for:

if (nameid != ITEMID_NAUTHIZ && sd->sc.opt1 > 0 && sd->sc.opt1 != OPT1_STONEWAIT && sd->sc.opt1 != OPT1_BURNING)replace with:
Code:
if (nameid != ITEMID_NAUTHIZ && sd->sc.opt1 > 0 && !sd->sc.opt1 != OPT1_CRYSTALIZE && sd->sc.opt1 != OPT1_STONEWAIT && sd->sc.opt1 != OPT1_BURNING)
All those skills and npc effects that use SC_COLD will also be affected and the user will be able to use items.Hope this works c:

 
Back
Top