mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-04-21 21:52:07 +02:00
25 lines
1.1 KiB
JavaScript
25 lines
1.1 KiB
JavaScript
export default
|
|
{
|
|
"minecraft_version": "1.20.4", // supports up to 1.20.4
|
|
"host": "127.0.0.1", // or "localhost", "your.ip.address.here"
|
|
"port": 55916,
|
|
"auth": "offline", // or "microsoft"
|
|
|
|
"profiles": [
|
|
"./andy.json",
|
|
// add more profiles here, check ./profiles/ for more
|
|
// more than 1 profile will require you to /msg each bot indivually
|
|
],
|
|
"load_memory": false, // load memory from previous session
|
|
"init_message": "Say hello world and your name", // sends to all on spawn
|
|
|
|
"language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages
|
|
|
|
"allow_insecure_coding": false, // allows newAction command and model can write/run code on your computer. enable at own risk
|
|
"code_timeout_mins": 10, // minutes code is allowed to run. -1 for no timeout
|
|
|
|
"max_commands": -1, // max number of commands to use in a response. -1 for no limit
|
|
"verbose_commands": true, // show full command syntax
|
|
"narrate_behavior": true, // chat simple automatic actions ('Picking up item!')
|
|
}
|
|
|