Blackixx / BossShopPro

BossShopPro is one of the most player-friendly and multifunctional GUI plugins ever! Say goodbye to all the annoying command- or signshops!
https://www.spigotmc.org/resources/bossshoppro-the-most-powerful-chest-gui-shop-menu-plugin.222/
MIT License
43 stars 63 forks source link

API Question: Is it possible to listen to new transactions? #103

Closed humaxi closed 3 years ago

humaxi commented 3 years ago

I would like to create an addon that listens to transactions (buy and sell) I couldn't find it in the docs nor the in the API code. Is it currently possible to do this? If so, can you point me in the right direction?

My goal is to create an addon for BossShop that logs all transactions to MySQL.

Thanks in advance!

Blackixx commented 3 years ago

Take a look at the following event to which you can listen: https://github.com/Blackixx/BossShopPro/blob/master/src/main/java/org/black_ixx/bossshop/events/BSPlayerPurchasedEvent.java (check out the event package for more events)

humaxi commented 3 years ago

Take a look at the following event to which you can listen: https://github.com/Blackixx/BossShopPro/blob/master/src/main/java/org/black_ixx/bossshop/events/BSPlayerPurchasedEvent.java (check out the event package for more events)

Thank you