One thing I hate with PocketMine plugins is that there is no universal way to make permissions. Current permissions plugins create the permissions based off of commands, but what I really dream of is permissions plugins accept universal permission nodes like in Bukkit. This could help many different types of plugins be of more use to use permissions rather than commands. I hope one day this becomes a norm in PocketMine plugins. Until then, I will work with whatever I can.
You can make a permission in your plugin with: PHP: if($this->api->dhandle($permission, $data !== false)){ // Allowed}else{ // Rejected} Then another plugin can allow/reject this with: PHP: $this->api->addHandler($permission, array($this, "hackchecker"));public function hackchecker($data){ if($data === "hacker"){ return false; }else{ return true; }} $permission is a string with the permission name, for example "hacker.check" but this can be a random string.