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

27 lines
662 B
C#

Dictionary<string, List<string>> messageLog = new Dictionary<string, List<string>>();
List<string> globalMessageLog = new List<string>();
int messageCount2 = 0;
OnChat(async e =>
{
string entityName2 = e.Entity.Name;
string entityMessage2 = e.Message;
messageCount2++;
string logMessage2 = $"'{messageCount2}':'{entityName2}':'{entityMessage2}'";
globalMessageLog.Add(logMessage2);
if (globalMessageLog.Count > 30)
{
int removeCount = globalMessageLog.Count - 30;
globalMessageLog.RemoveRange(0, removeCount);
}
foreach (var message2 in globalMessageLog)
{
Log(message2);
}
});
Wait();