Hello everyone, I saw a problem, that this plugin is not selling Life&Water Spirits, and thought that it's because they are soulbound. So I opened methods.cs
in plugin folder and saw this line:
Code:
if (!Items.IsSoulbound && !_KeepList.Contains(Items.Name))
under
public void SellVenderItems method section
So if you delete !Items.IsSoulbound && and it will look like:
Code:
if (!_KeepList.Contains(Items.Name))
then plugin
1. WILL sell
grey\white\green Soulbound items that are not on your protected list.(It will try to sell even your Hearthstone).
2. WILL sell
blue\purple Soulbound items that are on your sell list.
BE CAREFULL WITH THIS.
Asking author of plugin to add a checkbox in plugin GUI to offer selling Soulbound items option.
Also about list language - items in lists
must be written in your client language - sell\protected\remove item lists are all saved in UTF coding.