Jump to content

CN

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by CN

  1. Any idea to solve this error of "Unable to do while moving" or perhaps using other method? that causing infinite loop of pos and object position.

        if ( wManager.Wow.Bot.Tasks.GoToTask.ToPosition(pos, distance)  && o.IsValid)  {
            wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress);
                }  

  2. Hi, is there some sort of documentation/manual of wManager, Quests. codes/params that we can use? or site that can refer to? or perhaps someone could highlight the overview of the commands available in respective area? newbie can explore further. such as what are the acceptable commands in Action type RunLuaCode (or a website of api commands accepted), RunMacroLua. 

    Thanks.

  3. Hello there, I have followed Use item on dead mob ( after looting)

    and it ran fine with it. but now the next step pulse unable to check if the quest is completed and the character is stays idle at hotspot.

    Quest referring: Druid of the Claw (id:2561)

    Below is the Quest C#:

    public sealed class DruidoftheClaw : QuestGrinderClass
    {
        public DruidoftheClaw()
        {
            // http://www.wowhead.com/quest=2561
            Name = "Druid of the Claw";

            QuestId.AddRange(new[] { 2561 });
            Step.AddRange(new[] { 1, 0, 0, 0 }); 
        EntryTarget.Add(7318); // Rageclaw  : http://www.wowhead.com/npc=7318
        }
    }

    Quest Order:

    Pickup-> Use item on dead mob ( after looting) -> Pulse -> Turn In

    Thank you.

×
×
  • Create New...