Jump to content
  • 0
Sign in to follow this  
Saruman

Status Def

Question

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;
Edited by Saruman

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.