If the parameter in this list contains "Plugins...", you can write down unlimited plugins and split them with spaces (like "/pm list Essentials WorldEdit"). If your plugin name contains a space, try it with a "-" or nothing (like "/pm list Marriage-Reloaded" or "/pm PermBukkit")!
If the parameter in this list contains "all", you can write "all" or no paramerer for ALL plugins (like "/pm list all" or "/pm list").
The Permission "pluginmanager.*" gives access to use all PluginManager functions (Byte default for OPs).
Command
Description
Permission
/pm help
Shows a help-page.
pluginmanager.help
/pm list <Plugins... \ all>
Lists some or all plugins with additional information.
pluginmanager.list
/pm listfile <Plugins... \ all>
Lists some or all plugins with additional information into a file.
pluginmanager.listfile
/pm info <Plugins... \ all>
Show detailed info about some or all plugins.
pluginmanager.info
/pm infofile <Plugins... \ all>
Prints detailed info about some or all plugins into a file.
pluginmanager.infofile
/pm load <Plugins... \ all>
Loads some or all plugins.
pluginmanager.load
/pm unload <Plugins... \ all>
Unloads some or all plugins.
pluginmanager.unload
/pm reload <Plugins... \ all>
Reloads some or all plugins.
pluginmanager.reload
/pm search <Search-String>
Searches for plugins on BukkitDev.
pluginmanager.search
/pm checkversion <Plugins... \ all>
Checks some or all plugins for a new version.
pluginmanager.checkversion
/pm update <Plugins... \ all>
Updates some or all plugins if a new version is avaiable.
pluginmanager.update
/pm install <Plugins...>
Installs some plugins.
pluginmanager.install
Config
When you start the plugin the first time, it will automatically creates a config.yml in plugins/PluginManager.
Config (the comments aren't in your config, they're for explaining):
# Should PluginManager prints update and installation infos on the console# and log them?# Useful for controlling the version activity.logVersionInfo:truecheckVersions:# Should PluginManager checks all plugin versions when the server starts?# (also on reload)# May requires much RAM.onStart:false# Should PluginManager checks all plugin versions when a permitted player#(pluginmanager.checkversion and pluginmanager.update) joins?# May requires much RAM.onJoin:falseupdate:# Should PluginManager updates all plugins when the server starts?# (also on reload)# May requires much RAM.autoUpdate:falseerror:# Debug: Should PluginManager print internal and not-so-bad errors on# the console?# Not recommended!printSilenceErrors:falsefile:# PluginManager prints the plugin-list with "/pm listfile" into this# file.list:plugins.txt# PluginManager prints the plugin-info with "/pm infofile" into this# file.info:plugin-info.txtpluginlist:# Should PluginManager build a plugin-cache on startup? (Recommended for# people who use the search-function)# Will take much time!buildOnStart:true# Until which plugin-page (the pages on http://dev.bukkit.org/server-mods)# should PluginManager fetch plugins?# There are about 300 pages on BukkitDev.pageCount:100# Which plugins should PluginManager ignore? (You can also let it empty)# PluginManager will also don't unzip files with one of these names.blacklist:-Plugin1-Plugin2