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

HeartStoneUsing?

Farmbot

New Member
Joined
Jan 15, 2010
Messages
270
Reaction score
0
Hi,
Happy New Year to everybody!
Is it possible in a QuestingProfile to say: Please use HeartStone now?

Thnx

Greetings
Farmbot
 
FOUND
IT
MUDA
FUKA!!1/1

PHP:
<UseItem ItemId="" />

Enter the heartstone ID there, which (without going ingame), I believe is 6948
 
Be careful, there are few kind of hearthstones in WoW.
I use this enum in my plugin :

PHP:
    public enum HearthItems
    {
        PierreDeFoyer = 6948,
        PortailEtherien = 54452,
        Archeologie = 64488
    }
 
Sure, but for leveling it should be enough to do:

PHP:
    <If Condition="StyxWoW.Me.HearthstoneAreaId == 3526 &amp;&amp; HasQuest(9305) &amp;&amp; IsQuestCompleted(9305)" >
            <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(6948)" WaitTime="1000" /><!-- Ruhestein nach Azurwacht ! -->
    </If>
 
Back
Top