Keeps the repo root clean - only README.md visible on landing page. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
224 B
C#
10 lines
224 B
C#
var info = FurniData.FindFloorItem("Alarmlicht");
|
|
int x = 25;
|
|
int y = 17;
|
|
|
|
while(Run) {
|
|
foreach (var item in FloorItems.OfKind(info)) {
|
|
while (GetFloorItem(item.Id).State == 1) {
|
|
Delay(1);
|
|
Move(x,y);
|
|
Log("Bot Triggered");}}} |