xabbo-scripts/VikingBurner.csx
Administrator b6c31a7feb Add 165 scripts from desktop collection + update README
Added scripts from C:\Users\ploet\Desktop\Habbo\Xabbo Scripte:
- 39 KI/Chatbot scripts (ChatGPT, Gemini, Grok, DeepSeek, Ollama)
- Game solvers (Domino, Dodgeball, Obsidian Maze, IceBall)
- Collision avoidance bots (5 versions)
- Plant/breeding automation (12 scripts)
- Trading tools, packet debuggers, room utilities
- Navigation & teleport helpers

Removed: 9 files (3 empty, 2 trivial, 4 cross-duplicates)
Updated README with full categorized index of all 230+ scripts.

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

20 lines
599 B
C#

int ROLLS_PER_ITEM = 6;
int DELAY_BETWEEN_ROLLS_MS = 100;
int DELAY_AFTER_PICKUP_MS = 200;
OnIntercept(In["ObjectAdd"], async p => {
var furniID = p.Packet.ReadInt();
p.Packet.ReadInt();
var X = p.Packet.ReadInt();
var Y = p.Packet.ReadInt();
for (int i = 0; i < ROLLS_PER_ITEM; i++) {
UseFloorItem(furniID);
await Task.Delay(DELAY_BETWEEN_ROLLS_MS);
}
await Task.Delay(DELAY_AFTER_PICKUP_MS);
PickupFloorItem(furniID);
await Task.Delay(DELAY_AFTER_PICKUP_MS);
Send(Out["BuildersClubPlaceRoomItem"],1846050,13772,"",X,Y,2,false);
});
Wait();