Earlier Versions
| Name | Size | Uploaded | Game Version | Downloads | |
| PluginManager 2.7 release | 142.85 KB | Oct 5, 2012 | CB 1.3.2-R1.0 | 16,321 | Download |
| PluginManager 2.6 release | 142.15 KB | Oct 1, 2012 | CB 1.3.2-R1.0 | 1,037 | Download |
| PluginManager 2.5 release | 143.72 KB | Oct 1, 2012 | CB 1.3.2-R1.0 | 838 | Download |
| PluginManager 2.4 release | 143.21 KB | Oct 1, 2012 | CB 1.3.2-R1.0 | 652 | Download |
| PluginManager 2.3 release | 143.24 KB | Sep 27, 2012 | CB 1.3.1-R2.0 | 912 | Download |
| PluginManager 2.2 release | 143.24 KB | Sep 23, 2012 | CB 1.3.1-R2.0 | 317 | Download |
| PluginManager 2.1 release | 143.42 KB | Sep 23, 2012 | CB 1.3.1-R2.0 | 222 | Download |
| PluginManager 2.0 release | 139.15 KB | Sep 22, 2012 | CB 1.3.1-R2.0 | 265 | Download |
| PluginManager 1.5 release | 126.98 KB | Sep 22, 2012 | CB 1.3.1-R2.0 | 157 | Download |
| PluginManager 1.4 release | 126.91 KB | Sep 22, 2012 | CB 1.3.1-R2.0 | 158 | Download |
| PluginManager 1.3 release | 119.21 KB | Sep 21, 2012 | CB 1.3.1-R2.0 | 300 | Download |
| PluginManager 1.2 release | 119.15 KB | Sep 21, 2012 | CB 1.3.1-R2.0 | 199 | Download |
| PluginManager 1.1 release | 113.93 KB | Sep 20, 2012 | CB 1.3.1-R2.0 | 177 | Download |
| PluginManager 1.0 release | 110.31 KB | Sep 20, 2012 | CB 1.3.1-R2.0 | 163 | Download |
Description
QuarterCode
QuarterBukkit |
(PluginManager) |
MinecartRevolution
This project is took over. Nevertheless you can download the latest source here (until we have a git-repo).
English |
German
Basic Description
What is PluginManager? It's a simple plugin for managing your Bukkit-Plugins.
PluginManager features:
- Install plugins from BukkitDev ingame
- Return a list with installed plugins and additional information
- Show detailed infos about plugins
- Load/Unload/Reload plugins
- Search for plugins on BukkitDev
- Check if a new version of a plugin is avaiable
- Update to the latest version of a plugin
For this, the plugin accessing the official BukkitDev-Website (http://dev.bukkit.org), fetching the plugin-pages and scanning them.
For Plugin Developers
PluginManager has already one of the best Url-Genrators (for BukkitDev). But for some plugins, this isn't enough.
You want to make sure that your plugin is supported by PluginManager?
- First, you need your BukkitDev-Url. So go on your BukkitDev-Plugin-Site and click on the tab "Overview" (If you aren't already there).
- Copy the Url of the site (For this plugin, it's http://dev.bukkit.org/server-mods/pluginmanager).
- Insert this key-value-pair (like name: PluginManager) in your plugin.yml:
dev-url: <URL>
Simply replace <URL> with your BukkitDev-Url, so its looking like this (for this plugin):
dev-url: http://dev.bukkit.org/server-mods/pluginmanager
Commands
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: true checkVersions: # 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: false update: # Should PluginManager updates all plugins when the server starts? # (also on reload) # May requires much RAM. autoUpdate: false error: # Debug: Should PluginManager print internal and not-so-bad errors on # the console? # Not recommended! printSilenceErrors: false file: # 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.txt pluginlist: # 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
Stats

Tutorials
Get 0.05 TON 💎
Download
Add a comment