Jump to content
  • 0
Sign in to follow this  
Axl

Help witch Slow Grace/Dont forget me

Question

Hello everyone,

 

I have a question about Slow Grace, in ASPD reduction when the char have a higher AGI status total the ASPD wont reduce.

If the char have 193 ASPD still the same. But have lower AGI the skill works fine. 

 

Anyone know about this imunize/resistence status based on AGI total status?

 

PS: I changed the formula in Skill.c many time but if char have a higher AGI makes him imune.


        case DC_DONTFORGETME:
#ifdef RENEWAL
            val1 = st->dex/10 + 3*skill_lv; // ASPD decrease
            val2 = st->agi/10 + 2*skill_lv; // Movement speed adjustment.
#else
            val1 = st->dex/10 + 3*skill_lv + 5; // ASPD decrease
            val2 = st->agi/10 + 3*skill_lv + 5; // Movement speed adjustment.
#endif
            if(sd){
                val1 += pc->checkskill(sd,DC_DANCINGLESSON);
                val2 += pc->checkskill(sd,DC_DANCINGLESSON);
            }
            break;

 

Thanks for all.

Share this post


Link to post
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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