Skip to content

Instantly share code, notes, and snippets.

@neo-mat
Created August 14, 2012 08:40
Show Gist options
  • Save neo-mat/3347574 to your computer and use it in GitHub Desktop.
Save neo-mat/3347574 to your computer and use it in GitHub Desktop.
Spell Aura 231 #2
diff --git a/src/arcemu-world/SpellAuras.cpp b/src/arcemu-world/SpellAuras.cpp
index 2e9d2b2..937bcc6 100644
--- a/src/arcemu-world/SpellAuras.cpp
+++ b/src/arcemu-world/SpellAuras.cpp
@@ -253,7 +253,7 @@ pSpellAura SpellAuraHandler[TOTAL_SPELL_AURAS] =
&Aura::SpellAuraModStealthDetection,//228 Stealth Detection. http://www.thottbot.com/s34709
&Aura::SpellAuraReduceAOEDamageTaken,//229 Apply Aura:Reduces the damage your pet takes from area of effect attacks http://www.thottbot.com/s35694
&Aura::SpellAuraIncreaseMaxHealth,//230 Increase Max Health (commanding shout);
- &Aura::SpellAuraNULL,//231 curse a target http://www.thottbot.com/s40303
+ &Aura::SpellAuraProcTriggerSpell,//231 curse a target http://www.thottbot.com/s40303
&Aura::SpellAuraReduceEffectDuration,//232 // Reduces duration of Magic effects by $s2%. SPELL_AURA_MECHANIC_DURATION_MOD
&Aura::SpellAuraNULL,//233 // Beer Goggles
&Aura::SpellAuraReduceEffectDuration,//234 Apply Aura: Reduces Silence or Interrupt effects, Item spell magic http://www.thottbot.com/s42184
@@ -575,7 +575,7 @@ const char* SpellAuraNames[TOTAL_SPELL_AURAS] =
"", // 228
"SPELL_AURA_REDUCE_AOE_DAMAGE_TAKEN", // 229
"INCREASE_MAX_HEALTH", // 230 Used by Commanding Shout
- "", // 231
+ "SPELL_AURA_PROC_TRIGGER_SPELL_WITH_VALUE", // 231
"SPELL_AURA_MECHANIC_DURATION_MOD", // 232
"", // 233
"", // 234
@@ -4040,7 +4040,14 @@ void Aura::SpellAuraProcTriggerSpell(bool apply)
SM_PIValue(ucaster->SM_PCharges, &charges, GetSpellProto()->SpellGroupType);
}
- m_target->AddProcTriggerSpell(spellId, GetSpellProto()->Id, m_casterGuid, GetSpellProto()->procChance, GetSpellProto()->procFlags, charges, groupRelation, NULL);
+ if(m_spellProto->EffectApplyAuraName[mod->i] == SPELL_AURA_PROC_TRIGGER_SPELL_WITH_VALUE)
+ {
+ SpellEntry* spellInfo = dbcSpell.LookupEntry(spellId);
+ spellInfo->EffectBasePoints[mod->i] = mod->m_amount;
+ m_target->AddProcTriggerSpell(spellInfo->Id, GetSpellProto()->Id, m_casterGuid, GetSpellProto()->procChance, GetSpellProto()->procFlags, charges, groupRelation, NULL);
+ }
+ else
+ m_target->AddProcTriggerSpell(spellId, GetSpellProto()->Id, m_casterGuid, GetSpellProto()->procChance, GetSpellProto()->procFlags, charges, groupRelation, NULL);
LOG_DEBUG("%u is registering %u chance %u flags %u charges %u triggeronself %u interval %u", GetSpellProto()->Id, spellId, GetSpellProto()->procChance, GetSpellProto()->procFlags & ~PROC_TARGET_SELF, charges, GetSpellProto()->procFlags & PROC_TARGET_SELF, GetSpellProto()->proc_interval);
}
diff --git a/src/arcemu-world/SpellAuras.h b/src/arcemu-world/SpellAuras.h
index 5fc7fd6..c05f998 100644
--- a/src/arcemu-world/SpellAuras.h
+++ b/src/arcemu-world/SpellAuras.h
@@ -274,6 +274,7 @@ enum MOD_TYPES
SPELL_AURA_PERIODIC_TRIGGER_SPELL_WITH_VALUE = 227, // Used by Mind Flay etc
SPELL_AURA_REDUCE_AOE_DAMAGE_TAKEN = 229,
SPELL_AURA_INCREASE_MAX_HEALTH = 230, //Used by Commanding Shout
+ SPELL_AURA_PROC_TRIGGER_SPELL_WITH_VALUE = 231,
SPELL_AURA_MECHANIC_DURATION_MOD = 232,
SPELL_AURA_MOD_HEALING_BY_AP = 237,
SPELL_AURA_MOD_SPELL_DAMAGE_BY_AP = 238,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment