-- world_mcp - World-level logic for MCP, including auto-spawn -- (MCP component) -- Template attachment: world -- Created by: Patrick Ferland -- Created on: 07/31/2008 -- Revision History -- 07/31/2008 P.Ferland - New script -- Constants MCP_TEMPLATE = '11832:4' -- Script properties -- no properties -- Commands -- no commands -- Triggers Trigger attach() local st = self.singleton_tracker if (st ~= nil) then if (st['mcp'] == nil) then local mcp= CreateInContainerById(self, MCP_TEMPLATE) PersistObject(mcp) SaveToDb(mcp) end end end -- Local functions -- no functions