Jump to content

Recommended Posts

  On 2/27/2018 at 2:44 PM, Mike-Mail said:

is it for a quester or gather?

Expand  

quester

im trying to do http://www.wowhead.com/quest=11794/the-hunt-is-on

and sometimes the npc is dead and i need a code to wait for it to respawn 

Link to comment
https://wrobot.eu/forums/topic/8762-dead-npc/#findComment-40286
Share on other sites

new problem i need to kill npc loot it then target it and use item on it 

any advice 

Thread t = new Thread(() =>
{
    uint itemId = 35943;
    int questId = 12035;
    while (robotManager.Products.Products.IsStarted)
    {
        if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
        {
            if (!Quest.HasQuest(12035))
                break;
            if (ObjectManager.Target.IsValid && ObjectManager.Target.IsDead)
            {
                ItemsManager.UseItem(35943);
            }
        }
        Thread.Sleep(1000);
    }
});
t.Start();

tryed this but it doesnt target the body and i cant use the quest item if i dont have a target

Link to comment
https://wrobot.eu/forums/topic/8762-dead-npc/#findComment-40319
Share on other sites

got it working now i need to click on an object thats in the air

wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(2614.84, 5266.78, 52.2882), 188163);

this doesnt work tryed interacting gather and still have no idea,this quest http://www.wowhead.com/quest=11965/call-to-arms

geting ] Cannot make path to the target (Bell Rope), ignore it.

Link to comment
https://wrobot.eu/forums/topic/8762-dead-npc/#findComment-40406
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...