xabbo-scripts/Scripts/PlaceSeedRoom.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

9 lines
197 B
C#

var rollers = Inventory.Where(x => x.GetName().Contains("Roller")).Take(4);
var rot = 0;
foreach (var roller in rollers)
{
Place(roller, new Point(7, 10), rot);
rot += 2;
Delay(150);
}