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

Quest horde "Demoniac Vessel"

striker408

New Member
Joined
Jan 15, 2010
Messages
48
Reaction score
0
I can collect the items but have not figured out how to combine them then turn in the final item. I have the information in the profile but I do not expect it to work. I am currently getting an error "Warning: Could not parse 'If' body node!
" but even with out that the "UseItem" lines do not work. Once it has collected all the number of parts required it just keeps running around the area killing stuff.

Demoniac Vessel - Quest - World of Warcraft
 

Attachments

So no replies so I assume I did not post enough information. I am wondering how to do a quest that requires collecting multiple items combining them and then combining the items just made into a final item. None of the sub items are listed in the quest as a requirement, the only thing in the quest is the last item "demonic vessel"

Walk through for quest
You need 4 tainted hide from bears, 20 nightstalker legs from spiders, and 2 screecher brains from bats.

When you get enough, right clicking on the brains truns them into paste.
Right click on the spider legs to crush 20 of them one at a time.
Right clicking on either the crushed nightstalker legs or the brain paste will give you demoniac commixture.
Right clicking on the tainted hides will give you a demonic vessel.

Collecting the items works

Right click on that will put the mixture in the vessel.
Gathering the items works
PHP:
<!-- http://www.wowhead.com/quest=25719 -->
<PickUp QuestName="Demoniac Vessel" GiverName="Elijah Dawnflight" QuestId="25719" GiverId="42348" />
<!-- 20 crushed Nightstalker Legs -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="20" ItemId="57178" />
<!-- 2 Screecher Brains -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="2" ItemId="57179" />
<!-- 4 Tainted Hides -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="4" ItemId="57177" />
 
Last edited:
I had tried that - it was in the file I attached but will put it in php here also. It does not seem to work. It never combines any of the items in my bags. Right now I have all the items and when I load the profile I get the message "Warning: Attribute QuestId of positive integral type was missing in "UseItem" tag." and when I start it it says "Nothing more to do. Stopping bot."
PHP:
<QuestOrder>
<!-- Demoniac Vessel (level 58) -->
<!-- Kill the Tainted Black Bears, Tainted Nightstalkers, and Tainted Screechers in the Tainted Forest, and try to assemble their parts into a Demoniac Vessel. -->
<!-- http://www.wowhead.com/quest=25719 -->
<PickUp QuestName="Demoniac Vessel" GiverName="Elijah Dawnflight" QuestId="25719" GiverId="42348" />
<!-- 20 crushed Nightstalker Legs -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="20" ItemId="57178" />
<!-- 2 Screecher Brains -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="2" ItemId="57179" />
<!-- 4 Tainted Hides -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="4" ItemId="57177" />
<!-- Nightstalker Legs -->
    <UseItem ItemId="57178" />
<!-- Screecher Brains -->
   <UseItem ItemId="57179" />
<!-- Tainted Hides -->
   <UseItem ItemId="57177" />
<!-- Crushed Nightstalker Leg -->
   <UseItem ItemId="57181" />
<!-- Tainted Hide Pouch -->
   <UseItem ItemId="57180" />
<If Condition="HasItem(57184)">
<TurnIn QuestName="Demoniac Vessel" TurnInName="Rohan Sunveil" QuestId="25719" TurnInId="42344" />
    </If>
    </QuestOrder>
 
try using QuestId="25719" in every UseItem tag.

If that doesn't work just do this

PHP:
<PickUp QuestName="Demoniac Vessel" GiverName="Elijah Dawnflight" QuestId="25719" GiverId="42348" />
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="20" ItemId="57178" />
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="2" ItemId="57179" />
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="4" ItemId="57177" />
<If Condition="!IsQuestCompleted(25719) &amp;&amp; HasQuest(25719)">
<CustomBehavior File="RunMacro" Macro="/use Item#1" NumOfTimes="1" WaitTime="1000" />
<CustomBehavior File="RunMacro" Macro="/use Item#2" NumOfTimes="1" WaitTime="1000" />
<CustomBehavior File="RunMacro" Macro="/use Item#3" NumOfTimes="1" WaitTime="1000" />
</If>

change the Item1,2,3 to their proper ingame names
and change the && in if condition to "&amp ;&amp ;" without the spaces
 
Last edited:
If i were on that quest, i'd probably know what I would do, but I'm not clearly understanding the concept.

can you explain it in detail please?

do you have to use the spider legs 20 times?
do you have to walk up to something and right click it, or useitem at the location?

I need to know some specifics

actually u know what... use this plugin.

add the item id's that you want the bot to "use" and click save

It's a plugin, so make sure the plugin goes inside of the plugins folder in /.../hb/plugins folder that holds all of the plugins where the plugins are stored inside of HB's plugin folders which holds the plugins, because thats where the plugins go

:D

