· 7 years ago · Mar 05, 2018, 04:54 PM
1/*
2 _____ __ ______ ____
3 / ___// /____ ____ _____ ___ / ____/___ _/ / /
4 \__ \/ __/ _ \/ __ `/ __ `__ \/ / / __ `/ / /
5 ___/ / /_/ __/ /_/ / / / / / / /___/ /_/ / / /
6/____/\__/\___/\__,_/_/ /_/ /_/\____/\__,_/_/_/
7
8connormcf.com
9*/
10module.exports = {
11 /*
12 * Your steam account username
13 * Type: string
14 * Default: required
15 */
16 'STEAM_USERNAME': 'USERNAME',
17 /*
18 * Your steam account password
19 * Type: string
20 * Default: required
21 */
22 'STEAM_PASSWORD': 'PASSWORD',
23 /*
24 * Your steam account two factor secret
25 * Type: string/boolean
26 * Default: false
27 * Example: 'cnOgv/KdpLoP6Nbh0GMkXkPXALQ='
28 *
29 * This is required if your account has mobile
30 * authenticator enabled on it.
31 *
32 * If you have two factor enabled and you do not
33 * set this value, you will be prompted to enter
34 * a steam guard code in game when you join.
35 *
36 * See the main README for more information on
37 * how to get this value
38 */
39 'STEAM_TWOFACTOR': false,
40 /*
41 * API secret key
42 * Type: string
43 * Default: required
44 *
45 * This should be a random string and must be
46 * the same as the one in the addon.
47 */
48 'SECRET_KEY': 'Ou1hsMZmSLNRSSg7mkPvd/6ohWU=',
49 /*
50 * API port
51 * Type: integer
52 * Default: 8393
53 *
54 * The port for the addon to communicate with
55 * the API over.
56 */
57 'PORT': 8393,
58 /*
59 * Should the Steam two factor secret be converted
60 * to a buffer
61 * Type: boolean
62 * Default: true
63 *
64 * Enable this option if you are getting invalid 2FA
65 * codes
66 */
67 'KEY_NEEDS_BUFFER': false,
68 /*
69 * Should the bot auto accept incoming friend requests
70 * Type: boolean
71 * Default: true
72 */
73 'ACCEPT_FRIENDS': true
74}