Jump to content
  • 0

Physical Attack + EDP


Question

7 answers to this question

Recommended Posts

Posted (edited)

disable renewal.

 

The server is running on pre renewal . and i just want to know if how can i reduce the physical attacks with EDP? :(

Edited by Yoona
Posted

go to status.c then find SC_EDP then reduce the values

 

How can i reduce the value for pre renewal?

		case SC_EDP: <= this should be on pre renewal
			val2 = val1 + 2; // Chance to Poison enemies. <= i dont know what this means
#ifndef RENEWAL
			val3 = 50*(val1+1); // Damage increase (+50 +50*lv%)
#endif
			if( sd )// [Ind] - iROwiki says each level increases its duration by 3 seconds
				tick += pc_checkskill(sd,GC_RESEARCHNEWPOISON)*3000;

any can give me a link for the latest source code for this?

@bump please!

Posted

Change this line

			val3 = 50*(val1+1); // Damage increase (+50 +50*lv%)

Example:

			val3 = 20*(val1+1); // Damage increase (+20 +20*lv%)

or

			val3 = 30*val1; // Damage increase (+30*lv%)
Posted (edited)

 

Change this line

			val3 = 50*(val1+1); // Damage increase (+50 +50*lv%)

Example:

			val3 = 20*(val1+1); // Damage increase (+20 +20*lv%)

or

			val3 = 30*val1; // Damage increase (+30*lv%)

 

thanks! ill try it later.. this will work on pre-renewal right?

Edited by Yoona
Posted

Yes, from what I see this is the pre-re part.

 

Anyting inside this is pre-re code:

#ifndef RENEWAL
			
#endif

and inside this is renewal:

#ifdef RENEWAL
			
#endif

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...