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

QUESTION: Combination of items that are the result of combined items

crazyperson

Member
Joined
Jan 15, 2010
Messages
38
Reaction score
0
Hello,


I've been learning QUEST profile creation and I have run across a quest situation that I'm not sure how to handle.

The quest is Demoniac Vessel # 25719 Demoniac Vessel - Quest - World of Warcraft
This is step 4 in a 5 steps series quest chain.

The Quest wants the user to collect the following items:

Tainted Hides (4) from the Tainted Black Bears
Nightstalker Leg (20) from the spiders
Screecher Brain (2) from the bats

Once you have all these items you RIGHT click on the items to combine them:

* Well I wasn't sure how to do an item/inventory count with a condition to combine when X number is detected so I just added the following LINES to a PLUG-IN called "OpenThatStuff"

{4, 57177}, // Tainted Hides (4)
{20, 57178}, // Nightstalker Leg (20)
{2, 57179}, // Screecher Brain (2)

Those lines solved the combination of the items problem in the first phase, I know its not the most effiecent manner to combine selected items, and it ties the user of the Profile to the Plugin but I think a better way will turn up later as I learn more.


My main problem now is the final combination of the (Screecher Brain Paste item# 57182) and (Crushed Nightstalker Leg item# 57181).

I need a way to combine these two items once they are in my inventory and that should produce the required item for the quest completion.

I'd really like the chance to give something back to the community through questing profiles even if it's just a little xp for the user. I don't spend much time actually playing wow anymore, my time now is spent with the bot and learning the ins and outs of it, which to me is more fun than wow.

Any help or points in the right direction would be great.

Thank you,
Crazyperson
 
you should just be able to use the Run Macro QB, and do /Use *Itemname here* and that should handle most things, there should be no reason to edit a plugin to do this for you.
 
i have this scripted; simply check my ally / horde profile in blasted lands for whatever the questid is and see what i did.
 
for me this sounds like a combination of If-hasitem checks & useitembyname macro
 
Back
Top