Jump to content
  • 0

Freeze Status Duration With Luk


Subzero

Question


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  60
  • Reputation:   0
  • Joined:  07/25/16
  • Last Seen:  

case SC_FREEZE:

            sc_def = status->mdef*100;

            sc_def2 = status->luk*10 + status_get_lv(bl)*10 - status_get_lv(src)*10;

            tick_def2 = status_src->luk*-10; //Caster can increase final duration with luk

            break;

 

Base on this script, i need better details regarding it. Lets say as written above, mdef*100, does this mean a player's mdef x 100? mdef x 100%?

 

as for sc_def2, luk*10? baseluk x 10?

tick_def = luk x -10??  <<<   is this the duration for frost?

 

Sorry i'm quite new with editing src, so help me pls.

 

where i can make more high Luk easy broke from freeze

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  897
  • Reputation:   248
  • Joined:  01/30/13
  • Last Seen:  

Read the comment above what the variables mean:

	/// Resistance rate: 10000 = 100%
	/// Example:	50% (5000) -> sc_def = 5000 -> 25%;
	///				5000ms -> tick_def = 5000 -> 2500ms
	int sc_def = 0, tick_def = -1; // -1 = use sc_def
	/// Fixed resistance value (after rate calculation)
	/// Example:	25% (2500) -> sc_def2 = 2000 -> 5%;
	///				2500ms -> tick_def2=2000 -> 500ms
	int sc_def2 = 0, tick_def2 = 0;

So for freeze sc_def is 100*mdef which equal 1% per MDEF. As tick_def is -1, it's the same as sc_def so 1% per MDEF.

 

sc_def2 is absolute resistance which is "Each LUK -0.1% chance, each base level of target -0.1% chance, each base level of source +0.1% chance".

tick_def2 is absolute duration resistance, as it's negative it's "Each LUK of caster increases duration by 10ms".

Link to comment
Share on other sites

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.   Paste as plain text instead

  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.

×
×
  • Create New...