Jump to content

Sit if there are no food available


trkman

Recommended Posts

Hey Guys,

 

I have searched everywhere for a script/plugin/option that uses Sit option for regen if there are no available food. Now my guy is just standing there like a pole looking like an obvoius bot.

 

Please do help!

 

Thanks

Link to comment
Share on other sites

You can create a plugin with the following code - just modify the loop in any free plugin here on the forums:

if (robotManager.Helpful.Logging.Status == "Regeneration")
{
  if (!wManager.Wow.ObjectManager.ObjectManager.Me.IsSitting)
  {
    wManager.Wow.Helpers.Move.SitStandOrDescend();
    Thread.Sleep(1000);
  }
}

 

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...