Advertisement
JustAzul

config/main.js

May 2nd, 2021 (edited)
1,531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module.exports = {
  2.   // Bot Username
  3.   username: '',
  4.   // Bot Password
  5.   password: '',
  6.   // Bot Identity Secret
  7.   identity: '',
  8.   // Bot Shared Secret
  9.   sharedse: '',
  10.  
  11.   // Desired admins SteamID64, one value per quote, splited by comma, example [ "value1", "value2" ]
  12.   admin: ['SteamID64'],
  13.  
  14.   // Setup here any csgo key you want bot to ignore
  15.   CsgoBlacklist: [],
  16.  
  17.   // This blacklist is to ignore any item on the bot side that has this specific market hash name, on incoming trades (bg/emotes)
  18.   ItemBlacklist: [],
  19.   // Items here will be like it never existed on bot side, you should put here your profile backgrounds, and emotes your bot use.
  20.   ItemIgnoreList: [],
  21.  
  22.   // Set to true if you want to invite customers to a desired GroupID64
  23.   doGroupInvites: false,
  24.   // Target Group ID64
  25.   GroupID64: '',
  26.  
  27.   // If you want to change bot name on startups, set to true, false otherwise.
  28.   changeBotName: true,
  29.   // Desired bot name if you want to change on start ups
  30.   BotName: 'Blue LevelUP #BOT {rate_csgo}',
  31.  
  32.   // Set to true if you want the bot to comment on customers profile
  33.   doComment: true,
  34.   // Desired comment you want the bot to make in customers profile
  35.   Comment: '+Rep!, Thanks for use our services!',
  36.  
  37.   // Setup a message to be sent when a trade is complete (!sell, !buy)
  38.   TradeMessage: {
  39.     Enabled: true,
  40.     Message: 'Thanks for use my services, it would be realy cool if you leave me a +rep comment :D',
  41.   },
  42.  
  43.   // Set to true if you want bot to accept any donations
  44.   AcceptDonations: true,
  45.   DonateComment: {
  46.     Enabled: true,
  47.     Message: 'Thanks for your donate, its really apreciated :)',
  48.   },
  49.  
  50.   // if you want to auto refuse all group invites, set this to true
  51.   refuseGroups: true,
  52.   // Set to true if you want to trade even if a user has a trade hold (escrow)
  53.   TakeEscrow: false,
  54.   // Set to true if you want to handle suppliers (!sell, !sellcheck..), if you dont supply yourself you will need that.
  55.   HandleSuppliers: true,
  56.   // Set to true if you want to be warned in your steam chat about every sell/buy bot does
  57.   getTradeMessages: true,
  58.  
  59.   // Max days an customer can be on friend list without interact with bot
  60.   maxDays: 4,
  61.  
  62.   // Set to true to display debug logs, although even if this is false, debugs will be saved on history folder..
  63.   DebugMode: false,
  64. };
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement