how to turn off block breaking protection it is a lot buggy and overload a server -,- call it block BreakEvent?
I believe this is just a bug in the current version of PocketMine and is intended to be fixed in a future release.
no it is because pocketmine has bad cheat protection -,- i think it would be better pocketmine without this protection, than with bad protection
Add this script plugin (in use in iMCPE): PHP: <?php/*** @name InstaBreak* @author PEMapModder* @version 1.0.0* @api 1.7.0* @main PEMapModder\InstaBreak\InstaBreakPlugin*/namespace PEMapModder\InstaBreak;use pocketmine\event as ev;class InstaBreakPlugin extends \pocketmine\plugin\PluginBase implements ev\Listener{ public function onEnable(){ $this->getServer()->getPluginManager()->registerEvents($this, $this); } public function onBreak(ev\block\BlockBreakEvent $e){ $e->setInstaBreak(true); }}
and what about move protection? why pocketmine control OPs in creative too? I tried Aliuly´s plugin which disable move protection but it is a lot laggy. But pocketmine soft is less laggy so how can i do it like pocketmine soft but in normal pocketmine?