====== How to install plugins ======
Installing a plugin for MCServer is pretty easy. First you obtain a plugin, plugins can be found on the official MCServer forum here [[http://forum.mc-server.org/forumdisplay.php?fid=2&page=1]] (or obtain plugins in some other way)

Plugins can be as small as a single .lua file, while other plugins might require more files such as .ini files for their settings.

Once you get a plugin, like the [[http://forum.mc-server.org/showthread.php?tid=4|Core]] plugin, you place the .lua files in the ''Plugins/'' folder for old-style plugin.
If your plugin is new-style, you should place all .lua files in the ''Plugins/PluginName'' folder.

Now you have successfully installed an MCServer plugin, however you still need to activate it. You activate and tell the server to use the plugin by adding a line in the ''settings.ini'' file under ''[Plugins]'' like so
<code ini>
[Plugins]
Plugin=FirstPlugin
Plugin=SecondPlugin
NewPlugin=Core
NewPlugin=Rainy
</code>
And you're all done :)

You can also use WebAdmin for plugin management operations if you're using ''Core'' plugin.

====== Notes ======
For some plugins, the order in which MCServer loads and uses all plugins might be important. Behaviour of plugins might change if you change the order. You should read up on the documentation of such specific plugins to make sure you load them in the right order otherwise it might not work.