📁 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
*/