-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
ItemsMatcherPlugin ru RU
ItemsMatcherPlugin
is official ASF plugin that extends ASF with ASF STM listing features. In particular, this includes PublicListing
in RemoteCommunication
and MatchActively
in TradingPreferences
. ASF comes with ItemsMatcherPlugin
bundled together with the release, therefore it's ready for usage right away.
Public listing, as the name implies, is listing of currently available ASF STM bots. It's located on our website, managed automatically and used as a public service for both ASF users that make use of MatchActively
, as well as ASF and non-ASF users for manual matching.
In order to be listed, you have a set of requirements to meet. At the minimum you must have allowed PublicListing
in RemoteCommunication
(default setting), SteamTradeMatcher
enabled in TradingPreferences
, public inventory privacy settings, unrestricted account, ASF 2FA active and at least 100
items from specified MatchableTypes
, such as trading cards.
While PublicListing
is enabled by default, please note that you will not be displayed on the website if you do not meet all of the requirements, especially SteamTradeMatcher
, which isn't enabled by default. For people that do not meet the criteria, even if they kept PublicListing
enabled, ASF doesn't communicate with the server in any way. Public listing is also compatible only with latest stable version of ASF and may refuse to display outdated bots, especially if they're missing core functionality that can be found only in newer versions.
ASF отправляет начальные данные один раз после входа, они содержат все свойства которые используются в публичном списке. После этого, каждые 10 минут ASF отправляет один очень маленький "heartbeat" запрос, который сообщает нашему серверу что бот всё ещё запущен. Если по какой-то причине "heartbeat" не был получен, например из-за проблем с сетью, ASF будет пытаться снова каждую минуту, пока сервер его не зарегистрирует. This way our server knows precisely which bots are still running and ready to accept trade offers. ASF will also send initial announcement on as-needed basis, for example if it detects that our inventory has changed since the previous one.
We display all ASF 2FA+STM accounts that were active in the last 15 minutes. Users are sorted according to their relative usefulness - MatchEverything
bots which are shown with Any
banner that accept all 1:1 trades, then unique games count, and finally items count.
Каталог ASF STM на данный момент отображает только ботов на основе ASF. There is no way to list third-party bots on our listing for now, as we can't review their code easily and ensure they meet our entire trading logic. Participation in the listing therefore requires latest stable ASF version, although it can run with custom plugins.
For consumers of the listing, we have a very simple /Api/Listing/Bots
endpoint that you can use. It includes all the data we have, apart from inventories of users which are part of MatchActively
feature exclusively.
If you agree to being listed in our listing, by enabling SteamTradeMatcher
and not refusing PublicListing
, as specified above, we'll temporarily store some of your Steam account details on our server in order to provide the expected functionality.
Public info (exposed by Steam to every interested party) includes:
- Ваш идентификатор Steam (в 64-разрядном формате, для создания ссылок)
- Ваш никнейм (для отображения)
- Ваш аватар (только хеш, для отображения)
Semi-public info (exposed by Steam to every interested party if you meet listing requirements) includes:
- Your inventory (so people can use
MatchActively
against your items).
Private info (selected data required for providing the functionality) includes:
- Ваш токен для обменов (чтобы люди, не состоящие в вашем списке друзей могли отправить вам обмен)
- Your
MatchableTypes
setting (for display purposes and matching) - Your
MatchEverything
setting (for display purposes and matching) - Your
MaxTradeHoldDuration
setting (so other people know whether you're willing to accept their trades)
MatchActively
setting is active version of SteamTradeMatcher
including interactive matching in which the bot will send trades to other people. Он может работать автономно или вместе с настройкой SteamTradeMatcher
. This feature requires LicenseID
to be set, as it uses third-party server and paid resources to operate.
Чтобы использовать данный режим, вам необходимо соответствовать ряду требований. At the minimum you must have unrestricted account, ASF 2FA active and at least one valid type in MatchableTypes
, such as trading cards.
If you meet all of the requirements above, ASF will periodically communicate with our public ASF STM listing in order to actively match bots that are currently available.
Сопоставление начинается примерно через 1
час с момента запуска ASF, и будет повторяться каждые 6
часов (при необходимости). During matching, ASF bot will fetch its own inventory, then communicate with our server with it to find all possible MatchableTypes
matches from other, currently available bots. Thanks to communicating directly with our server, this process requires a single request and we have immediate information whether any available bot offers something interesting for us - if match is found, ASF will send and confirm trade offer automatically.
Работа этого модуля должна быть полностью прозрачной. Matching will start in approximately 1
hour since ASF start, and will repeat itself each 6
hours (if needed). MatchActively
feature is aimed to be used as a long-run, periodical measure to ensure that we're actively heading towards sets completion, however, people that are not running ASF 24/7 may also consider using a match
command. Целевые пользователи данного модуля это основные аккаунты и дополнительные аккаунты-"склады", однако его можно использовать для любого бота, у которого не включен режим MatchEverything
.
ASF будет делать все возможное чтобы сократить количество запросов и иную нагрузку, возникающие из-за использования этого функционала, в тоже время максимально увеличивая эффективность сопоставления. Точный алгоритм, по которому выбираются боты для сопоставления и прочая организация процесса - это детали реализации ASF и могут меняться в соответствии с полученной обратной связью, ситуацией и возможными будущими идеями.
Согласно текущей версии алгоритма, ASF сначала обрабатывает ботов с параметром Any
, в первую очередь тех, которые предоставляют большее разнообразие игр, из которых у них есть карточки. When running out of Any
bots, ASF will move on to the Fair
ones upon same diversity rule. ASF will try to match every available bot at least once, to ensure that we're not missing on a possible set progress.
MatchActively
учитывает ботов, которых вы внесли в черный список для торговли через tbadd
команду и не будет пытаться активно сопоставлять их. Это можно использовать чтобы указать ASF ботов, с которыми никогда не следует сопоставлять наборов, даже если они имеют потенциальные дубликаты которые можно использовать.
ASF is, and remains, free and open-source, as it was established at the start of the project back in October 2015. Source code of ItemsMatcher
plugin and therefore MatchActively
feature is available in our repository, while ASF program is entirely non-commercial, we do not earn anything from contributions to it, building or publishing. Over those past 7+ years ASF has received tremendous amount of development, and it's still being improved and enhanced with every monthly stable release mostly by a single person, JustArchi - with no strings attached. The only funding we receive is from non-obligatory donations that come from our users.
For a very long time, until October 2022, MatchActively
feature was part of ASF core and available for everyone to use. In October 2022, Valve, the company behind Steam, has put very severe rate limits on fetching inventories of other bots - which rendered previous functionality entirely broken, with no possibility of a solution to resolve this problem. Therefore, due to the fact that the feature has became entirely defunct with no chance of being fixed, it had to be removed from ASF core in version 5.4.1.0 as obsolete.
MatchActively
was resurrected as part of official ItemsMatcher
plugin that further enhances ASF with active cards matching functionality. Resurrecting MatchActively
feature required from us extraordinary amount of work to create ASF backend, entirely new service hosted on a server, with more than a thousand of proxies attached for resolving inventories, all exclusively to allow ASF clients to make use of MatchActively
like before. Due to the amount of work involved, as well as resources that are not free and require to be paid on monthly basis by us (domain, server, proxies), we've decided to offer this functionality to our sponsors, that is, people that already support ASF project on monthly basis.
Our goal isn't to profit from it, but rather, cover the monthly costs that are exclusively linked with offering this option - that's why we offer it basically for nothing, but we do have to charge a little for it as we can't pay hundreds of dollars from our own pockets each month, just to make it available for you. The alternative would be to not have such feature available at all, which of course applies if you decide, for whatever reason, that you can't justify using it on those terms. We understand that it's not for everybody, and we hope that you also understand why we can't offer it for free.
ItemsMatcher
is offered as part of $5+ sponsor tier on JustArchi's GitHub. Simply become a sponsor of $5 tier (or higher), then read configuration section to obtain and fill LicenseID
. Afterwards, simply enable MatchActively
in TradingPreferences
of your chosen bot.
The license allows you to send limited amount of requests to the server. $5 tier allows you to use MatchActively
for one bot account (4 requests daily), and every additional $5 adds two more bot accounts (8 requests daily).
- 🏡 Главная
- 🔧 Конфигурация
- 💬 ЧАВО
- ⚙️ Настройка (начать здесь)
- 👥 Фоновая активация ключей
- 📢 Команды
- 🛠️ Совместимость
- 🧩 Плагин ItemsMatcherPlugin
- 📋 Управление
- ⏱️ Производительность
- 📡 Удаленная связь
- 👪 Steam Family Sharing
- 🔄 Обмены
- ⌨️ Аргументы командной строки
- 🚧 Устаревание
- 🐳 Docker
- 🤔 Расширенное ЧАВО
- 🚀 Конфигурация для высокой производительности
- 🔗 IPC
- 🌐 Локализация
- 📝 Журналирование
- 💾 Конфигурация для малого ОЗУ
- 🕵🏼♂️ Плагин мониторинга
- 🔌 Плагины
- 🔐 Безопасность
- 🧩 SteamTokenDumperPlugin
- 📦 Сторонние разработки
- 📵 Двухфакторная аутентификация