-
-
Notifications
You must be signed in to change notification settings - Fork 254
plugin guide #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
plugin guide #37
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| # Installing Plugins | ||
|
|
||
| This guide explains how to install most basic plugins on your server. | ||
| You must already have a running CraftBukkit server set up and have | ||
| knowledge of how to use the Minecraft server console. If you do not have | ||
| a server set up please go to [Setting up a server](README.md) and follow the | ||
| instructions there. This guide does not cover setting up an SQL database | ||
| or editing properties files, please consult the forums to see if you | ||
| need this. Always read the plugin instructions if there are any. | ||
|
|
||
| ## Installing Most Plugins | ||
|
|
||
| 1. Download a plugin of your choice. | ||
| 2. Place the .jar and any other files in your plugins directory. | ||
| 3. Run the server and wait for it to fully load. | ||
| 4. Type **stop** in your Minecraft server console to bring the server | ||
| to a clean stop. | ||
| 5. Run the server. | ||
| 6. All done! Your plugin should be installed and ready to be used. | ||
|
|
||
| ### Notes | ||
|
|
||
| :::info | ||
| You can find plugins at [BukkitDev](https://dev.bukkit.org/bukkit-plugins). | ||
| ::: | ||
|
|
||
| :::info | ||
| Make sure to download the right version for the plugin | ||
| ::: | ||
|
|
||
| :::info | ||
| The file you downloaded may be an archive (.zip, .rar, .7z) and will need to be extracted using an archive manager such as [7zip](http://www.7-zip.org). | ||
| ::: | ||
|
|
||
| :::info | ||
| Your plugins directory will be a folder called "plugins" in the folder where you created your CraftBukkit server.. | ||
| ::: | ||
|
|
||
| :::info | ||
| After you have started your server it may have generated a configuration file, check with the plugin's forum or wiki page for any properties you can configure. | ||
| ::: | ||
|
|
||
| :::info | ||
| Make sure to check your log and console for errors created from your newly installed plugin, this may indicate it requires additional setting up (MySQL, permissions) check with the forum post or the BukkitDev page to see if this is the case. | ||
| ::: | ||
|
|
||
| ## Updating Plugins | ||
|
|
||
| 1. Create a directory called "update" in your plugins directory. | ||
| 2. Download the plugin that you wish to update. | ||
| 3. Place ONLY the .JAR file into the update directory. | ||
| 4. Restart your CraftBukkit server. | ||
| 5. All done! Your plugin should have been updated. | ||
|
|
||
| ### Notes | ||
|
|
||
| :::info | ||
| Ensure the name of the .jar in the update directory is the same as the name of the .jar in the plugins directory for the same plugin. | ||
| ::: | ||
|
|
||
| :::info | ||
| The **reload** command will also unload all the plugins, copy the files from the update directory into the plugins directory (replacing any files with the same name) then load all the plugins again. | ||
| ::: | ||
|
e-im marked this conversation as resolved.
|
||
|
|
||
| :::info | ||
| This method is safer than replacing the file yourself while the server is running and will not disconnect all your players if it was to be done manually. | ||
| ::: | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.