Jump to content

kimxee

Members
  • Posts

    4
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

About kimxee

  • Birthday 01/01/1

kimxee's Achievements

Newbie

Newbie (1/3)

0

Reputation

  1. In fact not many for creatures case. This is creature versions hunter traps + 2 less clear cases. hmmmm...Spell effect like hunter's trap? Engineering Robot?
  2. :)Thank you! May I ask what SLOT1~SLOT4 for? the array has 4 length limit?Thanks!
  3. ;)Thanks! I'd read the function void Spell::EffectSummonObject(SpellEffectIndex eff_idx) ,and it has the following code: switch(m_spellInfo->Effect[eff_idx]) { case SPELL_EFFECT_SUMMON_OBJECT_SLOT1: slot = 0; break; case SPELL_EFFECT_SUMMON_OBJECT_SLOT2: slot = 1; break; case SPELL_EFFECT_SUMMON_OBJECT_SLOT3: slot = 2; break; case SPELL_EFFECT_SUMMON_OBJECT_SLOT4: slot = 3; break; default: return; } So I traced these definetion,found : in file Spell.cpp, line 3480 in function void Spell::SendLogExecute() callby void Spell::_handle_finish_phase() case SPELL_EFFECT_SUMMON_OBJECT_SLOT1: case SPELL_EFFECT_SUMMON_OBJECT_SLOT2: case SPELL_EFFECT_SUMMON_OBJECT_SLOT3: case SPELL_EFFECT_SUMMON_OBJECT_SLOT4: if(Unit *unit = m_targets.getUnitTarget()) data << unit->GetPackGUID(); else if(m_targets.getItemTargetGUID()) data.appendPackGUID(m_targets.getItemTargetGUID()); else if(GameObject *go = m_targets.getGOTarget()) data << go->GetPackGUID(); else data << uint8(0); // guid break; :|Does it mean Only when SLOT4 reached can I get the GameobjectTarget's Guid? As I haven't been playing wow for a year, I can't remember which spell / mob or other stuff fits this situation...
  4. m_ObjectSlot[4] in class Unit line 1555 Is it for warlocks' summoning? Which spell is it?
×
×
  • 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