Jump to content
  • 0

Why DEX 150 still casting?


Julzz1988

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  2
  • Reputation:   0
  • Joined:  11/06/18
  • Last Seen:  

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.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 1

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  65
  • Reputation:   10
  • Joined:  08/02/18
  • Last Seen:  

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.

Link to comment
Share on other sites

  • 1

  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  149
  • Reputation:   46
  • Joined:  07/15/13
  • Last Seen:  

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

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  2
  • Reputation:   0
  • Joined:  11/06/18
  • Last Seen:  

thank you brother..

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