Is there an way to do this (It would be the best if i could get the description too!) (If there is already an plugin, let me know)
An array of Permission objects. https://github.com/PocketMine/Pocke...src/pocketmine/permission/Permission.php#L112
I've finished it: You can choose to spam the console: PHP: switch($command->getName()) { case "permList": $permArray = $this->getServer()->getPluginManager()->getPermissions(); $permName_DescArray = NULL; $INDEX = 0; foreach($permArray as $perm) { $permName_DescArray[$INDEX] = "Permission: ".$perm->getName()." Description: ".$perm->getDescription(); $INDEX++; } $this->getServer()->getLogger()->info(implode(" \n ",$permName_DescArray)); return true; } or make an almost unreadable text: PHP: switch($command->getName()) { case "permList": $permArray = $this->getServer()->getPluginManager()->getPermissions(); $permName_DescArray = NULL; $INDEX = 0; foreach($permArray as $perm) { $permName_DescArray[$INDEX] = "Permission: ".$perm->getName()." Description: ".$perm->getDescription(); $INDEX++; } $this->getServer()->getLogger()->info(implode(" // ",$permName_DescArray)); return true; } Please tell me if this contains an bad practise! And should i add this thread to resources? Because with this you can easily list all your permissions (for perm plugins)