Jump to content
  • 0
Sign in to follow this  
Tsuuu

Skill MC_LOUD Change ATK Bonus

Question

Incredible as it may seem I did not find where to change this option to change the passive bonus of this skill, even though I searched in various places, can anyone give me a light!?

currently the Crazy Uproar skill gives me a 4 attack bonus, I would like to change this value, I looked at her function in source and found nothing less complicated for my understanding.

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 1

The problem is your probably looking up MC_LOUD exclusivly

 

all skills that have statuses attached to them have new entries

 

in this case

 

Look in status.c

find 

MC_LOUD and the associated status 

    status->set_sc( MC_LOUD              , SC_SHOUT        , SI_SHOUT           , SCB_STR );
 

look for sc_shout

	if(sc->data[SC_SHOUT])
		str += 4;

 

Share this post


Link to post
Share on other sites
  • 0
59 minutes ago, Naruto said:

The problem is your probably looking up MC_LOUD exclusivly

 

all skills that have statuses attached to them have new entries

 

in this case

 

Look in status.c

find 

MC_LOUD and the associated status 

    status->set_sc( MC_LOUD              , SC_SHOUT        , SI_SHOUT           , SCB_STR );
 

look for sc_shout

if(sc->data[SC_SHOUT]) str += 4;


	if(sc->data[SC_SHOUT])
		str += 4;

 

Dude, you're a myth, how could I not have realized this, thank you so much for your help.

Topic Solved !

Share this post


Link to post
Share on other sites

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.