This is the Horn of Plenty from thanksgiving 2012. It includes all associated items. The horn will recharge during November up to 10 max charges.
The Roasting Pig On A Spit house addon is a rare spawn from the horn. Once placed it will give a random pork food item once a day.
To make the roasting pig grill a heat source per OSI edit your CraftItem.cs file to add the items to the heat source table.
The Roasting Pig On A Spit house addon is a rare spawn from the horn. Once placed it will give a random pork food item once a day.
To make the roasting pig grill a heat source per OSI edit your CraftItem.cs file to add the items to the heat source table.
Code:
private static readonly int[] m_HeatSources = new[]
{
0x461, 0x48E, // Sandstone oven/fireplace
0x92B, 0x96C, // Stone oven/fireplace
0xDE3, 0xDE9, // Campfire
0xFAC, 0xFAC, // Firepit
0x184A, 0x184C, // Heating stand (left)
0x184E, 0x1850, // Heating stand (right)
0x398C, 0x399F, // Fire field
0x2DDB, 0x2DDC, //Elven stove
0x19AA, 0x19BB, // Veteran Reward Brazier
0x197A, 0x19A9, // Large Forge
0x0FB1, 0x0FB1, // Small Forge
0x2DD8, 0x2DD8, // Elven Forge
0x9987, 0x999E // Roasting Pig Grill <<add this
};