Greasy Fork is available in English.
Automatically selects professions for empty slots
< Feedback on Neverwinter gateway - Profession Automation
hmmm, did see that "bound" info. It makes things worse because you then lost lotsa protection against bad Vendor lists.
I think those low level "Rewards" stop exist when you get LEadership up to lvl25.
Vendoring "bound green" -item cuold be your precius gear.
Line 2084 (or near it) function switchChar()
Find,
var _cRewardPat = /Reward_Item_Chest|Gateway_Rewardpack/;
These are rewards what we open, try edit list.
Specify exact names "what you want open", eg.
var _cRewardPat = /Crafting_Reward_Item_Chest_2|Gateway_Rewardpack/;
, you can use RegEx like
Crafting_Reward_Item_Chest_[2 - 4]
What covers type 2 - 4 type chest... we continue here, ;)
ps. Check reward name using this, (you know it allrady but this is for othesr), ;)https://greasyfork.org/en/forum/discussion/comment/14447/#Comment_14447
How to vendor Leadership Chests
How would i set it to sell the white/green/blue chests but keep the level 25 coffer from leadership? i have the item ids _vendorItems[_vendorItems.length] = {pattern: /^Crafting_Reward_Item_Chest_1/, limit:0};
_vendorItems[_vendorItems.length] = {pattern: /^Crafting_Reward_Item_Chest_1_Special/, limit:0};
_vendorItems[_vendorItems.length] = {pattern: /^Crafting_Reward_Item_Chest_2x3/, limit:0};
_vendorItems[_vendorItems.length] = {pattern: /^Crafting_Reward_Item_Chest_3/, limit:0};
and set the exlude pattern list to
// Match items to exclude from auto vendoring, dont add to _tmpBag: Exclude pattern list - bound - Epic Quality - Blue Quality
else if (_excludeItems.test(slot.name) || slot.bound || slot.rarity == "Special" /*|| slot.rarity == "Gold"*/)
any help would be appreciated
Rotten suggested removing the slot.rarity == 'gold' but when i do this the script will not load. Another hurdle is that the chests are also bound. I would rather just vendor these chests as little to nothing of value come from them anymore ;)