Jump to content
  • 0

Why DEX 150 still casting?


Question

Posted

When I play using pre-re emulator, everything going normal, only max level I couldn't change to 255.

The problem is when I play using renewal emulator, even my Dex already 200 it still casting time and very slow, also not affected by beelzebub card to reduce casting time.

How to fixed it?

Please help me, thank you.

3 answers to this question

Recommended Posts

  • 1
Posted

Maybe that will solve.

src/map/pc.cpp

Search:

case SP_FIXCASTRATE:
			if(sd->state.lr_flag != 2)
				sd->bonus.fixcastrate = min(sd->bonus.fixcastrate,val);
			break;

 

Change to:

case SP_FIXCASTRATE:
			if(sd->state.lr_flag != 2)
				sd->bonus.fixcastrate += val;
			break;

 

Save and Compile.

  • 1
Posted

Because Renewal system uses another formula for cast. if you want to remove just edite src/config/renewal.hpp and search

 

#define RENEWAL_CAST and add //

//#define RENEWAL_CAST

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