This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 909
Usage Guide
FunkyLoveCow edited this page Jun 9, 2013
·
8 revisions
This guide will give you an overview on how to work with the new Bot manager command line system to interact with and administer the running bots.
The Bot Manager allows a user to command the bots, whether in separate processes or in separate threads. It allows the user/administrator to interact with the bots via the console window using text commands.
-
start <index in configuration>
: Start the bot that is at the index specified insettings.json
. It is a 0 based index. -
stop <index in configuration>
: Stop the both that is at the index specified insettings.json
. It is a 0 based index. -
show bots
: Dump the bot configuration to the console -
help
: Shows available commands -
auth
: use to enter in a Steam Guard authentication string. The command is in the formatauth X=Y
where X = zero-based index of the configured bot and Y = the steamguard code.
The UseSeparateProcesses
option from settings.json
controls whether the bots will will remain part of the same process but use separate threads whether it will use separate individual processes per bot. The bot manager commands will work either way.
546