Jump to content

Recommended Posts

got this problem npc is dead and i have to interact with it, bot doesnt find npc and skipping this step going next one, is there a code to wait for the npc until it spawns and then start interacting?

Link to comment
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
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
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...