xxplugins / bstats-pmmp
1.0.0
2026-01-01 17:42 UTC
Requires
- php: ^8.1
- pocketmine/pocketmine-mp: ^5.0.0
This package is not auto-updated.
Last update: 2026-04-10 17:32:03 UTC
README
bStats-PMMP is an implementation of bStats (https://bStats.org) for PocketMine.
How to use:
namespace your\name\space; use pocketmine\plugin\PluginBase; use xxFLORII\bStats\Metrics; class YourPlugin extends PluginBase { protected function onEnable() : void{ $pluginId = 1234; //ToDo: replace with your plugin ID from https://bstats.org $metrics = new Metrics($this, $pluginId); $metrics->scheduleMetricsDataSend(); } }