Did I mention that this is a plugin? make sure the users tick "enable"
 

Attachments

Last edited:
I am trying to build my knowledge and make a profile that is as reliable as possible so would like to not have it rely on a plug-in unless absolutely required.

Here is an attempt at an explanation of what is needed to complete the quest.
You need 4 tainted hide from bears, 20 nightstalker legs from spiders, and 2 screecher brains from bats. These are items that end up in the toon's bags

When you get enough, right clicking on the brains truns them into paste.
Right click on the spider legs to crush 20 of them one at a time.
Right clicking on either the crushed nightstalker legs or the brain paste will give you demoniac commixture.
Right clicking on the tainted hides will give you a demonic vessel.

You have to right click or use the item in the toon's bags:
2 uses of <code><code>Screecher Brains</code></code> = Screecher Brain Paste
20 uses of <code><code>Nightstalker Legs</code></code> = <code><code>Crushed Nightstalker Leg</code></code>
1 use of <code><code>Crushed Nightstalker Leg</code></code> = Demoniac Commixture
1 use of <code><code>Tainted Hides </code></code>= <code><code>Tainted Hide Pouch
</code></code>1 use of <code><code>Tainted Hide Pouch = </code></code><code><code>Demoniac Vessel

</code></code><code><code></code></code>
 
My bot has already successfully done this quest, this is what I do.

PHP:
<PickUp QuestName="Demoniac Vessel" QuestId="26186" GiverName="Cenarion Observer Shayana" GiverId="42352" />
	
	<If Condition="(HasQuest(26186)) &amp;&amp; (!IsQuestCompleted(26186))">
		<Objective QuestName="Demoniac Vessel" QuestId="26186" Type="CollectItem" ItemId="57179" CollectCount="2" />
		<Objective QuestName="Demoniac Vessel" QuestId="26186" Type="CollectItem" ItemId="57177" CollectCount="4" />
		<Objective QuestName="Demoniac Vessel" QuestId="26186" Type="CollectItem" ItemId="57178" CollectCount="20" />
	
	
		<UseItem ItemId="57177" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		
		<UseItem ItemId="57179" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		<UseItem ItemId="57179" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		
		<UseItem ItemId="57182" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
		
		<UseItem ItemId="57183" QuestName="Demoniac Vessel" QuestId="26186" X="-12687.59" Y="-2811.358" Z="5.710598" />
	</If>
	<TurnIn QuestName="Demoniac Vessel" QuestId="26186" TurnInName="Mayor Charlton Connisport" TurnInId="42349" />
 
Natfoth that worked I just had to change the numbers to horde and then follow vlad0327 advice on the if statement "change the && in if condition to "&amp ;&amp ;" without the spaces" so my profile ended up looking like this.
PHP:
<!-- Demoniac Vessel (level 58) -->
<!-- Kill the Tainted Black Bears, Tainted Nightstalkers, and Tainted Screechers in the Tainted Forest, and try to assemble their parts into a Demoniac Vessel. -->
<!-- Classes: Any -->
<!-- Races: Any -->
<!-- http://www.wowhead.com/quest=25719 -->
<PickUp QuestName="Demoniac Vessel" GiverName="Elijah Dawnflight" QuestId="25719" GiverId="42348" />
<If Condition="(HasQuest(26186)) &amp;&amp; (!IsQuestCompleted(26186))">
<!-- 20 crushed Nightstalker Legs -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="20" ItemId="57178" />
<!-- 2 Screecher Brains -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="2" ItemId="57179" />
<!-- 4 Tainted Hides -->
<Objective QuestName="Demoniac Vessel" QuestId="25719" Type="Collect" CollectCount="4" ItemId="57177" />
<!-- Demoniac Vessel 
You need 4 tainted hide from bears, 20 nightstalker legs from spiders, and 2 screecher brains from bats.

When you get enough, right clicking on the brains truns them into paste.
Right click on the spider legs to crush 20 of them one at a time.
Right clicking on either the crushed nightstalker legs or the brain paste will give you demoniac commixture.
Right clicking on the tainted hides will give you a demonic vessel.
Right click on that will put the mixture in the vessel.
-->
   
        <UseItem ItemId="57177" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57178" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        
        <UseItem ItemId="57179" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        <UseItem ItemId="57179" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        
        <UseItem ItemId="57182" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
        
        <UseItem ItemId="57183" QuestName="Demoniac Vessel" QuestId="25719" X="-12687.59" Y="-2811.358" Z="5.710598" />
    </If>
    <TurnIn QuestName="Demoniac Vessel" TurnInName="Rohan Sunveil" QuestId="25719" TurnInId="42344" />
 
Glad that it worked for you, good luck with your profile :)

btw just to let you know the site auto converts &amp ;&amp to &&, if you look at your profile you will see that.
 
Last edited:
Back
Top