Hi,
i wanted to try this plugin but it does not show anything.
I tried adding a simple Puts("hi"); to see if the Hook OnShopCompleteTrade() is triggered, but it is not.
I bought different items from NPC Shops and Player Shops but it seems the hook is never called.
private object OnShopCompleteTrade(ShopFront entity)
{
Puts("hi");
if (permission.UserHasPermission(entity.customerPlayer.UserIDString, BypassPerm) ||
permission.UserHasPermission(entity.vendorPlayer.UserIDString, BypassPerm)) return null;
....
}Is this hook still in use?