Hey there, it's me again, My question is, if there is an existing Protection Plugin? I try IProtector, but it's still in red when i start my Server, and WorldProtect isn't work anymore. If you have a cool Plugin (PocketMine Forums & GitHub) please send it to me. Special thanks Adversarius
PHP: public function onBreakk(BlockBreakEvent $b){// On Breakif(!$b->getPlayer()->isOp){ // OP Can Breakif($this->getServer()->getLevelByName("Name")){// Code Break Block IN World Name$b->setCancelled(); // Can't break IN This World}}}public function onPlaccce(BlockPlaceEvent $b){// On Placeif(!$b->getPlayer()->isOp){ // OP Can Placeif($this->getServer()->getLevelByName("Name")){// Code Place Block IN World Name$b->setCancelled(); // Can't Place IN This World}}} use This Code For Break And Place its good