├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── correction.yml │ └── addition.yml └── PULL_REQUEST_TEMPLATE │ ├── correction.yml │ └── addition.yml ├── images ├── back.png ├── badge.png ├── bukkit.png ├── github.ico ├── home.png ├── logo.png ├── promo.png ├── spigot.ico ├── sponge.ico ├── modrinth.ico └── button_small │ └── home.png ├── BugFixes └── README.md ├── Enhancements ├── Helpful │ └── README.md ├── Additions │ └── README.md ├── README.md └── Improvements │ └── README.md ├── Utilities ├── Staff Utils │ └── README.md ├── Player Utils │ └── README.md ├── README.md ├── Server Utils │ └── README.md └── Proxy Utils │ └── README.md ├── Performance └── README.md ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/back.png -------------------------------------------------------------------------------- /images/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/badge.png -------------------------------------------------------------------------------- /images/bukkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/bukkit.png -------------------------------------------------------------------------------- /images/github.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/github.ico -------------------------------------------------------------------------------- /images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/home.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/promo.png -------------------------------------------------------------------------------- /images/spigot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/spigot.ico -------------------------------------------------------------------------------- /images/sponge.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/sponge.ico -------------------------------------------------------------------------------- /images/modrinth.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/modrinth.ico -------------------------------------------------------------------------------- /images/button_small/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUsefulLists/UsefulPlugins/HEAD/images/button_small/home.png -------------------------------------------------------------------------------- /BugFixes/README.md: -------------------------------------------------------------------------------- 1 | # BugFix related plugins 2 | 3 | Plugins that fix bugs. 4 | 5 | | Name | Description | Supported Versions | Supported Platforms | 6 | | ---- | ----------- | ------------------ | ------------------- | 7 | -------------------------------------------------------------------------------- /Enhancements/Helpful/README.md: -------------------------------------------------------------------------------- 1 | # Helpful 2 | 3 | Plugins that help the player or staff. 4 | 5 | | Name | Description | Supported Versions | Supported Platforms | 6 | | ---- | ----------- | ------------------ | ------------------- | 7 | -------------------------------------------------------------------------------- /Utilities/Staff Utils/README.md: -------------------------------------------------------------------------------- 1 | # Staff Utilities 2 | 3 | Plugins that provide various staff related utilities. 4 | 5 | | Name | Description | Supported Versions | Supported Platforms | Notes | 6 | | ---- | ----------- | ------------------ | ------------------- | ----- | 7 | -------------------------------------------------------------------------------- /Utilities/Player Utils/README.md: -------------------------------------------------------------------------------- 1 | # Player Utilities 2 | 3 | Plugins that provide various player related utilities. 4 | 5 | | Name | Description | Supported Versions | Supported Platforms | Notes | 6 | | ---- | ----------- | ------------------ | ------------------- | ----- | 7 | -------------------------------------------------------------------------------- /Enhancements/Additions/README.md: -------------------------------------------------------------------------------- 1 | # Additions 2 | 3 | Plugins that add new features. 4 | 5 | | Name | Description | Supported Versions | Supported Platforms | 6 | | ---- | ----------- | ------------------ | ------------------- | 7 | | [Multiverse](https://www.spigotmc.org/resources/390/) | Adds a multi world management system | 1.8.8 - 1.19.x | Bukkit and forks | 8 | -------------------------------------------------------------------------------- /Enhancements/README.md: -------------------------------------------------------------------------------- 1 | # Enhancement related plugins 2 | 3 | Plugins that enhance the players or staff experience and or functionality. 4 | 5 | ## [Additions](Additions/README.md) 6 | 7 | Plugins that add new features. 8 | 9 | ## [Helpful](Helpful/README.md) 10 | 11 | Plugins that help the player or staff. 12 | 13 | ## [Improvements](Improvements/README.md) 14 | 15 | Plugins that improve already existing features. 16 | -------------------------------------------------------------------------------- /Utilities/README.md: -------------------------------------------------------------------------------- 1 | # Utility Plugins 2 | 3 | Plugins that provide various utilities. 4 | 5 | ## [Staff Utils](Staff%20Utils/README.md) 6 | 7 | Plugins that provide various staff related utilities. 8 | 9 | ## [Server Utils](Server%20Utils/README.md) 10 | 11 | Plugins that provide various server related utilities. 12 | 13 | ## [Proxy Utils](Proxy%20Utils/README.md) 14 | 15 | Plugins that provide various proxy related utilities. 16 | 17 | ## [Player Utils](Player%20Utils/README.md) 18 | 19 | Plugins that provide various player related utilities. 20 | -------------------------------------------------------------------------------- /Performance/README.md: -------------------------------------------------------------------------------- 1 | # Performance related plugins 2 | 3 | Plugins that help with performance. 4 | 5 | | Name | Description | Supported Versions | Supported Platforms | 6 | | ---- | ----------- | ------------------ | ------------------- | 7 | | [StackMob](https://www.spigotmc.org/resources/stackmob-enhance-your-servers-performance-without-the-sacrifice.29999/) | Stacks up mobs to reduce entity lag without sacrifice | 1.16 - 1.18 | Spigot | 8 | | [Fast Chunk Pregenerator](https://www.spigotmc.org/resources/fast-chunk-pregenerator.74429/) | Pregenerate chunks | 1.16 - 1.19 | Spigot 9 | 10 | -------------------------------------------------------------------------------- /Utilities/Server Utils/README.md: -------------------------------------------------------------------------------- 1 | # Server Utilities 2 | 3 | Plugins that provide various server related utilities. 4 | 5 | | Name | Description | Supported Versions | Notes | 6 | | :--: | :-------------------: | :---: | :---: | 7 | | [LuckPerms](https://luckperms.net) | Adds an advanced permissions system. | 1.8.8 - 1.19.x | Also works on bungeecord and forks to provide a global permission system | 8 | | [ExtraContexts](https://github.com/LuckPerms/ExtraContexts) | Adds extra contexts for LuckPerms | 1.8.8 - 1.19.x | | 9 | | [ServerUtils](https://www.spigotmc.org/resources/79599/) | Provides various server utilities. | 1.8.8 - 1.19.x | | 10 | -------------------------------------------------------------------------------- /Enhancements/Improvements/README.md: -------------------------------------------------------------------------------- 1 | # Improvements 2 | 3 | Plugins that improve already existing features. 4 | 5 | | Name | Description | Supported Versions | Supported Platforms | 6 | | ---- | ----------- | ------------------ | ------------------- | 7 | | [AdvancedNMOTD](https://www.spigotmc.org/resources/58677/) | Allows for more motd customization. | 1.8.8 - 1.19.x | Bungeecord and forks, Bukkit and forks | 8 | | [BanManagement(BanManager)](https://banmanagement.com/) | Allows for cross network punishments, predefined messages and times, and more | 1.8.8 - 1.19.x | Bungeecord and forks, Spigot and forks | 9 | | [AdvancedBan](https://www.spigotmc.org/resources/8695/) | Allows for cross network punishments and more custom punishment messages | 1.8.8 - 1.19.x | Bungeecord and forks, Spigot and forks | 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 The Useful Lists 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/correction.yml: -------------------------------------------------------------------------------- 1 | name: Correction Pull Request 2 | description: Create a pull request to correct something on the repo. 3 | title: "[Correction]" 4 | labels: ["Correction"] 5 | body: 6 | - type: checkboxes 7 | attributes: 8 | label: Checklist 9 | description: Pull request will be closed if incomplete. These are required before submitting and by submitting you agree that you have actually done them. 10 | options: 11 | - label: I've checked that my correction hasn't already been made to the repo. 12 | required: true 13 | - label: I've made sure that my correction is in the same format as the rest of the repo. 14 | description: "If it isn't, please make sure that you have corrected it. If your unsure, feel free to state so and one of the repo maintainers will help you." 15 | required: true 16 | - label: I've checked for related issues. 17 | description: "If there is a related issue, please link it down below as appropriate." 18 | required: true 19 | - type: input 20 | attributes: 21 | label: Dose this PR fix or close any open issues? 22 | description: "If so, please link them here with Fixes #(issue number) or Closes #(issue number) as relevant. If not, leave blank." 23 | validations: 24 | required: false 25 | - type: textarea 26 | attributes: 27 | label: What did you change? 28 | description: "Please include any relevant links, pictures, and/or code snippets to support your changes." 29 | validations: 30 | required: true 31 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/addition.yml: -------------------------------------------------------------------------------- 1 | name: Addition Pull Request 2 | description: Create a pull request to add an item to the list.relevant 3 | title: "[Addition]" 4 | labels: ["Addition"] 5 | body: 6 | - type: checkboxes 7 | attributes: 8 | label: Checklist 9 | description: Pull request will be closed if incomplete. These are required before submitting and by submitting you agree that you have actually done them. 10 | options: 11 | - label: I've checked that my addition hasn't already been added to one of the lists. 12 | description: "If it has, make sure all the information is up to date with what your addition is." 13 | required: true 14 | - label: I've made sure that my addition is in the same format as the rest of the repo. 15 | required: true 16 | - label: I've checked the latest pull requests to make sure that this plugin hasn't already been suggested. 17 | required: true 18 | - label: I've checked for related issues. 19 | description: "If there is a related issue, please link it down below as appropriate." 20 | required: true 21 | - type: input 22 | attributes: 23 | label: Dose this PR fix or close any open issues? 24 | description: "If so, please link them here with Fixes #(issue number) or Closes #(issue number) as relevant. If not, leave blank." 25 | validations: 26 | required: false 27 | - type: textarea 28 | attributes: 29 | label: What did you add? 30 | description: "Please make sure that you have added the plugin's name, description, and link to the plugin's page and GitHub page if applicable." 31 | validations: 32 | required: true 33 | -------------------------------------------------------------------------------- /Utilities/Proxy Utils/README.md: -------------------------------------------------------------------------------- 1 | # Proxy Utilities 2 | 3 | Plugins that provide various proxy related utilities. 4 | 5 | | Name | Description | Supported Versions | Notes | 6 | | :--: | :-------------------: | :---: | :---: | 7 | | [LuckPerms](https://luckperms.net) | Adds an advanced permissions system. | 1.8.8 - 1.19.x | Also works on bukkit and forks to provide a global permission system | 8 | | [AJQueuePlus (PAID 2.99 USD)](https://www.spigotmc.org/resources/79123/) [AJQueue (FREE)](https://www.spigotmc.org/resources/78266/) | Adds a queue system across a network | 1.8.8 - 1.19.x | Requires plugin to also be installed on backend servers | 9 | | [BungeeAnnouncer](https://www.spigotmc.org/resources/10002/) | Adds an announcer system for Bungeecord | 1.8.8 - 1.19.x | | 10 | | [LiteAnnouncer](https://www.spigotmc.org/resources/23918/) | Adds an announcer system for Bungeecord | 1.8.8 - 1.19.x | | 11 | | [WCNP](https://www.spigotmc.org/resources/24717/) | Adds a command blocker for Bungeecord | 1.8.8 - 1.19.x | | 12 | | [MyCommand (for Bungeecord)](https://www.spigotmc.org/resources/72445/) | Allows for the making of custom commands | 1.8.8 - 1.19.x | | 13 | | [BungeeCommandWatcher](https://www.spigotmc.org/resources/51735/) | Allows for staff to watch every command a player dose. | 1.8.8 - 1.19.x | | 14 | | [ServerUtils](https://www.spigotmc.org/resources/79599/) | Provides various server utilities. | 1.8.8 - 1.19.x | | 15 | | [BungeeList](https://www.spigotmc.org/resources/78034/) | Allows for customization of the /glist command. | 1.8.8 - 1.19.x | | 16 | | [BungeeTabListPlus](https://www.spigotmc.org/resources/313/) | Allows for more customization of the tab list and cross network tab lists | 1.8.8 - 1.19.x | Has backend plugin to allow for server placeholders | 17 | | [NuVotifier](https://www.spigotmc.org/resources/13449/) | Allows for listening and proxy-ing votes | 1.8.8 - 1.19.x | | 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UsefulPlugins 2 | 3 | A list of useful plugins for most commonly-played versions. 4 | 5 | Any suggestions/complaints? 6 | 7 | Join our [discord](https://discord.gg/8nzHYhVUQS) or submit an issue (or even a pull request fixing it!) 8 | 9 | ## Mods Under Consideration 10 | 11 | Everything that is under consideration to be added is found in under issues or pull requests. 12 | Keep in mind that nothing in the github issues is screened for harmful code (or malware). Download at your own caution. 13 | Items are only screen for harmful code when they are added to the list. Exercise general caution when downloading anything. 14 | 15 | ## Catagories 16 | 17 | | Name | Description | 18 | | ---- | ----------- | 19 | | [Enhancements](Enhancements/README.md) | Plugins that enhance already existing features. | 20 | | [Performance](Performance/README.md) | Plugins that help with performance. | 21 | | [Bug Fixes](BugFixes/README.md) | Plugins that fix bugs. | 22 | | [Utilities](Utilities/README.md) | Plugins that provide utilities. | 23 | 24 | ### Enhancements Sub-Catagories 25 | 26 | | Name | Description | 27 | | ---- | ----------- | 28 | | [Additions](Enhancements/Additions/README.md) | Plugins that add new features. | 29 | | [Helpful](Enhancements/Helpful/README.md) | Plugins that help the player or staff. | 30 | | [Improvements](Enhancements/Improvements/README.md) | Plugins that improve already existing features. | 31 | 32 | ### Utilities Sub-Catagories 33 | 34 | | Name | Description | 35 | | ---- | ----------- | 36 | | [Staff Utils](Utilities/Staff%20Utils/README.md) | Plugins that provide various staff related utilities. | 37 | | [Server Utils](Utilities/Server%20Utils/README.md) | Plugins that provide various server related utilities. | 38 | | [Proxy Utils](Utilities/Proxy%20Utils/README.md) | Plugins that provide various proxy related utilities. | 39 | | [Player Utils](Utilities/Player%20Utils/README.md) | Plugins that provide various player related utilities. | 40 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/correction.yml: -------------------------------------------------------------------------------- 1 | name: Correction 2 | description: Suggest a correction to the list! 3 | title: "[Correction]" 4 | labels: ["Correction"] 5 | body: 6 | - type: checkboxes 7 | attributes: 8 | label: Checklist 9 | description: Issue will be closed if incomplete. These are required before submitting and by submitting you agree that you have actually done them. 10 | options: 11 | - label: I've checked that this correction is valid and accurate. 12 | required: true 13 | - label: I've checked that this correction has not already been suggested. 14 | required: true 15 | - type: input 16 | attributes: 17 | label: What plugin is this correction for? 18 | validations: 19 | required: true 20 | - type: dropdown 21 | attributes: 22 | label: What section(s) of the list is this correction for? 23 | description: Select all that apply. Where the plugin is located in the lists 24 | multiple: true 25 | options: 26 | - Performance 27 | - Bugfixes 28 | - Enhancements 29 | - Software 30 | - Other 31 | validations: 32 | required: true 33 | - type: dropdown 34 | attributes: 35 | label: What version(s) dose this correction apply to? 36 | multiple: true 37 | options: 38 | - 1.8.X or earlier 39 | - 1.12.X 40 | - 1.14.X 41 | - 1.16.X 42 | - 1.17.X 43 | - 1.18.X 44 | - 1.19.X 45 | - All versions 46 | - Not applicable 47 | validations: 48 | required: true 49 | - type: dropdown 50 | attributes: 51 | label: What platform(s) dose this correction apply to? 52 | multiple: true 53 | options: 54 | - Spigot 55 | - Paper 56 | - Purpur 57 | - Bungeecord 58 | - Velocity 59 | - Other 60 | validations: 61 | required: true 62 | - type: textarea 63 | attributes: 64 | label: What needs correcting? 65 | description: Please provide a detailed description of the correction. If you are correcting a link, please provide the correct link. 66 | validations: 67 | required: true 68 | - type: textarea 69 | attributes: 70 | label: Input relevant link(s) which can be used to verify the correction. 71 | description: Please provide a link to the source of the correction. Pictures are also accepted if they are relevant. 72 | validations: 73 | required: true 74 | - type: textarea 75 | attributes: 76 | label: (OPTIONAL) Any extra information about the correction. 77 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/addition.yml: -------------------------------------------------------------------------------- 1 | name: Addition 2 | description: Suggest the addition of a plugin to the list! 3 | title: "[Addition]" 4 | labels: ["Addition"] 5 | body: 6 | - type: checkboxes 7 | attributes: 8 | label: Checklist 9 | description: Issue will be closed if incomplete. These are required before submitting and by submitting you agree that you have actually done them. 10 | options: 11 | - label: I've checked that my plugin suggestion hasn't already been added to one of the lists. 12 | required: true 13 | - label: I've checked the latest issues to make sure that this plugin hasn't already been suggested. 14 | required: true 15 | - type: input 16 | attributes: 17 | label: What is your plugin's name? 18 | validations: 19 | required: true 20 | - type: dropdown 21 | attributes: 22 | label: What is your plugin's main version? 23 | description: The main version that the plugin is currently targeting. Usually the latest version of Minecraft. 24 | options: 25 | - 1.8.X or earlier 26 | - 1.12.X 27 | - 1.15.X 28 | - 1.16.X 29 | - 1.17.X 30 | - 1.18.X 31 | - 1.19.X 32 | - Other 33 | validations: 34 | required: true 35 | - type: dropdown 36 | attributes: 37 | label: What is your plugins's other versions? 38 | description: Other versions that the plugin works with. Leave blank if none. 39 | multiple: true 40 | options: 41 | - 1.8.X or earlier 42 | - 1.12.X 43 | - 1.15.X 44 | - 1.16.X 45 | - 1.17.X 46 | - 1.18.X 47 | - 1.19.X 48 | - Other 49 | validations: 50 | required: false 51 | - type: dropdown 52 | attributes: 53 | label: What platform(s) dose this plugin run on? 54 | multiple: true 55 | options: 56 | - Spigot 57 | - Paper 58 | - Purpur 59 | - Bungeecord 60 | - Velocity 61 | - Other 62 | validations: 63 | required: true 64 | - type: dropdown 65 | attributes: 66 | label: What is your plugin's type? 67 | description: The type of plugin that it is and where it should go on the list(s). Main/Primary type only. 68 | options: 69 | - Performance 70 | - Bugfix 71 | - Enhancement 72 | - Enhancement (Helpful) 73 | - Enhancement (Improvement) 74 | - Other 75 | validations: 76 | required: true 77 | - type: textarea 78 | attributes: 79 | label: Dose the plugin need anything on the client side? 80 | description: Leave blank if no. 81 | validations: 82 | required: false 83 | - type: input 84 | attributes: 85 | label: Input a link to your suggested plugin. 86 | description: If the plugin is hosted on a site listed on [StopModReposts](https://stopmodreposts.org/sites) we will not add it to the list. Sites like Modrinth, SpigotMC, and GitHub are fine. 87 | validations: 88 | required: true 89 | - type: textarea 90 | attributes: 91 | label: What is your reasoning for including this plugin? 92 | description: Please provide a detailed explanation of why you think this plugin should be added to the list. Such as what is dose, how it works, and why it is useful. 93 | validations: 94 | required: true 95 | - type: textarea 96 | attributes: 97 | label: (OPTIONAL) Give some extra information about the plugin. 98 | description: This is optional, but if you have any extra information about the plugin, such as the plugin's license, if it is open source, or anything else you feel we may need to know, you can put it here. 99 | --------------------------------------------------------------------------------