here are a couple simple scripts
Potion Property FoodHoney Auto
Event OnInit()
RegisterForUpdateGameTime(24)
EndEvent
Event OnUpdateGameTime()
self.AddItem(FoodHoney, 1, true)
EndEvent
Ingredient Property BeeHoneyComb Auto
Event OnInit()
RegisterForUpdateGameTime(72)
EndEvent
Event OnUpdateGameTime()
self.AddItem(BeeHoneyComb, 1, true)
EndEvent