MMOMinion
Gathering Profile Question - Printable Version

+- MMOMinion (https://www.mmominion.com)
+-- Forum: FFXIVMinion (https://www.mmominion.com/forumdisplay.php?fid=87)
+--- Forum: Support - English, Deutsch, 中文 (https://www.mmominion.com/forumdisplay.php?fid=92)
+---- Forum: English Support & Questions (https://www.mmominion.com/forumdisplay.php?fid=93)
+---- Thread: Gathering Profile Question (/showthread.php?tid=15272)



Gathering Profile Question - Wonderland - 01-05-2016

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;
            };



RE: Gathering Profile Question - sebbs - 01-05-2016

(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;


RE: Gathering Profile Question - Wonderland - 01-05-2016

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