BotControllerService
This service allows you to interact with the bot directly. It has methods to start and stop the farming and minigame bot and also allows you to load custom settings.
startFarmingBot
Starts the farming bot as if you press the Start
button in the bot.
{
"service": "BotControllerService",
"method": "startFarmingBot",
"params": {}
}
stopFarmingBot
Stops the farming bot as if you press the Stop
button in the bot.
{
"service": "BotControllerService",
"method": "stopFarmingBot",
"params": {}
}
continueFarmingBot
Continues the farming bot as if you press the Continue
button in the bot.
{
"service": "BotControllerService",
"method": "continueFarmingBot",
"params": {}
}
startMinigameBot
{
"service": "BotControllerService",
"method": "startMinigameBot",
"params": {}
}
stopMinigameBot
{
"service": "BotControllerService",
"method": "stopMinigameBot",
"params": {}
}
loadSettings
Loads a specific settings file into the bot.
{
"service": "BotControllerService",
"method": "loadSettings",
"params": {
"ini_file_path": "C:/settings.ini"
}
}
Last updated