Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. module.exports = {
  2. account: {
  3. username: '',
  4. password: '',
  5. shared_secret: '', // Used to get and confirm mobile confirmations
  6. identity_secret: '' // Used to get the 2FA code which is required to login with
  7. },
  8. storageAccounts: {
  9.  
  10. },
  11. rates: {
  12. casesForKey: 30
  13. },
  14. settings: {
  15. retryTime: 10, // Time in seconds to wait and retry if an error occurres
  16. maxRetries: 5, // Max retries when getting the inventory status
  17. admin: ["xxxxxxxxxxxxx", "xxxxxxxxxxxxxx"]
  18. acceptFriendRequests: true,
  19. trade: {
  20. acceptEscrow: false, // If false, the bot will check for escrow and decline if the offer will be held.
  21. acceptScammers: false, // If false, the bot will check SteamREP and decline if they are marked.
  22. },
  23. notify: {
  24. acceptedOffers: true,
  25. declinedOffers: true,
  26. friendAdded: true
  27. },
  28. acceptedCrates: ['Operation Breakout Weapon Case', 'Operation Phoenix Weapon Case', 'Operation Vanguard Weapon Case', 'Operation Wildfire Case', 'Revolver Case', 'Shadow Case', 'Winter Offensive Weapon Case', 'Spectrum 2 Case', 'Operation Hydra Case', 'Gamma Case', 'Gamma 2 Case', 'Glove Case', 'Spectrum Case', 'CS:GO Weapon Case', 'CS:GO Weapon Case 2', 'CS:GO Weapon Case 3', 'Chroma Case', 'Chroma 2 Case', 'Chroma 3 Case', 'eSports 2013 Case', 'eSports 2013 Winter Case', 'eSports 2014 Summer Case', 'Falchion Case', 'Huntsman Weapon Case', 'Operation Bravo Case', 'Operation Breakout Weapon Case'],
  29. acceptedKeys: ['Huntsman Case Key', 'Chroma 2 Case Key', 'Operation Vanguard Case Key', 'Gamma Case Key', 'Operation Breakout Case Key', 'Chroma Case Key', 'Operation Wildfire Case Key', 'Shadow Case Key', 'Gamma 2 Case Key', 'Revolver Case Key', 'Chroma 3 Case Key', 'Operation Hydra Case Key', 'Spectrum Case Key', 'Spectrum 2 Case Key', 'Glove Case Key']
  30. }
  31. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement