-
Notifications
You must be signed in to change notification settings - Fork 15
Configuration
github-actions[bot] edited this page Oct 3, 2024
·
5 revisions
Edit config.yml
to add mods and bots. Some mods also look there for configuration.
The mods and bots are installed using npm install
, thus you can use anything that it recognizes as a valid package.
We currently add the following mods, as default:
Mods are managed by changing the mods
YAML list in config.yml
.
Here is an example where we remove mongo
and add cli
mods:
- screepsmod-auth
- screepsmod-admin-utils
- - screepsmod-mongo
+ - screepsmod-cli
Bots are managed by changing the bots
object in config.yml
. The key is the name you wish to use for the bot, the value is the package.
bots:
- simplebot: screepsbot-zeswarm
+ zeswarm: screepsbot-zeswarm
+ quorom: screepsbot-quorum
We can set options specific to the server. Here is an example that forwards log messages to the terminal.
serverOptions:
- logConsole: false
+ logConsole: true