Nah anti-trap for the tiger rooms, hadn't thought of that possibility. Nor have I seen a single player in the spawn since I started. I think I'd do anti-trap like this:
lua code:
-- TODO: Figure out the real door positions.
local dorPoses =
{
{21321, 43242, 4324},
{21321, 43242, 4324},
{21321, 43242, 4324},
{21321, 43242, 4324},
{21321, 43242, 4324},
}
Module("Anti-Tiger Trap", function(module)
if Walker.IsStuck() and Self.TargetID() == 0 then
for _, pos in ipairs(doorPoses) do
if Self.Position().z == pos[3] and Self.DistanceFromPositioN(unpack(pos)) <= 7 then
Self.UseDoor(unpack(pos))
wait(1000)
end
end
end
module:Delay(1000)
end)
Edit: Is the syntax highlighter broken?
Added you on Discord.