Jump to content
  • 0

Question

Posted

Today i am upgrading my svn (revision 16339) and test it. I use Guillotine Cross doing EDP but it seems the damage was over, it reach 10k. Without EDP it only do 600 damage.

And When i died, return to save point, but i just revived on the same place i died.

Anyone test it yet?

9 answers to this question

Recommended Posts

Posted

invalid map at last_map table

Yes! That's it! Change your respawn map to prontera or something. I believe right now it's 'blank' thus leading you to just spawn right on the spot.

Posted

This part?

#ifndef RENEWAL_EDP

case ASC_BREAKER: case ASC_METEORASSAULT: break;

#else

case AS_SONICBLOW:

case ASC_BREAKER:

case GC_COUNTERSLASH:

case GC_CROSSIMPACT:

ATK_RATE(50); // only modifier is halved but still benefit with the damage bonus

break;

#endif

default:

ATK_ADDRATE(sc->data[sC_EDP]->val3);

Posted (edited)

Change it:

  if( sc->data[sC_EDP] ){
  // FIX ME: Should Rolling Cutter be affected by EDP?
switch(skill_num){
 case AS_SPLASHER:	   case AS_VENOMKNIFE:
 case AS_GRIMTOOTH: case GC_ROLLINGCUTTER:
 break;
#ifndef RENEWAL_EDP
 case ASC_BREAKER:	   case ASC_METEORASSAULT: break;
#else
 case AS_SONICBLOW:
 case ASC_BREAKER:
 case GC_COUNTERSLASH:
 case GC_CROSSIMPACT:
  ATK_RATE(50); // only modifier is halved but still benefit with the damage bonus
  break;
#endif
 default:
  ATK_ADDRATE(sc->data[sC_EDP]->val3);
}
  }

To:

  if( sc->data[sC_EDP] ){
			switch(skill_num){
			 case AS_SPLASHER:			   case AS_VENOMKNIFE:
			 case ASC_METEORASSAULT:
			 break;
#ifdef RENEWAL_EDP
			 case AS_SONICBLOW:
			 case ASC_BREAKER:
			 case GC_COUNTERSLASH:
			 case GC_CROSSIMPACT:
			  ATK_RATE(50); // only modifier is halved but still benefit with the atk and weapon bonus
			  break;
#else
			 case ASC_BREAKER: break;
			 default:
			  ATK_ADDRATE(sc->data[sC_EDP]->val3);//It doesn't exist in RENEWAL
#endif
			}
  }

Edited by MarkZD

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