dofile("Base.rte/Constants.lua") require("Actors/AI/NativeCrabAI") --dofile("Base.rte/Actors/AI/NativeCrabAI.lua") function Create(self) self.AI = NativeCrabAI:Create(self) --end --function Create(self) self.Timer = Timer(); end function Update(self) if self.Timer:IsPastSimMS(10000) then --Time it takes to regenerate local a = CreateAHuman("Mu-Ilaak Sentry"); --Name of the AHuman goes here a.Pos = self.Pos; a.Vel = Vector(0,0); a.Team = self.Team; MovableMan:AddMO(a); self.Timer = Timer(); self:GibThis(); end end function UpdateAI(self) self.AI:Update(self) end