2024-05-29 21:49:45 -05:00
|
|
|
export default
|
|
|
|
{
|
|
|
|
"minecraft_version": "1.20.4", // supports up to 1.20.4
|
2024-08-29 19:16:28 -05:00
|
|
|
"host": "127.0.0.1", // or "localhost", "your.ip.address.here"
|
2024-05-29 21:49:45 -05:00
|
|
|
"port": 55916,
|
|
|
|
"auth": "offline", // or "microsoft"
|
|
|
|
|
|
|
|
"profiles": [
|
2024-08-29 19:16:28 -05:00
|
|
|
"./andy.json",
|
2024-06-18 19:58:33 -07:00
|
|
|
|
2024-05-29 21:49:45 -05:00
|
|
|
// 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
|
2024-08-22 15:57:20 -05:00
|
|
|
|
2024-10-02 00:57:28 -05:00
|
|
|
"language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages
|
|
|
|
|
2024-08-22 15:57:20 -05:00
|
|
|
"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
|
2024-06-23 20:15:28 -05:00
|
|
|
"verbose_commands": true, // show full command syntax
|
2024-08-22 15:57:20 -05:00
|
|
|
"narrate_behavior": true, // chat simple automatic actions ('Picking up item!')
|
2024-08-25 14:05:44 -05:00
|
|
|
}
|
2024-10-02 01:08:26 -05:00
|
|
|
|