当前位置: 首页>>代码示例>>C++>>正文


C++ ProcEventInfo::GetProcTarget方法代码示例

本文整理汇总了C++中ProcEventInfo::GetProcTarget方法的典型用法代码示例。如果您正苦于以下问题:C++ ProcEventInfo::GetProcTarget方法的具体用法?C++ ProcEventInfo::GetProcTarget怎么用?C++ ProcEventInfo::GetProcTarget使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ProcEventInfo的用法示例。


在下文中一共展示了ProcEventInfo::GetProcTarget方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: HandleProc

            void HandleProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo)
            {
                PreventDefaultAction();

                SpellInfo const* triggeredSpellInfo = sSpellMgr->EnsureSpellInfo(SPELL_PRIEST_GLYPH_OF_PRAYER_OF_HEALING_HEAL);
                int32 heal = int32(CalculatePct(int32(eventInfo.GetHealInfo()->GetHeal()), aurEff->GetAmount()) / triggeredSpellInfo->GetMaxTicks());
                GetTarget()->CastCustomSpell(SPELL_PRIEST_GLYPH_OF_PRAYER_OF_HEALING_HEAL, SPELLVALUE_BASE_POINT0, heal, eventInfo.GetProcTarget(), true, NULL, aurEff);
            }
开发者ID:mynew,项目名称:Core,代码行数:8,代码来源:spell_priest.cpp

示例2: CheckProc

 bool CheckProc(ProcEventInfo& eventInfo)
 {
     return eventInfo.GetProcTarget() != nullptr;
 }
开发者ID:mynew,项目名称:Core,代码行数:4,代码来源:spell_priest.cpp

示例3: HandleEffectProc

 void HandleEffectProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo)
 {
     PreventDefaultAction();
     GetTarget()->CastSpell(eventInfo.GetProcTarget(), SPELL_WARRIOR_RETALIATION_DAMAGE, true, NULL, aurEff);
 }
开发者ID:Allysia1,项目名称:TrinityCore,代码行数:5,代码来源:spell_warrior.cpp

示例4: HandleProc

 void HandleProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo)
 {
     PreventDefaultAction();
     GetTarget()->CastSpell(eventInfo.GetProcTarget(), SPELL_SHAMAN_ITEM_LIGHTNING_SHIELD, true, NULL, aurEff);
 }
开发者ID:Rastrian,项目名称:DeathCore_3.3.5,代码行数:5,代码来源:spell_shaman.cpp

示例5: CheckProc

 bool CheckProc(ProcEventInfo& eventInfo)
 {
     return eventInfo.GetProcTarget();
 }
开发者ID:staf4d,项目名称:ecl,代码行数:4,代码来源:spell_mage.cpp

示例6: OnProc

            void OnProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo)
            {
                PreventDefaultAction();

                // % of amount blocked
                int32 damage = CalculatePct(int32(GetTarget()->GetShieldBlockValue()), aurEff->GetAmount());
                GetTarget()->CastCustomSpell(SPELL_WARRIOR_DAMAGE_SHIELD_DAMAGE, SPELLVALUE_BASE_POINT0, damage, eventInfo.GetProcTarget(), true, NULL, aurEff);
            }
开发者ID:Allysia1,项目名称:TrinityCore,代码行数:8,代码来源:spell_warrior.cpp

示例7: HandleEffectProc

 void HandleEffectProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo)
 {
     PreventDefaultAction();
     int32 damage = CalculatePct(eventInfo.GetDamageInfo()->GetDamage(), aurEff->GetAmount());
     GetTarget()->CastCustomSpell(SPELL_PALADIN_EYE_FOR_AN_EYE_DAMAGE, SPELLVALUE_BASE_POINT0, damage, eventInfo.GetProcTarget(), true, NULL, aurEff);
 }
开发者ID:Nightprince,项目名称:SkyFire.548,代码行数:6,代码来源:spell_paladin.cpp

示例8: HandleEffectSpeedProc

            void HandleEffectSpeedProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo)
            {
                PreventDefaultAction();
                // Proc only with Power Word: Shield or Leap of Faith
                if (!(eventInfo.GetDamageInfo()->GetSpellInfo()->SpellFamilyFlags[0] & 0x1 || eventInfo.GetDamageInfo()->GetSpellInfo()->SpellFamilyFlags[2] & 0x80000))
                    return;

                GetTarget()->CastCustomSpell(SPELL_PRIEST_BODY_AND_SOUL_SPEED, SPELLVALUE_BASE_POINT0, aurEff->GetAmount(), eventInfo.GetProcTarget(), true, NULL, aurEff);
            }
开发者ID:Exodius,项目名称:ArkCORE-NG,代码行数:9,代码来源:spell_priest.cpp

示例9: HandleEffectProc

 void HandleEffectProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo)
 {
     eventInfo.GetProcTarget()->CastSpell((Unit*)NULL, SPELL_GEN_REPLENISHMENT, true, NULL, aurEff);
 }
开发者ID:Exodius,项目名称:ArkCORE-NG,代码行数:4,代码来源:spell_priest.cpp

示例10: OnProc

            void OnProc(AuraEffect const* /*aurEff*/, ProcEventInfo& eventInfo)
            {
                if (Aura* aur = eventInfo.GetProcTarget()->GetAura(SPELL_WARRIOR_REND, GetTarget()->GetGUID()))
                    aur->SetDuration(aur->GetSpellInfo()->GetMaxDuration(), true);

            }
开发者ID:DrYaling,项目名称:eluna-wod,代码行数:6,代码来源:spell_warrior.cpp

示例11: TriggerFists

 void TriggerFists(AuraEffect const* aurEff, ProcEventInfo& eventInfo)
 {
     PreventDefaultAction();
     GetTarget()->CastSpell(eventInfo.GetProcTarget(), SPELL_FW_METEOR_FISTS_DAMAGE, true, NULL, aurEff);
 }
开发者ID:BackStap,项目名称:TrinityCore,代码行数:5,代码来源:boss_koralon.cpp


注:本文中的ProcEventInfo::GetProcTarget方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。