What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

"Life of the Party"

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:

Actiobar.jpg


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(&quot;Fireworks&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Hors D'oeuvres&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Dance&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Bucket&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Bubbly&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Happy Partygoer&quot;)"><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(&quot;Fireworks&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Hors D'oeuvres&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Dance&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Bucket&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Bubbly&quot;)">CAST</If>
		<If Condition="Me.CurrentTarget.HasAura(&quot;Happy Partygoer&quot;)"><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:
So in quest "Life of the Party", which is a goblin quest, it give you the following action bar:

Actiobar.jpg


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?
yea its a little Dicey because those spells aren't technically yours. they belong to the unit your controlling, even if your in possession of that unit. its not possible to use the spell manager to deal with it. i believe there's a vehicle quest behavior, i would start there.
 
yea its a little Dicey because those spells aren't technically yours. they belong to the unit your controlling, even if your in possession of that unit. its not possible to use the spell manager to deal with it. i believe there's a vehicle quest behavior, i would start there.

I'll try it but it should be noted that the character is not in a vehicle. Nevertheless, if it works thanks, if not, I'll let ya know. :-)
 
yea its a little Dicey because those spells aren't technically yours. they belong to the unit your controlling, even if your in possession of that unit. its not possible to use the spell manager to deal with it. i believe there's a vehicle quest behavior, i would start there.

Note that this did not succeed.
 
Could you use Axazol's and use "/click ActionButton1", "/click ActionButton2", and such as the macro body?

(Reference: Making A Macro), see section on '/click')

cheers,
chinajade
 
Last edited:
tubajddimr said:
The /click ActionButton# has been removed from use.

I should've learned by now that you exhaust all possible options, before even thinking about posting in the forums. What a breath of fresh air!

cheers,
chinajade
 
lol. I'm OCD, and therefore thorough. And to correct you a little, all possible KNOWN options. There probably is one I haven't thought of.

:P
 
Can you not use a macro just to /Cast Spell<spell></spell>
 
Okay, I'm having problem letting go of this. :D How about...

[wiki]Honorbuddy Custom Behavior: NoControlVehicle[/wiki]

It was designed for usage with Vehicles that you don't pilot--like those used on 'bombing runs'. However, it doesn't place the toon in a vehicle (it expects another pre-step for that). It looks like the behavior could be (ab)used to do what is needed for this quest.

Was this one you tried already, too? <smirk>

chinajade
 
Best I can figure is there needs to be a Behavior that allows the use of hotkeys in the same way as gatherbuddy.
 
The /click ActionButton# has been removed from use.
When ?!?
Try to use such addons like "Where is my cow" or "MoveAnything" to find out right names of this buttons.
And i think is a pet bar...
 
ill look into that. thank you ax

i might be mistaken about this for sure.
 
Back
Top