L2JMobius

Fafurion Help: Maximum attack damage?

L2windy · 9 · 3094

Offline L2windy

  • Heir
  • **
    • Posts: 25
How to achieve the maximum attack damage limit to break 2,147,488,647?


Online Liamxroy

  • Grand Duke
  • *****
    • Posts: 759
    • Adenaplease!
How to achieve the maximum attack damage limit to break 2,147,488,647?

Why do that ?


Offline L2windy

  • Heir
  • **
    • Posts: 25
I want to know how to break the upper limit, because when I open the GM, I see that the maximum damage is 2.1 billion, so it is like knowing if I can break the upper limit.


Online Mobius

  • Distinguished King
  • *****
    • Posts: 16011

Offline L2windy

  • Heir
  • **
    • Posts: 25
How do I customize a passive skill so that it can cause secondary damage?
For example, one attack caused 2.1 billion damage. After learning passive skills, one attack can cause two 2.1 billion damage, not superimposed.
And there are two 2.1 billion damage prompts in the damage prompt in the chat bar, as well as the actual damage value.
This is not restricted by the client.


Online Liamxroy

  • Grand Duke
  • *****
    • Posts: 759
    • Adenaplease!
How do I customize a passive skill so that it can cause secondary damage?
For example, one attack caused 2.1 billion damage. After learning passive skills, one attack can cause two 2.1 billion damage, not superimposed.
And there are two 2.1 billion damage prompts in the damage prompt in the chat bar, as well as the actual damage value.
This is not restricted by the client.

Add multiple physicalAttack effects.


Offline L2windy

  • Heir
  • **
    • Posts: 25
Code: [Select]
<skill id="99999" toLevel="1" name="Damage ">
    <operateType>P</operateType>
    <targetType>SELF</targetType>
    <affectScope>SINGLE</affectScope>
    <effects>
      <effect name="PvpMagicalSkillDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PvpPhysicalAttackDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PvpPhysicalSkillDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PveMagicalSkillDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PvePhysicalAttackDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PvePhysicalSkillDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
    </effects>
  </skill>

For example, like this?


Online Liamxroy

  • Grand Duke
  • *****
    • Posts: 759
    • Adenaplease!
Code: [Select]
<skill id="99999" toLevel="1" name="Damage ">
    <operateType>P</operateType>
    <targetType>SELF</targetType>
    <affectScope>SINGLE</affectScope>
    <effects>
      <effect name="PvpMagicalSkillDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PvpPhysicalAttackDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PvpPhysicalSkillDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PveMagicalSkillDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PvePhysicalAttackDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
      <effect name="PvePhysicalSkillDamageBonus">
        <amount>100</amount>
        <mode>PER</mode>
      </effect>
    </effects>
  </skill>

For example, like this?

No, PhysicalAttack


Offline L2windy

  • Heir
  • **
    • Posts: 25
Alas, don't know how to Add multiple physicalAttack effects.