xxplugins/bstats-pmmp

Maintainers

Package info

github.com/xxPLUGINS/bStats-PMMP

pkg:composer/xxplugins/bstats-pmmp

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-01-01 17:42 UTC

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();
    }
}