Advertisement
JustAzul

config/main.js

Jun 18th, 2019 (edited)
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module.exports = { 
  2.  
  3.     "username": ""      //Bot Username
  4. ,   "password": ""      //Bot Password
  5. ,   "identity": ""      //Bot Identity Secret
  6. ,   "sharedse": ""      //Bot Shared Secret
  7.  
  8.     //Desired admins SteamID64, one value per quote, splited by comma, example [ "value1", "value2" ]
  9. ,   "admin": ["SteamID64"]
  10.  
  11.     //Setup here any csgo key you want bot to ignore
  12. ,   "CsgoBlacklist": []
  13.  
  14.     //Set to true if you want to invite customers to a desired GroupID64
  15. ,   "doGroupInvites": false            
  16.     //Target Group ID64
  17. ,   "GroupID64": ""    
  18.    
  19.     //If you want to change bot name on startups, set to true, false otherwise.
  20. ,   "changeBotName": true          
  21.     //Desired bot name if you want to change on start ups, keys => {rate_csgo}, {rate_tf2}, {rate_hydra}, {rate_gems}          
  22. ,   "BotName": "Blue LevelUP #BOT {rate_csgo}" 
  23.  
  24.     //Set to true if you want the bot to comment on customers profile
  25. ,   "doComment": true          
  26.     //Desired comment you want the bot to make in customers profile
  27. ,   "Comment": "+Rep!, Thanks for use our services!"   
  28.  
  29.     //Set to true if you want bot to accept any donations
  30. ,   "AcceptDonations": true
  31. ,   "DonateComment": {
  32.         "Enabled": true,
  33.         "Message": "Thanks for your donate, its really apreciated :)"
  34.     }
  35.  
  36.     //Setup bot to only handle foil cards instead of normal ones, it will also make bot recognize normal cards as leftovers.
  37. ,   "FoilMode": true
  38.     //Setup bot to act as a steam sale bot, it will only handle appids listed on SteamSaleAppids.json!
  39. ,   "SteamSaleMode": false
  40.     //if you want to auto refuse all group invites, set this to true
  41. ,   "refuseGroups": true
  42.     //Set to true if you want to trade even if a user has a trade hold (escrow)
  43. ,   "TakeEscrow": false        
  44.     //Set to true if you want to handle suppliers (!sell, !sellcheck..), if you dont supply yourself you will need that.
  45. ,   "HandleSuppliers": true    
  46.     //Set to true if you want to be warned in your steam chat about every sell/buy bot does
  47. ,   "getTradeMessages": true
  48.  
  49.     //Max level bot will try to calculate using !level
  50. ,   "maxLevelCalc": 999
  51.     //Max days an customer can be on friend list without interact with bot
  52. ,   "maxDays": 4
  53.     //Max amount of sets, of each appid, that bot will try to buy
  54. ,   "maxStock": 100
  55.     //Max amount of sets that will be allowed to send, or receive in a trade
  56. ,   "maxTradeSets": 600
  57.  
  58.     //Steam.supply support to setup your bot in cardbot catalog list!
  59. ,   "SteamSupply": {
  60.         "Api": "",
  61.         "Enabled": false
  62.     }
  63.    
  64.     /* Auto-Requester Feature */ // * Will send a trade offer following configurations.
  65. ,   "Requester": {
  66.         //Max amount of sets each trade will try to request to target
  67.         "SetsToRequest": 100,
  68.         //Target SteamID64
  69.         "SteamId64": "",
  70.         //Trade-URL of target, need to be same as the id64
  71.         "TradeURL": "",
  72.         //Timer interval of requester in minutes
  73.         "Interval": 30,
  74.         //Set to true if you want to ignore the "maxStock"
  75.         "IgnoreLimit": true,
  76.         //True to send our leftovers
  77.         "SendLeftovers": true,
  78.         //True to enable, false to otherwise
  79.         "Enabled": false
  80.     }
  81.  
  82.     //Set to true to display debug logs, although even if this is false, debugs will be saved on history folder..
  83. ,   "DebugMode": false 
  84. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement