-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.yaml
43 lines (43 loc) · 1.79 KB
/
config.example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
# RENAME TO "config.yaml"
# main steam account
# items will be traded from here
main-account:
username: "MyMainSteamAccount"
password: "password"
# used to log in w/ 2fa (required to trade)
shared-secret: "Y7vCfOb5GYOWmf8FljXiUgQnFik="
# used to confirm trades (only needed if auto-accept-trades is true)
identity-secret: "sLyS2HBwxFVIAU1CTRC7w+3kYz4=="
# they look very similar so watch out!
# alternate steam accounts
alternate-accounts:
- username: "MyAlternateSteamAccount"
password: "password"
# identity secret not needed
shared-secret: "Y7vCfOb5GYOWmf8FljXiUgQnFik="
# not needed on primary account
# items will be primarily traded to here
priorities: []
- username: "MySecondAlternateSteamAccount"
password: "password"
# identity secret not needed
shared-secret: "Y7vCfOb5GYOWmf8FljXiUgQnFik="
# prioritizes giving a certain type of items to this account.
# all current options listed: Useful for organizing multiple accounts with different items.
# ["Knife", "Gloves", "Pistol", "Rifle", "Sniper Rifle", "Shotgun", "SMG", "Machinegun", "Graffiti", "Sticker", "Agent", "Container", "Collectible", "Patch"]
# (ex. one account for cases (containers) and another for graffities)
priorities: ["Container", "Sticker"]
options:
# minimum price of a skin for it to stay in your inventory
min-price: 1.00
# automatically accepts trades. disable if you want to manually review beforehand.
auto-accept-trades: true
# always trades certain types regardless of price
# (not normally needed unless you want to trade certain items without setting a min price)
always-trade-graffities: true
always-trade-stickers: true
always-trade-agents: true
always-trade-containers: true
always-trade-collectibles: true
always-trade-patches: true