It's a tricky problem, I tried several perk-based solutions and even a timed ability, but nothing worked so far. Does anyone have an idea on how to solve this?
Keyword property VendorItemFood autoKeyword property VendorItemFoodRaw autoBool Function myFoodTest(Form akItem) if (akItem as Potion || akItem as Ingredient) ; fast return true elseif (akItem.hasKeyword(VendorItemFood) || akItem.hasKeyword(VendorItemFoodRaw)) ; slow return true endif return falseendFunction