As an example, would this script work?
Code:while (true) do
if Walker.IsStuck() then
count = count + 1
if (count == 1) then
Walker.Goto(label1)
elseif (count == 2) then
Walker.Goto(label2)
elseif (count == 3) then
Walker.Goto(label3)
end
end
if not Walker.IsStuck() then
count = 0
end
end