Resolved Stats_Custom_mod - Class vs Class

L2g

Heir
Customer
Good afternoon everyone,

I'm trying to reduce the total magical critical damage dealt by the Mystic Muse class when fighting against the Ghost Sentinel class.

In my test using the Solar Flare skill, the normal hit deals around 1400 damage, but when it crits, it goes up to about 4400.

I’d like to apply this adjustment only for class vs class interactions.

I’ve tried several possible combinations in Stats_Custom_Mod using the "target player" option, but it doesn’t seem to work.

Could anyone please help me with this?

Example of what I tried:

<player classId="103" olyMode="non_oly_only"> <!-- Mystic Muse -->

<targetPlayer classId="109"> <!-- Ghost Sentinel -->
<mul stat="skillPower" val="0.3"/>
</targetPlayer>

</player>
 
Yes, I tested it and it didn't work. I don't understand why. Maybe I wrote something wrong. I managed to get the desired result using "mCritDamage"
Did you try "pvpMagicSkillDmgBonus" instead of "skillPower"?

<player classId="103" olyMode="non_oly_only"> <!-- Spel Singer -->
<targetPlayer classId="109"> <!-- Ghost Sentinel -->
<mul stat="mCritDamage" val="0.5"/> <!-- Critical M power-->
</targetPlayer>
</player>
 
Hello everyone, good morning! I also have a similar question, but with a different skill.
Is there a way to increase the chance of Shield Stun here as well?
 
Hello everyone, good morning! I also have a similar question, but with a different skill.
Is there a way to increase the chance of Shield Stun here as well?
Hello, do you want to know if it's possible to do class versus class or in general?
 
Hello, do you want to know if it's possible to do class versus class or in general?
Thanks for your attention, L2g.
I'd like to increase it only in PvP and follow the retail version in Olly. I tried <add stat="shockPower" val="20"/> but was unsuccessful.
Is there any code to increase only the shield stum chance here in this statcustom area?
 
Thanks for your attention, L2g.
I'd like to increase it only in PvP and follow the retail version in Olly. I tried <add stat="shockPower" val="20"/> but was unsuccessful.
Is there any code to increase only the shield stum chance here in this statcustom area?

I can’t really say because I’ve never looked into it, but try checking this tutorial to see if there’s any condition there that might help you.
 
Thanks for your attention, L2g.
I'd like to increase it only in PvP and follow the retail version in Olly. I tried <add stat="shockPower" val="20"/> but was unsuccessful.
Is there any code to increase only the shield stum chance here in this statcustom area?
"stunPower"
 
Back
Top