xabbo-scripts/Find Item by ID.csx
Administrator 7bfc390ed6 Initial commit: 68 Xabbo Scripter scripts
Habbo Hotel automation scripts including:
- Game solvers (Snake, Color Puzzle, Tetris, Flappy Bird, Flood-IT)
- Room utilities (Autogate, One-Way Door, Furni Scanner)
- Bot tools (Heal Bot, Pet Trainer, User Collector)
- Trading & economy (Furni-Matic, Seed Trade, Trade Spam)

Cleaned up: removed 5 duplicates and 2 broken scripts,
renamed 37 gibberish filenames to descriptive names.
2026-03-16 09:38:59 +01:00

21 lines
396 B
C#

using System;
int searchId = 796960578;
Log("Suche Item...");
foreach (var item in FloorItems)
{
if (item == null) continue;
if (item.Id == searchId)
{
Log("=== ITEM GEFUNDEN ===");
Log("ID: " + item.Id);
Log("Position: X=" + item.Location.X + ", Y=" + item.Location.Y);
Log("Kind: " + item.Kind);
break;
}
}
Log("Suche beendet.");