
LCon - Local Console Access
Simple mod that adds WebSocket server to Minecraft, which allows to send commands and receive answers almost like RCon does.
- Загрузки
- 637
- Подписчики
- 4
- Обновлён
- 27 сентября 2024 г.
- Лицензия
- All-Rights-Reserved
Опубликован 27 мая 2024 г.
Simple client-only mod that adds WebSocket server to Minecraft, which allows to send commands and receive answers almost like RCon does.
Usage:
By default mod creates a config with the following settings:
enable_mod = trueport = 8115
So, a WebSocket server will be created listening on port 8115. All you have to do is connect to this server using your preferred WebSocket client.
After successful connection, server will respond back with the following information:
200:Welcome to LCon! Have fun! Don't forget to use prefixes with every message you send to me.
200:Valid prefixes:
200:[chat] - send message to Minecraft chat.
200:[message] - display message for player only.
200:[system] - display system message in chat (for player only).
200:[client] - execute client-side command.
200:[server] - execute server-side command.
201:ready.
Server prepends every message with the status code. They're pretty similar to regular HTTP status codes:
200 - normal message201 - status message (success)400 - error
Well, you may send various data to server to perform certain actions and get back messages from server. Every message that is printed in Minecraft chat will be echo'ed to connected WebSocket clients. So, your client should either parse or ignore them.
To send something to server, you must prepend the message itself with one of the valid prefixes as stated above. Sending message without valid prefix will result in error sent back with appropriate status code.
Ченджлог
1.19.2-1.0.4-backportБета1.19.2 · 27 сентября 2024 г.
Backport of 1.20-1.0.4
1.0.4Релиз1.20.1 · 1 июня 2024 г.
- Fixed crash when playing on server
1.0.3Релиз1.20.1 · 28 мая 2024 г.
- Added [system] prefix to send client message in game chat.
1.0.2Релиз1.20.1 · 28 мая 2024 г.
- Fixed sequential deaths desync :D
1.0.1Релиз1.20.1 · 28 мая 2024 г.
- Added cleanup code on player disconnect
1.0.0Релиз1.20.1 · 27 мая 2024 г.
- Initial release
Комментарии
Загружаем…