Your browser does not support JavaScript or its disabled!
Please turn it on, or be aware that some features on this website will not work correctly.
2.9K
Use same config for all chars #14

This code is outdated and will not work as standard.

This will allow you to use multiple storage files for the same bot config
Open your OtClient folder and open \modules\game_bot\bot.lua

Find the text -- storage and replace with the code below.
You can then copy the contents of your previous storage.json into the new file and reopen the config.
File: bot.lua | 278b | 7 lines.
 --[[
  Script made by Lee (Discord: l33_) - www.trainorcreations.com
  If you want to support my work, feel free to donate at https://trainorcreations.com/donate
  PS. Stop ripping off my work and selling it as your own.
 ]]--
  local configName = settings[index].config
+ local playerName = g_game.getLocalPlayer():getName():lower()

  -- storage
  botStorage = {}
- botStorageFile = "/bot/" .. configName .. "/storage.json"
+ botStorageFile = "/bot/" .. configName .. "/".. playerName .."_storage.json"
+ add | - remove

01 Jan 2020
Ads