MMOMinion

Full Version: Gathering Profile Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I was just wondering if there was anyway to modify the code below so that it will count HQ items in the total amount as well.

I already know how to obtain different item ID's and farm different amounts of items such as cobalt ore and what not. But I don't know how to make it count the HQ items as part of the total.

Code:
["condition"] = {
                ["ItemCount(7) < 3333"] = true;
            };
            ["complete"] = {
                ["ItemCount(7) <= 3333"] = false;
            };
(01-05-2016, 09:20 AM)Wonderland Wrote: [ -> ]Hi, I was just wondering if there was anyway to modify the code below so that it will count HQ items in the total amount as well.

I already know how to obtain different item ID's and farm different amounts of items such as cobalt ore and what not. But I don't know how to make it count the HQ items as part of the total.

Code:
["condition"] = {
                ["ItemCount(7) < 3333"] = true;
            };
            ["complete"] = {
                ["ItemCount(7) <= 3333"] = false;
            };

i dont know about plus

but

["(ItemCount(5536) and ItemCount(1005536) < 3333)"] = true;

may work

else try

["(ItemCount(5536) < 3333) and (ItemCount(1005536) < 3333)"] = true;
(01-05-2016, 09:27 AM)sebbs Wrote: [ -> ]
(01-05-2016, 09:20 AM)Wonderland Wrote: [ -> ]Hi, I was just wondering if there was anyway to modify the code below so that it will count HQ items in the total amount as well.

I already know how to obtain different item ID's and farm different amounts of items such as cobalt ore and what not. But I don't know how to make it count the HQ items as part of the total.

Code:
["condition"] = {
                ["ItemCount(7) < 3333"] = true;
            };
            ["complete"] = {
                ["ItemCount(7) <= 3333"] = false;
            };

i dont know about plus

but

["(ItemCount(5536) and ItemCount(1005536) < 3333)"] = true;

may work

else try

["(ItemCount(5536) < 3333) and (ItemCount(1005536) < 3333)"] = true;

Thank you, I will give it a try.