Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Major update.tar.gz | 2020-07-18 | 197.4 kB | |
Major update.zip | 2020-07-18 | 231.2 kB | |
README.md | 2020-07-18 | 2.4 kB | |
Totals: 3 Items | 431.0 kB | 0 |
https://github.com/idinium96/tf2autobot/pull/30
New features:
- add a parameter %amount_can_buy%
for the buying listing note. (4ac0c7f)
- add an option to customize playing game name (limited to only 45 characters). (dfa03ab)
-- CUSTOM_PLAYING_GAME_NAME
variable added.
- decline non-5x Uses Dueling Mini-Game is now an option: (ede73bd)
-- DISABLE_CHECK_USES_DUELING_MINI_GAME
variable added.
- add an option to only buy 25x Uses Noise Maker: (82a46e9)
-- DISABLE_CHECK_USES_NOISE_MAKER
variable added.
- add !craftweapon
and !uncraftweapon
commands. (ce434e9)
- !delete
command now can delete an item with an item assetid
or sku
or both. (1ab4bb9, f9c2461, 4272596, 0a41762)
- add an option to accept INVALID_ITEMS/OVERSTOCKED
overpay: (0735688, dfd625a)
-- DISABLE_ACCEPT_INVALID_ITEMS_OVERPAY
and DISABLE_ACCEPT_OVERSTOCKED_OVERPAY
variables added.
- add option to automatically decline ONLY INVALID_VALUE trade while manual review enabled: (b87850c, 1a4da92, dd73aa1, 069da3e)
-- DISABLE_AUTO_DECLINE_INVALID_VALUE
variable added.
Extra - add ecosystem.json templates for multiple bots (b944df5)
Note
*Make sure you've updated your ecosystem.json
/.env
first.
If you are using .env
, newly added variables are:
DISABLE_CHECK_USES_DUELING_MINI_GAME=false
DISABLE_CHECK_USES_NOISE_MAKER=false
DISABLE_ACCEPT_INVALID_ITEMS_OVERPAY=false
DISABLE_ACCEPT_OVERSTOCKED_OVERPAY=false
DISABLE_AUTO_DECLINE_INVALID_VALUE=false
CUSTOM_PLAYING_GAME_NAME="tf2-automatic"
After adding it all and edit to your preferences, save the file and run, run: git pull && npm install && npm run build
and run node dist/app.js
to start your bot.
Else, for ecosystem.json
(or actually just use the template and save as ecosystem.json
to prevent confusion):
"DISABLE_CHECK_USES_DUELING_MINI_GAME": false,
"DISABLE_CHECK_USES_NOISE_MAKER": false,
"DISABLE_ACCEPT_INVALID_ITEMS_OVERPAY": false,
"DISABLE_ACCEPT_OVERSTOCKED_OVERPAY": false,
"DISABLE_AUTO_DECLINE_INVALID_VALUE": false,
"CUSTOM_PLAYING_GAME_NAME": "tf2-automatic",
Save your ecosystem.json then run: git pull && npm install && npm run build
and restart your bot using pm2 restart ecosystem.json --update-env
to apply this update and then pm2 save
to save PM2 process.
Thank you for using this bot!