Jump to content
  • 0

Assumptio won't halves the damages!


Currently

Question


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  313
  • Reputation:   1
  • Joined:  01/22/12
  • Last Seen:  

Where can I check it or edit the script?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

are you using PRE-RE or RE?

Where can I check it or edit the script?

According to what Evil has asked, Assumptio is very different in Pre-Renewal and in Renewal. Please take a look here for Pre-Renewal and Renewal differences.

Pre-Renewal:

Reduce damage taken from enemies by half for the spell's duration. Damage is only reduced to 2/3 of the original damage by this skill in PvP areas, including Battlegrounds and WoE areas. Cannot be cast inside a guild castle, but retains its effect after entering one. Assumptio and Kyrie Eleison cannot be used at the same time - they overwrite each other.

Renewal:

Double the target's DEF and MDEF.

Cannot be cast inside a guild castle, but retains its effect after entering one. Assumptio and Kyrie Eleisoncannot be used at the same time - they overwrite each other.

Take a look here as you can see where it's found:

//Finally damage reductions....
	// Assumptio doubles the def & mdef on RE mode, otherwise gives a reduction on the final damage. [igniz]
#ifndef RENEWAL
	if( sc->data[sC_ASSUMPTIO] ) {
		if( map_flag_vs(bl->m) )
			damage = (int64)damage*2/3; //Receive 66% damage
		else
			damage >>= 1; //Receive 50% damage
	}
#endif

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  313
  • Reputation:   1
  • Joined:  01/22/12
  • Last Seen:  

Will it be at skill.c? or which source file?

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...