xabbo-scripts/Scripts/MoveAction.csx
Administrator 7a548130a3 Move all scripts into Scripts/ subfolder
Keeps the repo root clean - only README.md visible on landing page.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-16 09:49:37 +01:00

20 lines
421 B
C#

Send(Out["OpenFlatConnection"],79936015,"",-1);
var Actions = new Dictionary<Point, Action>
{
{ (0, 17), () => Send(Out["Move"], 1, 17) },
{ (1, 17), () => { Send(Out["Move"], 2, 17); } },
};
while (Run)
{
try
{
var realPos = (Self.CurrentUpdate.MovingTo ?? Self.Location).XY;
if (Actions.TryGetValue(realPos, out var action))
action();
}
catch { }
Delay(100);
}