Jump to content
  • Loot Items


    Bastilla
    • Product: Quester Type: Bug Status: Unconfirmed

    I set in advanced options under Looting an d Farming options -> Don't harvest objects :

    Thick-shelled Clam
    5524

    But Snapjaw on Lodamere Lake WRobot harvest this Item.



    User Feedback

    Recommended Comments

    Not a fix to your problem exactly- more a way around it i found. 

     

    Soutridge Beach Azshara.xml

     

    That's a quest file I use a lot with a run code to automatically open and loot clams while fighting.  All you would have to do is change the location vectors and target NPC's and you should be good to go.  If you link your grinder file i should be able to merge the two.

     

    The runcode looks like this:

    Thread t = new Thread(() =>
    {
        while (robotManager.Products.Products.IsStarted)
        {
            if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
            {
                if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive)
                {
    robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey);
          Thread.Sleep(robotManager.Helpful.Others.Random(50, 150));
          ItemsManager.UseItem(5524);
          Thread.Sleep(robotManager.Helpful.Others.Random(50, 150));
          robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey);
          Thread.Sleep(robotManager.Helpful.Others.Random(50, 150));
                }
            }
            Thread.Sleep(10000);
        }
    });
    t.Start();

     

     

     

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