Keeps the repo root clean - only README.md visible on landing page. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
327 B
C#
15 lines
327 B
C#
var furniName = "One Way Gate";
|
|
|
|
while (true)
|
|
{
|
|
var loveLock = FloorItems.NamedLike(furniName).FirstOrDefault(fl =>
|
|
Self.X >= fl.X - 4 && Self.X < fl.X + 4 &&
|
|
Self.Y >= fl.Y - 4 && Self.Y < fl.Y + 4);
|
|
|
|
if (loveLock != null)
|
|
{
|
|
Send(Out["EnterOneWayDoor"], loveLock.Id);
|
|
}
|
|
|
|
Delay(1);
|
|
} |