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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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