Jump to content
  • 0
Sign in to follow this  
nikki1200

Spear Quicken Low ASPD

Question

Hi All,

 

Seeking for your assistance on how to modify the formula of Spear Quicken. the aspd is very low. although i check it on status .c

 

if(sc->data[SC_SPEARQUICKEN] && skills1 < 7)
skills1 = 7;

 

Please advise,

 

THanks,

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

This is not a script request but a source request. I will move this topic for you. Also, please try to use codeboxes when posting code, this will make it way more readable.

 

I'm not good in source, but I believe if you change the value of 7 to other one, you'll increase the ASPD you'll receive upon using this skill. Example, if you want this skill to give up to 30 ASPD, change all occurrences of 7 to 30:

 

		if(sc->data[SC_SPEARQUICKEN] && skills1 < 30)			skills1 = 30;

 

Also, don't forget to recompile your server after performing this change so that it's actually applied. Be careful that any changes made to the status_calc_aspd function (which is the one I think you're using) will only take effect in Renewal, not in Pre-Renewal.

 

As a friendly advice, it's be better for your request if, in case you've found something that may help us finding the answer to your issue, you tell us where you got that clue. I was able to try to help you this time because I got lucky finding that piece of code, else I wouldn't have known any possible answer.

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.