Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Feed Pet problem

Featured Replies

Hello,

 

The only problem I have with feeding my pet is that BOT does not WAIT for "Feed Pet" buff to fade. Bot will engage in combat Constantly, which makes my pet lose the "Feed buff" then it doesn't feed...

 

Any way I can make the bot WAIT for PET to feed before starting combat?

  • 2 weeks later...
  • Author

Bump^

 

Its getting frustrating. Some areas there are a lot of mobs so the bot doesn't take break "as a hunter with viper." But my problem is that sometimes my pet gets unhappy because the bot is constantly going into combat!

 

I need the bot to wait while "Pet Feed Effect" is active.

I think it's finally time you convert your fightclass to C# or buy Jasabi's. 

What you'll have to do is cancel all events in the fight loop, while your pet (and begin fight, I believe), while your pet has the feeding buff. 

You can find how to do that on the forums, but you can't easily make that part of an XML fightclass. 

wManager.Events.FightEvents.OnFightLoop += (WoWUnit unit, CancelEventArgs args) =>
        {
                while(ObjectManager.Pet.HaveBuff("Feed Pet")
                {
                    Thread.Sleep(500);
                }
        };

Haven't tested this. You might have to use OnFightStart instead of OnFightLoop.

  • 2 weeks later...
  • Author
On 7/20/2017 at 0:48 AM, Matenia said:

I think it's finally time you convert your fightclass to C# or buy Jasabi's. 

What you'll have to do is cancel all events in the fight loop, while your pet (and begin fight, I believe), while your pet has the feeding buff. 

You can find how to do that on the forums, but you can't easily make that part of an XML fightclass. 


wManager.Events.FightEvents.OnFightLoop += (WoWUnit unit, CancelEventArgs args) =>
        {
                while(ObjectManager.Pet.HaveBuff("Feed Pet")
                {
                    Thread.Sleep(500);
                }
        };

Haven't tested this. You might have to use OnFightStart instead of OnFightLoop.

thank you for sharing my friend. Tho I am clueless about C# and all these things. All I know is how to use the fight class creator so I really dont know how to use this.

 

My hunter consumes all pet food fast because everytime it feed the pet, it starts a combat.

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.