08-31-2016, 02:12 PM
Although.. rereading ffxiv_task_gather, the conditional on line 1629 (info.rarity >= tonumber(requiredRarity)) and tonumber(requiredRarity) > 0) should be triggered, no?
The first part is comparing the item's rarity data to the rarity set in the profile and the second part is merely checking if the rarity was even manually set (since requiredRarity is defaulted to 0). I'm not entirely sure how requiredRarity is being set but am I wrong in assuming its parsing the gathering profile for the collectable value? At line 1615 it has
requiredRarity = cval
which I'm hoping cval is linked to
["collectables"] = {
["Dragon Obsidian"] = 240;
};
this value in the gathering profile? So I'm unsure how that line is failing, actually...
The first part is comparing the item's rarity data to the rarity set in the profile and the second part is merely checking if the rarity was even manually set (since requiredRarity is defaulted to 0). I'm not entirely sure how requiredRarity is being set but am I wrong in assuming its parsing the gathering profile for the collectable value? At line 1615 it has
requiredRarity = cval
which I'm hoping cval is linked to
["collectables"] = {
["Dragon Obsidian"] = 240;
};
this value in the gathering profile? So I'm unsure how that line is failing, actually...