tubajedimr
New Member
- Joined
- Apr 6, 2010
- Messages
- 441
- Reaction score
- 24
So in quest "Life of the Party", which is a goblin quest, it give you the following action bar:
The spells on this action bar are so named,
Bubbly, Bucket, Dance, Fireworks, Hors D'oeuvres
These do have spellID's on wowhead, one of which is the Buff version you see on a target, which indicates which spell to use on that target.
However, the spell does not cast.
I assume this is because the spell while it exists, doesn't exist in your spellbook, nor in your bags.
I tried UseItem as well, to no avail. As well as UseObject.
These spells are in fact useable by pressing 1-5 on the keyboard however.
Any thoughts on making it work?
Example of code used:

The spells on this action bar are so named,
Bubbly, Bucket, Dance, Fireworks, Hors D'oeuvres
These do have spellID's on wowhead, one of which is the Buff version you see on a target, which indicates which spell to use on that target.
However, the spell does not cast.
I assume this is because the spell while it exists, doesn't exist in your spellbook, nor in your bags.
I tried UseItem as well, to no avail. As well as UseObject.
These spells are in fact useable by pressing 1-5 on the keyboard however.
Any thoughts on making it work?
Example of code used:
PHP:
<HBProfile>
<QuestOrder>
<!--Female Goblin Version-->
<If Condition="HasQuest(14153)"><RunTo QuestId="14153" X="-8446.718" Y="1315.76" Z="102.2806" />
<CustomBehavior File="RunMacro" Macro="/cleartarget\n/target Kezan Partygoer" NumOfTimes="1" WaitTime="0" />
<If Condition="Me.CurrentTarget.HasAura("Fireworks")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Hors D'oeuvres")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Dance")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Bucket")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Bubbly")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Happy Partygoer")"><CustomBehavior File="RunMacro" Macro="/cleartarget\n/target Kezan Partygoer" NumOfTimes="1" WaitTime="0" /></If>
<!--This Would Repeat 10 times with different Hotspots-->
</If>
<!--Male Goblin Version-->
<If Condition="HasQuest(14151)"><RunTo QuestId="14153" X="-8446.718" Y="1315.76" Z="102.2806" />
<CustomBehavior File="RunMacro" Macro="/cleartarget\n/target Kezan Partygoer" NumOfTimes="1" WaitTime="0" />
<If Condition="Me.CurrentTarget.HasAura("Fireworks")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Hors D'oeuvres")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Dance")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Bucket")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Bubbly")">CAST</If>
<If Condition="Me.CurrentTarget.HasAura("Happy Partygoer")"><CustomBehavior File="RunMacro" Macro="/cleartarget\n/target Kezan Partygoer" NumOfTimes="1" WaitTime="0" /></If>
<!--This Would Repeat 10 times with different Hotspots-->
</If>
</QuestOrder>
</HBProfile>
Last edited: