Jump to content

Start for first step after hearthstone


fanmeng123

Recommended Posts

Hi

Because sometime the quester profile got blockage and bot quit automatically,

I'm hoping to ask how do I set the quester profile to use hearthstone when it was blocked for like 5 minutes and run the quester profile from first step once it used the hearthstone?

Thank you very much.

Link to comment
Share on other sites

On 6/23/2019 at 10:52 AM, Matenia said:

Pretty sure wRobot added a function to use hearthstone on stuck recently. Or rather any item.
Check out the advanced settings. But yes, HMP has had this option since 2016 as well.

Thank you very much. I've ticked this function but once itused Hearthstone, it continue the next step, not from the first step.

I'm thinking how to solve it now.

Link to comment
Share on other sites

  • 2 weeks later...

in the off chance your creating your own quester profile here is a small code that i use.

Make sure to change the ContinentID != (aka does not equal) Azeroth. so if your in Kalimdor, you would put == instead of != and change Azeroth to Kalimdor.

        if (wManager.Wow.Helpers.Usefuls.ContinentId != (int) wManager.Wow.Enums.ContinentId.Azeroth)
        {
            wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false;
            wManager.Wow.Helpers.ItemsManager.UseItem(6948);
            System.Threading.Thread.Sleep(1000 * 20); // 20 secondes
            wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = true;
        }

And if you wish to check your hearths location in an IF statment

Lua.LuaDoString<string>("bindlocation = GetBindLocation(); return bindlocation;") != "Orgrimmar"

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...