GMS.Combinations = {} function GMS.RegisterCombi( tbl, group ) if ( !GMS.Combinations[ group ] ) then GMS.Combinations[ group ] = {} end GMS.Combinations[ group ][ string.Replace( tbl.Name, " ", "_" ) ] = tbl end //Moved to craftablesystem/playermade/ /* ------------------------ Structures ------------------------*/ //Moved to various places under craftablesystem/ /* ------------------------ Stone Furnace ------------------------*/ //Moved to craftablesystem/furnaces/stonefurnace.lua /* ------------------------ Copper Furnace ------------------------*/ //Moved to craftablesystem/furnaces/copperfurnace.lua /* ------------------------ Iron Furnace ------------------------*/ //Moved to craftablesystem/furnaces/ironfurnace.lua /* ------------------------ Tech Furnace ------------------------*/ //Moved to craftablesystem/furnaces/techfurnace.lua /* ------------------------ Silver Furnace ------------------------*/ //Moved to craftablesystem/furnaces/silverfurnace.lua /* ------------------------ Gold Furnace ------------------------*/ //Moved to craftablesystem/furnaces/goldfurnace.lua /* ------------------------ Steel Furnace ------------------------*/ //Moved to craftablesystem/furnaces/steelfurnace.lua /*------------------------ Factory ------------------------*/ //Moved to craftablesystem/misc/factory.lua /* ------------------------ Grinding Stone ------------------------*/ //Moved to craftablesystem/misc/grindingstone.lua /*------------------------ Cooking ------------------------*/ //Moved to craftablesystem/misc/stove.lua /* ------------------------ Stone Workbench ------------------------*/ //Moved to craftablesystem/workbenches/stoneworkbench.lua /* ------------------------ Copper Workbench ------------------------*/ //Moved to craftablesystem/workbenches/copperworkbench.lua /* ------------------------ Iron Workbench ------------------------*/ //Moved to craftablesystem/workbenches/ironworkbench.lua /*------------------------ Gun Lab ------------------------*/ //Moved to craftablesystem/gunlabs/smggunlab.lua //Moved to craftablesystem/gunlabs/pistolgunlab.lua /*------------------------ Gun Chunks ------------------------*/ //Moved to craftablesystem/gunlabs/gunchunks.lua /* ------------------------------------------------------------------------ Tech workbench ------------------------------------------------------------------------ */ //Moved to craftablesystem/workbenches/techworkbench.lua ------------------------------------------------------------------------ /* ------------------------------------------------------------------------ Silver workbench ------------------------------------------------------------------------ */ //Moved to craftablesystem/workbenches/silverworkbench.lua ------------------------------------------------------------------------ /* ------------------------------------------------------------------------ Gold workbench ------------------------------------------------------------------------ */ //Moved to craftablesystem/workbenches/goldworkbench.lua ------------------------------------------------------------------------ /* ------------------------------------------------------------------------ Steel workbench ------------------------------------------------------------------------ */ //Moved to craftablesystem/workbenches/steelworkbench.lua ------------------------------------------------------------------------ /* ------------------------------------------------------------------------ Platinum workbench ------------------------------------------------------------------------ */ //Moved to craftablesystem/workbenches/platinumworkbench.lua ------------------------------------------------------------------------ /* ------------------------------------------------------------------------ Basic Transmutator ------------------------------------------------------------------------ */ //Moved to craftablesystem/misc/transmutator.lua ------------------------------------------------------------------------ /* ------------------------------------------------------------------------ Advanced Transmutator ------------------------------------------------------------------------ */ local COMBI = {} COMBI.Name = "All Teak" COMBI.Description = "This type of wood can be used to make more advanced machinery." COMBI.Entity = "gms_advancedtransmutator" COMBI.Req = {} COMBI.Req["Maple"] = 1 COMBI.Req["Gold"] = 1 COMBI.Results = {} COMBI.Results["Teak"] = 2 COMBI.AllSmelt = true COMBI.Max = 200 GMS.RegisterCombi( COMBI, "gms_advancedtransmutator" ) ------------------------------------------------------------------------ local COMBI = {} COMBI.Name = "All Mahogany" COMBI.Description = "This type of wood can be used to make more advanced machinery." COMBI.Entity = "gms_advancedtransmutator" COMBI.Req = {} COMBI.Req["Teak"] = 1 COMBI.Req["Steel"] = 1 COMBI.Results = {} COMBI.Results["Mahogany"] = 2 COMBI.AllSmelt = true COMBI.Max = 200 GMS.RegisterCombi( COMBI, "gms_advancedtransmutator" ) ------------------------------------------------------------------------ local COMBI = {} COMBI.Name = "All Elm" COMBI.Description = "This type of wood can be used to make more advanced machinery." COMBI.Entity = "gms_advancedtransmutator" COMBI.Req = {} COMBI.Req["Mahogany"] = 1 COMBI.Req["Platinum"] = 1 COMBI.Results = {} COMBI.Results["Elm"] = 2 COMBI.AllSmelt = true COMBI.Max = 200 GMS.RegisterCombi( COMBI, "gms_advancedtransmutator" ) ------------------------------------------------------------------------