π PocketMine-MP/
β
βββ π plugins/
β βββ π CpsHandler.php ββ
Place directly here
β βββ π EnableVibrantVisualsPlugin.phpββ
Same here
β βββ π TransferDoor.php ββ
Same here
β
βββ π worlds/
βββ π PocketMine-MP.phar
βββ ...
- Copy
*.phpfiles directly under theplugins/folder. - When you start PocketMine, they will be automatically loaded.
Unlike traditional PMMP plugins:
- No
plugin.ymlor autoload settings are required. - Each PHP file works standalone, as long as it extends
PluginBase. - A PHPDoc header like the following may be necessary:
/**
* @name EnableVibrantVisualsPlugin
* @api 5.30.0
* @description Let's enable Vibrant Visuals!
* @version 1.0.0
* @main EnableVibrantVisualsPlugin
*/