[bug][item][.87]Hummingbird Pike

The Hummingbird Pike's description says the user can summon an air elemental in tactical combat. I am not able to find a way to do this under spells, skills, or items while in combat. I'm guessing it wasn't implemented fully yet?

30,647 views 4 replies
Reply #1 Top

The sword from the ice boss is supposed to let you cast Blizzard;  last time I tried it, it had this same problem.  Not sure if it's been fixed yet as I haven't seen it.

Reply #2 Top

I am not able to find a way to do this under spells, skills, or items while in combat

I just got the hummingbird pike and can verify that there's no way to cast the summoning spell.

Reply #3 Top

The cuprit to this problem is the spell it to which it refers

            <GameModifier>
                <ModType>Unit</ModType>
                <Attribute>UnlockCombatAbility</Attribute>
                <StrVal>SummonAirElemental_Tatical</StrVal>
                <Provides>Allows the caster to Summon an Air Elemental in tactical combat</Provides>
            </GameModifier>

simple enough to see that it actually does unlock this spell for the play... unfortunately the spell has a pre-req :) The prereq is the ability to cast summon air elemental. Kind of pointless.... But glancing through the spells a fix to this problem is the following

             <GameModifier>
                 <ModType>Unit</ModType>
                 <Attribute>UnlockCombatAbility</Attribute>
                 <StrVal>SummonAirElemental_Ability</StrVal>
                 <Provides>Allows the caster to Summon an Air Elemental in tactical combat</Provides>
             </GameModifier>

Although this doesn't do the exact same effect as the tatical version of the spell. For example, there is no cost for the spell and there is no knockback or prone when using this summons spell. Currently I'm too lazy to see if I can post a fix for this in the mods folder or not, so you can edit the coreweapons.xml files.

Reply #4 Top

There seem to be lots of little inconsistencies in the code that have existed since WOM.  ConFUSTING indeed!

Thanks for posting!