Created
April 7, 2018 22:39
-
-
Save pepzwee/d67751d5f66f599814e93f750d2ca988 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
module.exports = { | |
appID: 730, // 730 - CS:GO | |
contextID: 2, // ContextID | |
bots: { | |
'bot_1': { | |
"siteName": "Bot 1", | |
"accountName": "<removed>", | |
"password": "<removed>", | |
"twoFactorCode": "<removed>", | |
"identitySecret": "<removed>", | |
"steamID64": "<removed>", | |
"personaName": "csg0.trade - Bot #1" | |
} | |
}, | |
steamApiKey: '<removed>', // Your Steam API key, get it here: https://steamcommunity.com/dev/apikey | |
SteamApisKey: '<removed>', // Your SteamApis.com key, get it here: https://steamapis.com | |
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") | |
site: { | |
header: 'CSG0.Trade', // Name/header/title of website. Prefix for <title></title> (For more: /index.html line: 9) | |
steamGroup: '#', | |
copyrights: 'Copyright © csg0.trade 2017', // Copyright text | |
}, | |
domain: 'csg0.trade', // Domain name only, follow the example (no http:// & no www & no /) | |
website: 'https://csg0.trade', // Website URL, follow the example (do not add / at the end) | |
websitePort: 80, // Website PORT, don't change it unless you're using a reverse proxy | |
tradeMessage: 'Trade offer from csg0.trade | If you did not request this offer or the offer looks invalid please decline.', // Quite obvious | |
rates: { | |
ignoreItemsBelow: 0.05, // Ignore items below this price (price * rate < ignoreItemsBelow) - shows (Too Low) for user | |
trashPriceBelow: 0.2, // Items below this price are considered trash, the trash rate modifier will be applied | |
// Items | |
user: { | |
key: 1, | |
knife: 0.95, | |
rare_skin: 0.95, | |
weapon: 0.9, | |
misc: 0.85, | |
trash: 0.7, | |
}, | |
bot: { | |
key: 1.05, | |
knife: 1, | |
rare_skin: 1, | |
weapon: 0.95, | |
misc: 0.9, | |
trash: 0.8, | |
}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment