Script: Teleporter script fix [Request fulfilled]
Helloes,
The script below, originally created by Lafe, makes sure that the contents of a gibbed ACRocket go to the "UniTec Teleport Pad", which is an actor as you can see.
My question is: Can the actor be modified into a MOSRotating?
Code:
function Create(self)
for actor in MovableMan.Actors do
if actor.Team == self.Team and actor.PresetName == "UniTec Teleport Pad" then
self.Pos = actor.Pos
self:GibThis()
end
end
end
function Destroy(self)
ActivityMan:GetActivity():ReportDeath(self.Team, -1);
end