Jump to content

[rev. 8767][spell/aura][64411] Blessing of Ancient Kings


Guest alein

Recommended Posts

Hi guys.

Mangos Version: 8767

Custom Patches: none

SD2 Version: 1493

Database Name and Version : PSDB WotLK (264)

How it SHOULD work: Your magical heals provide the target with a shield that absorbs damage equal to 15% of the amount healed for 15 sec.

How it DOES work: Doesn't adsorbs any damage.

The spell is a part of item Val'anyr, Hammer of Ancient Kings, visual effect are show up, but adsorbs missing.

When I heal and aura is activate I get this error in console too:

EffectDummy: Non-handled case for spell 13567 for triggered aura 64411

Best regards.

Link to comment
Share on other sites

try this

diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index d89e39c..ea3d998 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -7238,6 +7238,13 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, Aura* triggeredB

            break;
        }
+        // Blessing of Ancient Kings
+        case 64411:
+        {
+            trigger_spell_id = 64413;
+            basepoints[0] = int32(damage * 0.15f);
+            break;
+        }
    }
    // Blade Barrier
    if (auraSpellInfo->SpellFamilyName == SPELLFAMILY_DEATHKNIGHT && auraSpellInfo->SpellIconID == 85)

Link to comment
Share on other sites

  • 2 months later...
How it SHOULD work: Your magical heals provide the target with a shield that absorbs damage equal to 15% of the amount healed for 15 sec.
At last, work correct or not?

I think isn't right.

Spell don't trigered, and this spell don't work (don't adsorbs any damage)

I test it by .cast 64413 on test player.

Link to comment
Share on other sites

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use