local STRUCT = {} STRUCT.Name = "Stone Furnace" STRUCT.Model = "models/props/de_inferno/ClayOven.mdl" STRUCT.Structure = { {"models/props/de_inferno/ClayOven.mdl",Vector(0,0,0),Angle(0,0,0)} } STRUCT.onInitialize = function(self) print("Initalize called!") end STRUCT.uniquedata = false STRUCT.onUse = function(self, ply) print("I am the old use function!") end STRUCT.Recipes = {} STRUCT.timemult = 0.5 STRUCT.skillease = 0.25 genericMakeFurnace(STRUCT) recipieForSmelt(STRUCT.Recipes,"Copper", "Smelt copper ore into copper", "Copper Ore", "Copper", {1,1}, {1,5,10}) print("stone furnace's recipies:") PrintTable(STRUCT.Recipes) registerStructure(STRUCT)