Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. module.exports = {
  2. username: "", //Username of the bot, for logging in.
  3. password: "", //Password used to log in.
  4. shared: "", //Sharedsecret
  5. identity: "", //Identitysecret
  6.  
  7. //Pricing
  8. bitskinsApi: "01973925-5743-495c-8713-98b1aaa86488", //Your API key on bitskins.
  9. bitskinsSecret: "DXD25NKH44EDY2UG", //Your bitskins secret.
  10. priceUpdate: 30, //Time in seconds between price updates.
  11. priceFilePath: 'html/modules/txt/prices.txt', //Path to prices.txt located on the server at modules/txt/prices
  12.  
  13. //General
  14. admin: "76561198203257255", //Site admin, the bot will add this user as friend.
  15. updateSecret: '', //lbiPassword from Config.php
  16. botItemsPerUsers: 15, //For every bot item, user can max offer this many. Turn to 999 to disable.
  17. siteLink: 'http://go-trades.com/', //Used to update the bots inventory, and also to disallow outcomming connections. FULL DOMAIN (http://domain.com)
  18. siteName: 'Go-Trades', //Used for the trades.
  19.  
  20. //Bonus rate
  21. bonusRate: 0.02, //When users have the bonus enabled, this is defining their bonus value.
  22.  
  23. //Item Values
  24. minValue: 0.50, //The minimum value an item can have.
  25. itemConditionRate: [ //From lowest to highest, should match config.php!
  26. ['Consumer Grade', 0.86],
  27. ['Industrial Grade', 0.86],
  28. ['Mil-Spec Grade', 0.91],
  29. ['Restricted', 0.91],
  30. ['Classified', 0.96],
  31. ['Covert', 0.96]
  32. ],
  33. itemRateKeys: 1.01,
  34. itemRateKnives: 96,
  35. itemRateMisc: 0.86,
  36.  
  37. botKeyWorth: 1.05
  38. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement