Skill MC_LOUD Change ATK Bonus

Tsuuu

New member
Messages
80
Points
0
Emulator
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.

 
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

Code:
	if(sc->data[SC_SHOUT])
		str += 4;
 
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 !

 
Back
Top