本文整理汇总了C++中instance_trial_of_the_crusader::GetData方法的典型用法代码示例。如果您正苦于以下问题:C++ instance_trial_of_the_crusader::GetData方法的具体用法?C++ instance_trial_of_the_crusader::GetData怎么用?C++ instance_trial_of_the_crusader::GetData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类instance_trial_of_the_crusader
的用法示例。
在下文中一共展示了instance_trial_of_the_crusader::GetData方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: JustReachedHome
void JustReachedHome() override
{
if (m_pInstance)
{
if (m_pInstance->GetData(TYPE_FACTION_CHAMPIONS) != FAIL)
m_pInstance->SetData(TYPE_FACTION_CHAMPIONS, FAIL);
}
}
示例2: Aggro
void Aggro(Unit* /*pWho*/) override
{
DoScriptText(SAY_AGGRO, m_creature);
DoCastSpellIfCan(m_creature, SPELL_SURGE_OF_LIGHT);
if (m_pInstance && m_pInstance->GetData(TYPE_TWIN_VALKYR) != IN_PROGRESS)
m_pInstance->SetData(TYPE_TWIN_VALKYR, IN_PROGRESS);
}
示例3: JustDied
void JustDied(Unit* /*pKiller*/) override
{
DoScriptText(SAY_DEATH, m_creature);
if (m_pInstance && m_pInstance->GetData(TYPE_TWIN_VALKYR) != DONE)
m_pInstance->SetData(TYPE_TWIN_VALKYR, DONE);
DoCastSpellIfCan(m_creature, SPELL_CLEAR_VALKYR_ESSENCE, CAST_TRIGGERED);
DoCastSpellIfCan(m_creature, SPELL_CLEAR_VALKYR_TOUCH, CAST_TRIGGERED);
}
示例4: Aggro
void Aggro(Unit* pWho) override
{
if (m_pInstance)
{
if (m_pInstance->GetData(TYPE_FACTION_CHAMPIONS) != IN_PROGRESS)
{
m_pInstance->SetData(TYPE_FACTION_CHAMPIONS, IN_PROGRESS);
m_pInstance->DoSetCrusadersInCombat(pWho);
}
}
}
示例5: EnterEvadeMode
void EnterEvadeMode() override
{
if (m_pInstance && m_pInstance->GetData(TYPE_TWIN_VALKYR) != FAIL)
m_pInstance->SetData(TYPE_TWIN_VALKYR, FAIL);
DoCastSpellIfCan(m_creature, SPELL_CLEAR_VALKYR_ESSENCE, CAST_TRIGGERED);
DoCastSpellIfCan(m_creature, SPELL_CLEAR_VALKYR_TOUCH, CAST_TRIGGERED);
// cleanup handled by creature linking
m_creature->ForcedDespawn();
}