Luk freeze status.

nyxfatalis

New member
Messages
64
Points
0
Hi hercules,

How to make a player cannot be freeze when he got 200 LUK.?

they said its on skill.conf but i cannot find it.

Thanks in advance,

 
Search this in your src/map/status.c:

case SC_FREEZE:sc_def = status->mdef*100;sc_def2 = status->luk*10;break;

Then add this line before break;

Code:
tick = status->luk>199?0:tick;
 
Last edited by a moderator:
Back
Top