mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Added the Web Socket Chat Bot.
This commit is contained in:
parent
0e7423d1d9
commit
ed910aa9c7
9 changed files with 1272 additions and 3 deletions
|
|
@ -700,6 +700,17 @@ bot.scriptScheduler.running_inverval=Interval / Running action: {0}
|
|||
bot.scriptScheduler.running_login=Login / Running action: {0}
|
||||
bot.scriptScheduler.task=triggeronfirstlogin: {0}\n triggeronlogin: {1}\n triggerontime: {2}\n triggeroninterval: {3}\n timevalue: {4}\n timeinterval: {5}\n action: {6}
|
||||
|
||||
# WebSocketBot
|
||||
bot.WebSocketBot.session_id_changed=§bSession with an id §a{0}§b has been renamed to: §a{1}§b!
|
||||
bot.WebSocketBot.session_authenticated=§bSession with an id §a{0}§b has been succesfully authenticated!
|
||||
bot.WebSocketBot.failed_to_start.ip=§cFailed to start a server! The provided IP address is not a valid one!
|
||||
bot.WebSocketBot.failed_to_start.port=§cFailed to start a server! The port number provided is out of the range, it must be 65535 or bellow it!
|
||||
bot.WebSocketBot.failed_to_start.custom=§cFailed to start a server:\n\n{0}\n\n
|
||||
bot.WebSocketBot.starting=Starting the Websocket server...
|
||||
bot.WebSocketBot.started=§bServer started on ip §a{0}§b port: §a{1}
|
||||
bot.WebSocketBot.new_session=§bNew session connected: §a{0}
|
||||
bot.WebSocketBot.session_disconnected=§bSession with an id §a{0}§b has disconnected!
|
||||
|
||||
# TestBot
|
||||
bot.testBot.told=Bot: {0} told me : {1}
|
||||
bot.testBot.said=Bot: {0} said : {1}
|
||||
|
|
@ -940,3 +951,9 @@ config.ChatBot.ReplayCapture.Backup_Interval=How long should replay file be auto
|
|||
|
||||
# ChatBot.ScriptScheduler
|
||||
config.ChatBot.ScriptScheduler=Schedule commands and scripts to launch on various events such as server join, date/time or time interval\n# See https://mccteam.github.io/guide/chat-bots.html#script-scheduler for more info
|
||||
|
||||
# ChatBot.WebSocketBot
|
||||
config.ChatBot.WebSocketBot=Remotely control the client using Web Sockets.\n# This is useful if you want to implement an application that can remotely and asynchronously execute procedures in MCC.\n# Example implementation written in JavaScript: https://github.com/milutinke/MCC.js.git\n# The protocol specification will be available in the documentation soon.
|
||||
config.ChatBot.WebSocketBot.Ip=The IP address that Websocket server will be bounded to.
|
||||
config.ChatBot.WebSocketBot.Port=The Port that Websocket server will be bounded to.
|
||||
config.ChatBot.WebSocketBot.Password=A password that will be used to authenticate on thw Websocket server (It is recommended to change the default password and to set a strong one).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue