Re-added WebSocketChat bot and improved it, no longer using WebsocketSharp library

This commit is contained in:
Anon 2023-05-27 19:46:28 +02:00
parent 9855e2e0f1
commit 1efa55206f
9 changed files with 1642 additions and 25 deletions

View file

@ -1238,5 +1238,35 @@ namespace MinecraftClient {
return ResourceManager.GetString("ChatBot.ItemsCollector", resourceCulture);
}
}
internal static string ChatBot_WebSocketBot {
get {
return ResourceManager.GetString("ChatBot.WebSocketBot", resourceCulture);
}
}
internal static string ChatBot_WebSocketBot_Ip {
get {
return ResourceManager.GetString("ChatBot.WebSocketBot.Ip", resourceCulture);
}
}
internal static string ChatBot_WebSocketBot_Port {
get {
return ResourceManager.GetString("ChatBot.WebSocketBot.Port", resourceCulture);
}
}
internal static string ChatBot_WebSocketBot_Password {
get {
return ResourceManager.GetString("ChatBot.WebSocketBot.Password", resourceCulture);
}
}
internal static string ChatBot_WebSocketBot_DebugMode {
get {
return ResourceManager.GetString("ChatBot.WebSocketBot.DebugMode", resourceCulture);
}
}
}
}