CustomSetting is a PocketMine-MP plugin that provides a persistent custom form for server settings, allowing you to create a customizable information page for your Minecraft Bedrock server.
form.json
Player Opens Settings:
Plugin Detects and Sends Forms:
Handling Early Closure:
plugins/
directoryTo edit the settings page, check the rest of my documentation. You can use color codes and set custom icons (such as your server logo). If you encounter any issues, feel free to post them on the GitHub repository.
(!) If you want to create your own plugin or use another plugin that displays settings pages to clients (players), they may interfere with CustomSetting.
Code | Color | Code | Color |
---|---|---|---|
§0 |
Black | §1 |
Dark Blue |
§2 |
Dark Green | §3 |
Dark Aqua |
§4 |
Dark Red | §5 |
Dark Purple |
§6 |
Gold | §7 |
Gray |
§8 |
Dark Gray | §9 |
Blue |
§a |
Green | §b |
Aqua |
§c |
Red | §d |
Light Purple |
§e |
Yellow | §f |
White |
Code | Effect |
---|---|
§l |
Bold |
§o |
Italic |
§k |
Obfuscated (random characters) |
§r |
Reset formatting |
You can combine multiple formatting codes for creative text styling:
§l§9Bold Blue Text
§c§oRed Italic Text
§6Gold Text
The plugin supports three ways to set the form icon:
"icon": {
"type": "path",
"data": "textures/items/cookie"
}
Some popular texture paths:
textures/items/cookie
textures/items/diamond
textures/items/book_written
textures/items/paper
textures/items/compass
"icon": {
"type": "url",
"data": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUg..."
}
To create a base64 icon:
"icon": {
"type": "url",
"data": "https://example.com/icon.png"
}
{
"type": "custom_form",
"title": "§eServer Info",
"icon": {
"type": "path",
"data": "textures/items/diamond"
},
"content": [
{
"type": "label",
"text": "§l§6Welcome to Our Server!§r"
},
{
"type": "label",
"text": "§bRules:§r\n§a1.§f Be respectful\n§a2.§f No griefing"
}
]
}
The plugin configuration is stored at:
plugin_data/CustomSetting/form.json
form.json
is valid JSONform.json
is missing or invalidContributions are welcome! Open an issue or submit a pull request.
Copyright 2025 @nikipuh
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
MIT License: https://opensource.org/license/mit