I’m attempting to create a mission-based, user-configurable gathering profile, where I’m placing every gatherable (botany & mining) item in an excel spreadsheet. When complete I’ll be able to rapidly generate a filterable form via MS Word in correct LUA scripting format.
Important to this little exercise is the ability to specify the quantity of each item to be collected. I presume the correct form is as follows (Where “NNNN” represents the Item.ID.):
If this is incorrect, could anyone recommend a means of specifying ItemCount which does not point to a specific inventory slot.
Thank you in advance!
Important to this little exercise is the ability to specify the quantity of each item to be collected. I presume the correct form is as follows (Where “NNNN” represents the Item.ID.):
Code:
["condition"] = {
["ItemCount(NNNN) < 20"] = true;
};
["complete"] = {
["ItemCount(NNNN) <= 20"] = false;
};
If this is incorrect, could anyone recommend a means of specifying ItemCount which does not point to a specific inventory slot.
Thank you in advance!