Another problem on HB3 , my character that let die to the third sweater View attachment 7644 2016-09-07 23.41.txt
zojak if you want, look through this and use what ever you like. i put a few hours of work into editing the profile, it runs well with hb3 and is more versatile now, i think. at the top of the profile there is a section for gbank user settings, where users can choose if and what they want to put in bank. (Default is no GBank deposits) this will further speed up the profile as the bot wont skip through guild bank for no reason. example: Code: <!-- <<<< GBANK SETTINGS >>>> --> <CustomBehavior File="RunCode" Type="Definition" Code="bool depositGold = false;" /> <!-- change false to true if you want to deposit Gold in GBank --> <CustomBehavior File="RunCode" Type="Definition" Code="bool depositLockboxes = false;" /> <!-- change false to true if you want to save Lockboxes in GBank --> you do not need mining to run it, but it increases gph. a low mining skill (example: 1) is best because of the gray items. the profile checks player if he has the profession, so users wont have to think about that. i have reworked the porting and reset instance code. it now works for Druids, DK´s & Monks. Also it will work with both, legion accounts and older ones who dont have order hall. it pulls the same mobs, but i changed a bunch of Hotspots and devided the last pull into 2, because mobs disappeared when mining the uge last pull. currently the last group is not being mined because gph is higher if he resets at 6 min and not later. feel free to use anything of this. id just like to hear about further improvements if anybody can think of one/some ;-) View attachment 210689
Add this at line 1065 if you want your toon flasked Code: <!-- STAMINA // Flask of Ten Thousand Scars (127850) --><If Condition="HasItem(127850) && !Me.HasAura("Flask of Ten Thousand Scars")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(127850)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of Ten Thousand Scars Buffed" LogColor="Blue" /> </If> <!-- STRENGTH // Flask of the Countless Armies (127849) --> <If Condition="HasItem(127849) && !Me.HasAura("Flask of the Countless Armies")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(127849)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of the Countless Armies Buffed" LogColor="Blue" /> </If> <!-- INTELLECT // Flask of the Whispered Pact (127847) --> <If Condition="HasItem(127847) && !Me.HasAura("Flask of the Whispered Pact")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(127847)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of the Whispered Pact Buffed" LogColor="Blue" /> </If> <!-- AGILITY // Flask of the Seventh Demon (127848) --> <If Condition="HasItem(127848) && !Me.HasAura("Flask of the Seventh Demon")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(127848)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of the Seventh Demon Buffed" LogColor="Blue" /> </If> <!-- Oralius' Whispering Crystal (118922) --> <If Condition="HasItem(118922) && !Me.HasAura("Oralius' Whispering Crystal")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(118922)" WaitTime="15" /> <CustomBehavior File="Message" Text="Oralius' Whispering Crystal Buffed" LogColor="Blue" /> </If> <!-- Greater Draenic Intellect Flask (109155) --> <If Condition="HasItem(109155) && !Me.HasAura("Greater Draenic Intellect Flask")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(109155)" WaitTime="60" /> <CustomBehavior File="Message" Text="Greater Draenic Intellect Flask Buffed" LogColor="Blue" /> </If> <!-- Draenic Intellect Flask (109147) --> <If Condition="HasItem(109147) && !Me.HasAura("Draenic Intellect Flask")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(109147)" WaitTime="60" /> <CustomBehavior File="Message" Text="Draenic Intellect Flask Buffed" LogColor="Blue" /> </If> <!-- Greater Draenic Strength Flask (156572) --> <If Condition="HasItem(156572) && !Me.HasAura("Greater Draenic Strength Flask")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(156572)" WaitTime="60" /> <CustomBehavior File="Message" Text="Greater Draenic Strength Flask Buffed" LogColor="Blue" /> </If> <!-- Draenic Strength Flask (109148) --> <If Condition="HasItem(109148) && !Me.HasAura("Draenic Strength Flask")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(109148)" WaitTime="60" /> <CustomBehavior File="Message" Text="Draenic Strength Flask Buffed" LogColor="Blue" /> </If> <!-- Greater Draenic Stamina Flask (109160) --> <If Condition="HasItem(109160) && !Me.HasAura("Greater Draenic Stamina Flask")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(109160)" WaitTime="60" /> <CustomBehavior File="Message" Text="Greater Draenic Stamina Flask Buffed" LogColor="Blue" /> </If> <!-- Draenic Stamina Flask (109152) --> <If Condition="HasItem(109152) && !Me.HasAura("Draenic Stamina Flask")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(109152)" WaitTime="60" /> <CustomBehavior File="Message" Text="Draenic Stamina Flask Buffed" LogColor="Blue" /> </If> <!-- Greater Draenic Agility Flask (109153) --> <If Condition="HasItem(109153) && !Me.HasAura("Greater Draenic Agility Flask")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(109153)" WaitTime="60" /> <CustomBehavior File="Message" Text="Greater Draenic Agility Flask Buffed" LogColor="Blue" /> </If> <!-- Draenic Agility Flask (109145) --> <If Condition="HasItem(109145) && !Me.HasAura("Draenic Agility Flask")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(109145)" WaitTime="60" /> <CustomBehavior File="Message" Text="Draenic Agility Flask Buffed" LogColor="Blue" /> </If> <!-- Crystal of Insanity (86569) --> <If Condition="HasItem(86569) && !Me.HasAura("Crystal of Insanity")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(86569)" WaitTime="15" /> <CustomBehavior File="Message" Text="Crystal of Insanity Buffed" LogColor="Blue" /> </If> <!-- Mantid Elixir (76075) --> <If Condition="HasItem(76075) && !Me.HasAura("Mantid Elixir")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76075)" WaitTime="60" /> <CustomBehavior File="Message" Text="Mantid Elixir Buffed" LogColor="Blue" /> </If> <!-- Mad Hozen Elixir (76076) --> <If Condition="HasItem(76076) && !Me.HasAura("Mad Hozen Elixir")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76076)" WaitTime="60" /> <CustomBehavior File="Message" Text="Mad Hozen Elixir Buffed" LogColor="Blue" /> </If> <!-- Elixir of Weaponry (76077) --> <If Condition="HasItem(76077) && !Me.HasAura("Elixir of Weaponry")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76077)" WaitTime="60" /> <CustomBehavior File="Message" Text="Elixir of Weaponry Buffed" LogColor="Blue" /> </If> <!-- Elixir of the Rapids (76078) --> <If Condition="HasItem(76078) && !Me.HasAura("Elixir of the Rapids")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76078)" WaitTime="60" /> <CustomBehavior File="Message" Text="Elixir of the Rapids Buffed" LogColor="Blue" /> </If> <!-- Elixir of Peace (76079) --> <If Condition="HasItem(76079) && !Me.HasAura("Elixir of Peace")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76079)" WaitTime="60" /> <CustomBehavior File="Message" Text="Elixir of Peace Buffed" LogColor="Blue" /> </If> <!-- Elixir of Perfection (76080) --> <If Condition="HasItem(76080) && !Me.HasAura("Elixir of Perfection")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76080)" WaitTime="60" /> <CustomBehavior File="Message" Text="Elixir of Perfection Buffed" LogColor="Blue" /> </If> <!-- Elixir of Mirrors (76081) --> <If Condition="HasItem(76081) && !Me.HasAura("Elixir of Mirrors")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76081)" WaitTime="60" /> <CustomBehavior File="Message" Text="Elixir of Mirrors Buffed" LogColor="Blue" /> </If> <!-- Monk's Elixir (76083) --> <If Condition="HasItem(76083) && !Me.HasAura("Monk's Elixir")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76083)" WaitTime="60" /> <CustomBehavior File="Message" Text="Monk's Elixir Buffed" LogColor="Blue" /> </If> <!-- Flask of Spring Blossoms (76084) --> <If Condition="HasItem(76084) && !Me.HasAura("Flask of Spring Blossoms")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76084)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of Spring Blossoms Buffed" LogColor="Blue" /> </If> <!-- Flask of the Warm Sun (76085) --> <If Condition="HasItem(76085) && !Me.HasAura("Flask of the Warm Sun")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76085)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of the Warm Sun Buffed" LogColor="Blue" /> </If> <!-- Flask of Falling Leaves (76086) --> <If Condition="HasItem(76086) && !Me.HasAura("Flask of Falling Leaves")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76086)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of Falling Leaves Buffed" LogColor="Blue" /> </If> <!-- Flask of the Earth (76087) --> <If Condition="HasItem(76087) && !Me.HasAura("Flask of the Earth")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76087)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of the Earth Buffed" LogColor="Blue" /> </If> <!-- Flask of Winter's Bite (76088) --> <If Condition="HasItem(76088) && !Me.HasAura("Flask of Winter's Bite")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(76088)" WaitTime="60" /> <CustomBehavior File="Message" Text="Flask of Winter's Bite Buffed" LogColor="Blue" /> </If> <!-- Potion of Luck (93351) --> <If Condition="HasItem(93351) && !Me.HasAura("Potion of Luck")"> <CustomBehavior File="Misc\RunLua" Lua="UseItemByName(93351)" WaitTime="20" /> <CustomBehavior File="Message" Text="Potion of Luck Buffed - Goodluck" LogColor="Blue" /> </If>
Anyone able to keep HB relog running with Hb2? Each time I try and set it up it automatically updates it to HB3 : /