HiIWouldLikeToBuy can notify you when you receive a trade request in Path of Exile.
- Monitor your Path of Exile log file and send notifications via Telegram bot API
- Filter chat messages based on regular expressions, configurable via
config.yaml
- Download HiIWouldLikeToBuy from the releases page on GitHub or optionally compile it yourself
- Copy/rename
config.example.yaml
toconfig.yaml
- Create a new Telegram bot using the @BotFather, put the token into your
config.yaml
. You can find a tutorial here: https://core.telegram.org/bots/tutorial#obtain-your-bot-token - Send a message to your newly created bot and forward that message to the @getidsbot, it will give you your chat ID, which you put into the
config.yaml
- If you are not using an English Path of Exile client you will also have to adapt the filter regexes in
config.yaml
- Change
logFile
to the location of your log file inconfig.yaml
- You are done. Start
HiIWouldLikeToBuy.exe
. Pressing Enter will stop the tool. - Optionally: Verify that it works by sending yourself a trade request
This tool uses C++ std::regex
, which uses regular expressions in ECMAScript flavor. You can test your regular expressions on regex101.com by setting the flavor to ECMAScript (JavaScript)
Currently this is only tested and built on Windows. If you are interested in another platform please open an issue.