-
Notifications
You must be signed in to change notification settings - Fork 909
Configuration Guide
This guide will help you configuring your instance of SteamBot through the settings.json
file. This file is located in the same place as the SteamBot.exe
executable. A file named settings-template.json
is available to use as a go-by.
See the Installation Guide for details on building the SteamBot project.
In order to run SteamBot you need to configure your bots propertly. This is done by creating a settings.json
file located in the same place as the SteamBot executable or by renaming the settings-template.json
.
The settings file is formatted using [JavaScript Object Notation (JSON)] (http://www.json.org) and must adhere to the syntactic structure of the language. Therefore it is advised to base your configuration off of the provided template file.
Here is a copy the template file. This guide will describe each configuration option in the following sections.
{
"Admins":["234567"],
"ApiKey":"Steam API Key goes here!",
"mainLog": "syslog.log",
"Bots": [
{
"Username":"BOT USERNAME",
"Password":"BOT PASSWORD",
"DisplayName":"TestBot",
"ChatResponse":"Hi there bro",
"logFile": "TestBot.log",
"BotControlClass": "SteamBot.SimpleUserHandler",
"MaximumTradeTime":180,
"MaximumActionGap":30,
"DisplayNamePrefix":"[AutomatedBot] ",
"TradePollingInterval":800,
"LogLevel":"Success"
}
]
}
These configuration options are global to the entire SteamBot application as opposed to the per-bot options in the next section.
Admins
: An array of Steam Profile IDs (64 bit IDs) of the users that are an Admin of your bot(s). Each Profile ID should be a string in quotes and separated by a comma. These admins are global to all bots listed in the Bots
array.
ApiKey
: The API key you have been assigned by Valve. If you do not have one, it can be requested from Value at their Web API Key page. This is required and the bot(s) will not work without an API Key. The API Key should be a string in quotes.
mainLog
: The log containing runtime information for all bots. This is independent of the logs for each Bot.
The Bots
object is an array of JSON objects containing information about each individual bot you will be running. You can run multiple bots at the same time by having multiple elements in the Bots
array. Each bot object must be separated by a comma.
Each entry in the Bots
array consists of the following string-values pairs:
-
Username
: REQUIRED The Steam user name for this bot. It should be a string in quotes. -
Password
: REQUIRED The password for the Steam user associated with this bot. It should be a string in quotes. -
DisplayName
: REQUIRED The name the bot will present on Steam. It should be a string in quotes. -
ChatResponse
: REQUIRED This is the response the bot will provide when a user chats with it via Steam Friends. It should be a string in quotes. -
logFile
: REQUIRED The log file for this specific bot. It should be a string in quotes. -
BotControlClass
: REQUIRED The fully qualified class name that controls how this specific bot will behave. It must be the fully qualified class (ie. SteamBot.SimpleUserHandler`). Generally, this type is in a separate file like [SimpleUserHandler.cs] (https://github.com/Jessecar96/SteamBot/blob/master/SteamBot/SimpleUserHandler.cs). It should be a string in quotes.Currently the SteamBot provides two default classes that can be used as a bot control class, SteamBot.SimpleUserHandler and SteamBot.AdminUserHandler. These classes can be extended or used as a basis for creating a new user handler class. See the next section for details on creating User Handlers.
-
Admins
: Additional admins, specific to this bot. 64-bit Steam IDs (optional) -
MaximumTradeTime
: Maximum length of time for a trade session (in seconds). It should be a numeric value. Defaults to 180 seconds. (optional) -
MaximumActionGap
: Length of time the bot will allow the user to remain inactive. It should be a numeric value. Defaults to 30 seconds. (optional) -
DisplayNamePrefix
: A prefix to display in front of the DisplayName. It should be a string enclosed by quotes. Defaults to an empty string. (optional) -
TradePollingInterval
: Length of time, in milliseconds, between polling events. Higher values reduce CPU usage at the cost of a slower trading session. It should be a numeric value. Default is 800 ms. Lowest value is 100 ms. (optional) -
LogLevel
: Detail level of bot's log. In order from most verbose to least verbose, valid options are:-
Debug
: Information that is helpful in performing diagnostics. -
Info
: Generally useful information such as start/stop, polling events, etc. (default) -
Success
: Events that have completed in an expected manner. -
Warn
: Potential application problems, but which have been automatically handled. -
Error
: Event that prevents the bot from continuing to function without corrective action. -
Interface
: Events that require user interaction, such as entering a Steam Guard code to complete a login. -
Nothing
: A log level that suppresses all previous levels. (not recommended)
-
You can edit the files SimpleUserHandler.cs
or AdminUserHandler.cs
as they contain examples of most everything you need to fully customize your bot. Alternatively, you can create a new user handler to control bot behavior.
To create a custom User Handler you are going to create a class that inherits from SteamBot.UserHandler
. UserHandler
is an abstract base class that provides several methods that must be overridden in order to work. When you override them in your custom class you can provide any implementation you want in order to fully customize your bot's responses to trades, responses to chat messages, item validation, etc.
The UserHandler
methods are mostly reactionary in nature, i.e. what to do when the bot has been proposed a trade or sent a message. These methods are explained in UserHandler.cs
code comments but here is a basic run-down of what's available to your subclass if you decide to do this:
If you create your own handler, remember to modify the BotControlClass
setting in your configuration.
Returns true
if the other user interacting with the bot is one of the configured Admins. See settings.json format above.
The Log
class for the Bot that you can use this to output important information to the console you see on the screen.
The Bot
instance for the bot the user handler is running for. You can use this to access some advanced features of the Bot like the Steam Friends system below.
Send a chat message to the specified user (by steam id).
Add a friend by steam id.
Remove a friend by steam id.
Most of the trade interaction will occur through the abstract methods that you will have to implement as a subclass. These are mostly Trade events that happened outside of the Bot. For example OnTradeAddItem
is called when the other user adds an item to the trade window. In this function your class could add equal, lesser, or greater value items (or send the user a nasty message about low-balling). To do this you will have to interact with the trade via the UserHandler.Trade
object described below.
Add an item by its id
property into the next available slot in the trade window.
Same as AddItem, but you specify the defindex of the item instead of the id.
Removes the specified item from the trade window.
Sets the trade ready-status depending on the ready
parameter. true
to set the bot's status to ready.
Calling this method accepts the trade. It's the second step after both parties ready-up.
Sends a message to the other user over trade chat.
546