Advertisement
Guest User

Untitled

a guest
Jul 21st, 2018
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. 'use strict'
  2.  
  3. module.exports = {
  4. appID: 730, // 730 - CS:GO
  5. contextID: 2, // ContextID
  6. bots: {
  7. bot_1: {
  8. siteName: 'Bot 1', // Will be displayed under the "All bots" tab e.g. "Keys Only"
  9. accountName: 'cshotswapbot', // bot_1 username
  10. password: 'Eichwald123', // bot_1 password
  11. twoFactorCode: '', // shared_secret value
  12. identitySecret: '', // identity_secret value
  13. steamID64: '76561198849001269', // SteamID64 of bot account can be found here: "https://steamid.io/"
  14. personaName: 'CSG0.Trade BOT #1', // Nickname for bot account, will change on restart
  15. },
  16. },
  17. steamApiKey: '', // Your Steam API key, get it here: https://steamcommunity.com/dev/apikey
  18. SteamApisKey: '', // Your SteamApis.com key, get it here: https://steamapis.com
  19. SteamApisCompactValue: 'safe_ts.last_30d', // Use safe price calculated from 30 days of data, more info: https://steamapis.com/developers (Market Items - Optional Query Parameters "compact_value")
  20. site: {
  21. header: 'Cshotswap', // Name/header/title of website. Prefix for <title></title> (For more: /index.html line: 9)
  22. steamGroup: '#',
  23. copyrights: 'Copyright © Cshotswap 2018', // Copyright text
  24. },
  25. domain: 'cshotswap.com', // Domain name only, follow the example (no http:// & no www & no /)
  26. website: 'http://cshotswap.com', // Website URL, follow the example (do not add / at the end)
  27. websitePort: 80, // Website PORT, don't change it unless you're using a reverse proxy
  28. tradeMessage: 'Trade offer from Cshotswap | If you did not request this offer or the offer looks invalid please decline.', // Quite obvious
  29. rates: {
  30. ignoreItemsBelow: 0.05, // Ignore items below this price (price * rate < ignoreItemsBelow) - shows (Too Low) for user
  31. trashPriceBelow: 0.2, // Items below this price are considered trash, the trash rate modifier will be applied
  32. // Items
  33. user: {
  34. key: 1,
  35. knife: 0.95,
  36. rare_skin: 0.95,
  37. weapon: 0.9,
  38. misc: 0.85,
  39. trash: 0.7,
  40. },
  41. bot: {
  42. key: 1.05,
  43. knife: 1,
  44. rare_skin: 1,
  45. weapon: 0.95,
  46. misc: 0.9,
  47. trash: 0.8,
  48. },
  49. },
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement