diff --git a/.github/workflows/embeds.jar b/.github/workflows/embeds.jar new file mode 100644 index 000000000..c6ff24d9b Binary files /dev/null and b/.github/workflows/embeds.jar differ diff --git a/.github/workflows/embeds.yml b/.github/workflows/embeds.yml new file mode 100644 index 000000000..adb684eed --- /dev/null +++ b/.github/workflows/embeds.yml @@ -0,0 +1,46 @@ +name: 'YAML Checker' +on: + pull_request: + types: [ 'opened', 'reopened', 'synchronize' ] + pull_request_target: + types: [ 'opened', 'reopened', 'synchronize' ] + draft: false + +jobs: + check_code: + runs-on: 'ubuntu-latest' + steps: + - name: 'Clone Repository' + uses: 'actions/checkout@v2' + + - name: 'Install Java' + uses: 'actions/setup-java@v2.3.1' + with: + distribution: 'adopt' + java-version: '17' + check-latest: false + + - name: 'Verify embeds.yml' + id: 'verify' + run: | + EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) + echo "results<<$EOF" >> $GITHUB_ENV + java -jar .github/workflows/embeds.jar embeds.yml >> $GITHUB_ENV + echo "$EOF" >> $GITHUB_ENV + + - name: 'Find Comment' + uses: 'peter-evans/find-comment@v2' + id: 'fc' + with: + issue-number: ${{ github.event.pull_request.number }} + comment-author: 'github-actions[bot]' + body-includes: 'YAML Checker' + + - name: 'Create Review' + uses: 'peter-evans/create-or-update-comment@v3' + with: + edit-mode: 'replace' + comment-id: ${{ steps.fc.outputs.comment-id }} + issue-number: ${{ github.event.pull_request.number }} + body: | + ${{ env.results }} diff --git a/.github/workflows/tomlchecker.yml b/.github/workflows/tomlchecker.yml deleted file mode 100644 index 5174c221f..000000000 --- a/.github/workflows/tomlchecker.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: TOML Checker -on: - push: - paths: - - "embeds.toml" -jobs: - check_code: - runs-on: ubuntu-latest - steps: - - name: Install java - uses: actions/setup-java@v2.3.1 - with: - distribution: 'adopt' - java-version: '11' - check-latest: false - - - name: Clone repository - uses: actions/checkout@v2 - - - name: Download application - run: wget 'https://geri.dev/bloom/check.jar' - - - name: 'Verify TOML code' - id: verify - run: | - echo ::set-output name=results::$(java -jar check.jar embeds.toml) - - - name: '✔️ Valid TOML Code Found' - run: exit 0 - if: steps.verify.outputs.results == 'OK' - - - name: '❌ Invalid TOML Code Found' - run: | - echo ::error::Unable to parse data: - echo '::error::${{steps.verify.outputs.results}}' - exit 1 - if: steps.verify.outputs.results != 'OK' diff --git a/.gitignore b/.gitignore index 272a446b2..187a96bc6 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ .env.development.local .env.test.local .env.production.local +.idea/ npm-debug.log* yarn-debug.log* diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 49de17fde..c29a5464d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -54,13 +54,79 @@ There is a [Markdown template](https://raw.githubusercontent.com/Bloom-host/Bloo You can also see [a formatted version of the template](https://docs.bloom.host/extras/template/) to see what the formatted elements will look like when imported into the documentation website. --- -## BloomBot embeds +## BloomBot Embeds + +You can also contribute to the embeds used by BloomBot in the Discord where a command is used, and it can provide troubleshooting information or quick information to users such as those who are requesting support. + +You can edit [`embeds.yml`](/embeds.yml) and this can be contributed along with documentation changes and can be contributed in the same PR. + +Here is the format of the embeds: +![img](https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/embed-help.png) + +```yml +embed_name: + # A list of aliases that can be used to call the command + # You can also do the short format: aliases: ['embed_name_alias', 'another_alias'] + aliases: + - 'embed_name_alias' + - 'another_alias' + # The text of the message + text: 'Suspendisse vitae sem imperdiet suspicit magna sed' + # The title of the embed + title: 'Vestibulum luctus fermentum nisl' + # The icon next to the title + title-icon: '%guildicon%' + # The thumbnail of the embed + thumbnail: '%guildicon%' + # The description of the embed. |+ keeps new lines, > does not + description: |+ + Lorem [ipsum dolor](https://example.tld) `consectetur adpicing elit`. **Morbi id lorem turpis fascillisis** + veneantis eget dapibus est. _Prasent sed_ est et ~~lectus secleisque~~ lacina. + + ```yaml + natoque: "Vivamus dapibus ex id" + tortor: + - porta + - gravida + ``` + # A list of fields. Each can have a title, a description and whether they are inline + fields: + - title: 'Etiam magna nulla, sollicitudin necleo at' + description: |+ + Etiam maximus augue at velit cornmcxio, eu suscipit + nisl consequat. Aliquam sollicitudin metus quis justo + aliquet, eu convallis sem porta. Praesent leo + nunc, id sodales rugna placerat sed. Mauris + dignissim pretium cma. + inline: false + - title: '' + description: '' + inline: false + - title: 'Mauris dignissim pretium porta.' + description: 'Etiam magna nulla, sollicitudn nec leo at.' + inline: true + - title: 'Etiam maximum augue' + description: 'In hac habitssa platea' + inline: true + - title: 'Nulla molestie sapien sit' + description: 'Prasend sed est et' + inline: true + # The image of the embed + image: 'https://bloom.host/favicon/favicon-og.png' + # The footer of the embed + footer: 'Phasellus effictur dictum sem egel pretium' + # A list of buttons. [ , , , ] + buttons: + - ['Label', 'https://example.tld', '1️⃣' ] + - ['Label', 'https://example.tld', '2️⃣' ] + - ['Label', 'https://example.tld', '3️⃣' ] +``` -You can also contribute to the embeds used by BloomBot in the Discord where a command is used and it can provide troubleshooting information or quick information to users such as those who are requesting support. +Users with the `@Gardener` role can use the `!et` (embed test) command with YAML code to quickly test commands. -You can edit [`embeds.toml`](/embeds.toml) and this can be contributed along with documentation changes and can be contributed in the same PR. +You can use these global placeholders anywhere: `%useravatar%`, `%guildicon%` -If you are attempting to add something to add something to these, please see the [formatting guide](https://gist.github.com/NotGeri/cb11552ab7a12e20ab495a20826c341f) on how to add embeds (there is a specific format the embed must follow.) +If you have any questions or concerns, please ask in our Discord! Please note that changes are not instant and may take up to 24 hours to apply. diff --git a/embeds.toml b/embeds.toml deleted file mode 100644 index 4555802d8..000000000 --- a/embeds.toml +++ /dev/null @@ -1,1268 +0,0 @@ -# Globally available placeholders: %guildicon%, %useravatar% - -# ┌─────────────────┐ -# │ Custom Commands │ -# └─────────────────┘ -# These are just custom defined embed commands that are sent -# whenever their name or one of their aliases is used with -# the bot's prefix. ('!'/'-' by default) -[help] -title = "BloomBot Help" -title-icon = "%guildicon%" -thumbnail = "https://cdn.discordapp.com/icons/720081782980083813/a_b14b3675972cae4aa909387ee4b7995f.gif" -footer = "BloomBot - Bloom.host" -[help.fields] -a = ["❔ Help Commands", """ -• `!help` - Here you are! -• `!waitlist` - Join the waitlist -• `!rate` - Satisfied with Bloom? -• `!docs` - List of all other documents -• `!hastebin` - For all your pasting needs! -• `!duck` - Generate a random duck! -""", "true"] - -b = ["🔗 Links", """ -• [Website](https://bloom.host/) -• [Billing Panel](https://billing.bloom.host/) -• [Duck Panel](https://mc.bloom.host/) -• [VPS Panel](https://vps.bloom.host/) -""", "true"] - -c = ["⚙ Misc Commands", """ -• `!stats` - Some stats -• `!duck` - Get a random duck! -• `!suggest ` - Create a suggestion -• `!steal ` - Add a new emoji -• `!edit ` - Modify your suggestion -""", "false"] - -d = ["🏷️ Ticket Commands", """ -• `!close [reason]` - Close your ticket -• `!rename ` - Rename a ticket -• `!transfer <@tag | userid>` - Transfer a ticket to another user -• `!add <@user | userid>` - Add a user to your ticket -• `!remove <@user | userid>` - Remove a user from your ticket -""", "true"] - -[billing] -text = "https://billing.bloom.host" -[billing.buttons] -1 = ["Billing Ticket", "https://billing.bloom.host/"] - -[unsupported] -enabled = false -title = "List of Unsupported Games" -description = "These games can be used on your Bloom server, but no support is given when using them:\n\n%eggs%" -footer = "Suggest a software to be added: !suggest " -[unsupported.custom-data] -line-format = "- %egg%\n" - -[modpacks] -aliases = ["modpacks", "modpacklist"] -enabled = false -title = "List of Modpacks" -description = "%modpacks%" -footer = "Suggest a pack to be added: !suggest " -[modpacks.buttons] -a = ["Full List", "https://bloom.host/modpacks/", "🔗"] -[modpacks.custom-data] -line-format = "- %modpack%\n" - -[voicechat] -aliases = ["vc", "simplevoicechat", "svc"] -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/voicechat.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/voicechat-2.png" -title = "Sponsored by Bloom: Simple Voice Chat" -title-icon = "%guildicon%" -description= """ -Simple Voice Chat is an easy-to-use and reliable in-game voice chat modification and plugin for Minecraft servers. -""" -[voicechat.buttons] -a = ["Website", "https://modrepo.de/minecraft/voicechat/wiki/?t=setup"] -b = ["CurseForge", "https://www.curseforge.com/minecraft/mc-mods/simple-voice-chat/"] -c = ["Bukkit", "https://dev.bukkit.org/projects/simple-voice-chat"] -d = ["Docs", "https://docs.bloom.host/multiplatform/simple-voice-chat/"] - -[demo] -aliases = ["demopanel"] -title = "<:aaaduck:755553395363938344> Bloom.host Demo Panel" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/demo.png" -description = """ -Check out our demo panel with all the Duck panel's features and looks! -""" -[demo.buttons] -1 = ["Open Demo", "https://demo.bloom.host", "<:aaaduck:755553395363938344>"] - -[update119] -aliases = ["1.19"] -colour = "#926cd1" -title = "1.19 - The Wild Update" -title-icon = "%guildicon%" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/OcDKml.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/thewildupdate.jpg" -description = """ -Minecraft 1.19 - The Wild Update has been released!. - -Due to this change, some plugins and datapacks may be **incompatible** and may **require an update**. - -To update your server to 1.19 just go to the Settings tab on our Minecraft panel, then under "Change Server Type" select the jar you prefer, then 1.19 and click on Change Build. - -**Remember to take a backup before updating your server.** - -For more information about updating your server to 1.19, be sure to check out our **comprehensive guide** on updating to 1.19 **[here](https://docs.bloom.host/1.19)**! -""" -[update119.fields] -1 = ["Available Software", """ -:white_check_mark: Vanilla - Download [here](https://www.minecraft.net/en-us/download/server)! -:white_check_mark: Spigot - Download [here](https://www.spigotmc.org/threads/spigot-bungeecord-1-19.559742/)! -:white_check_mark: Paper - Download [here](https://papermc.io/downloads#Paper-1.19)! -:white_check_mark: Purpur - Download [here](https://purpurmc.org/downloads/1.19)! -:white_check_mark: Forge - Download [here](https://files.minecraftforge.net/net/minecraftforge/forge/index_1.19.html)! -:white_check_mark: Fabric - Download [here](https://fabricmc.net/use/installer/) - -**These first 1.19 releases will be unstable and can have performance issues. Please make sure to create a backup before upgrading your server.** - -""", "false"] - -[updating] -aliases = ["update", "changeversion", "changingversions", "changingjar", "changingjars"] -title = "📜 How to update, change versions or change server jar" -description = "Check out our comprehensive guide on how to update, change versions or server jar [here](https://docs.bloom.host/updating/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/updating/1.png" - -[pingissues] -title = ":warning: Bloom Docs - How to diagnose and fix ping issues" -description = "Check out our comprehensive guide on how to diagnose and fix ping issues [here](https://docs.bloom.host/extras/ping-issues/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/G7k4om.png" - -[bungeeguard] -title = ":warning: Bloom Docs - BungeeGuard" -description = "Check out our comprehensive guide on BungeeGuard [here](https://docs.bloom.host/waterfall/#setting-up-bungeeguard)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZvaY5o.png" - -[paper] -aliases = ["papermc"] -title = "PaperMC" -description = """ -PaperMC is a fork of Spigot that aims to improve server performance, security, and gameplay consistency. It's generally the most popular and recommended fork among the MC community, meeting the needs of most MC servers out there. - -PaperMC is compatible with every plugin that works on Spigot (except outdated ones, you shouldn't be using these either way), and even improves performance on some optimized plugins meant to work better on Paper. -""" -thumbnail = "https://avatars.githubusercontent.com/u/7608950" -[paper.fields] -1 = ["Links", """ -• [PaperMC Downloads](https://papermc.io/downloads) -• [PaperMC Discord Server](https://discord.gg/papermc) -• [GitHub Repository](https://github.com/PaperMC/Paper/) -""", "false"] - -[aikar] -aliases = ["flags", "flag", "aikars", "ram"] -title = "<:ram:850401810018598982> Aikar's Flags" -description = """ -At Bloom, we utilize Aikar's flags by default, which pre-allocates all of the server's available memory for better performance. You can see you server's actual memory usage by running the `/memory` or `/tps mem` command in your console. - -🔗 Wish to know more? Check out [this post](https://docs.papermc.io/paper/aikars-flags/)! -""" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/gNzJPp.png" - -[contribute] -aliases = ["contribute-docs"] -title = "Contribute to our Documentation!" -description = """ -Most of our documentation have been written by our community. You can contribute too! Fork the documentation repository or write an article in PDF or on a Word document and send it to us through a support ticket and we will add it. - -🔗 Wish to know more? Check out [How to contribute to our documentation](https://docs.bloom.host/extras/contributing)! -""" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/documentation.png" - -[fbi] -aliases = ["fbimeme"] -text = "https://i.clumsy.host/fbi.mp4" - -[fbiinfo] -aliases = ["offlinemode", "blackspigot", "piracyisbad", "crackedserver", "cracked"] # Cracked servers are offline-mode servers without a valid online-mode proxy -title = "🚫 Piracy Is Bad" -colour = "#dd2e44" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/85dAco.png" -description = "In case you are doing any of the following, you will __not recieve any support__ from Bloom community, staff members, most plugin developers and server/proxy software staff." -enabled = false -[fbiinfo.fields] -1 = ["<:warn:849551085873135657> Cracked Servers", "Using offline-mode on servers bypasses Mojang's authentication system entirely meaning there are __countless security exploits__ people can use. This feature is meant to be used for developers and proxies. (In case you *are* using an online-mode proxy, you seriously need to check your configuration - See `!security`)", "false"] -2 = ["🏴‍☠ Pirated Software", "Using any kind of software obtained from unofficial sites such as BlackSpigot has a high chance of containing viruses, force-op and more. If you wish to use Premium software, pay for it. ", "false"] - -[winmtr] -aliases = ["ping", "network", "mtr"] -title = "Diagnosing Connection Issues" -description = "*MTR probes routers on the route path by limiting the number of hops individual packets may traverse, and listening to responses of their expiry.*" -footer = "BloomBot - Bloom.host" -footer-icon = "%guildicon%" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/G7k4om.png" -[winmtr.fields] -1 = ["<:windows:849551086158741524> Windows", """ -You can use a software such as [WinMTR](https://sourceforge.net/projects/winmtr/). -**1**. Click the link and download the application -**2**. Extract the downloaded archive and open the folder. -**3**. Start the `WinMTR.exe` file and enter your server's IP address in the 'host' field. -**4**. Click start and let it run for at least a minute. -**5**. Take a screenshot of the results so we can analyze your route. -""", "false"] -2 = ["<:apple:849551086028849152> <:linux:955230938084818964> Other Operating Systems", """ - In case you are using another operating system such as macOS or Linux, be sure to let us know we'll guide you through the process! -""", "false"] - -[grafana] -aliases = ["unifiedmetrics", "prom", "prometheus", "metrics"] -title = "<:grafana:870895629507903499> Grafana" -description = "Setup Grafana, Prometheus, and UnifiedMetrics so you can have more stats about your minecraft server, which couldn't be done without our lovely server splitter :) Guide located [here](https://docs.bloom.host/other-servers/grafana/)." -image = "https://raw.githubusercontent.com/Cubxity/UnifiedMetrics/dev/0.3.x/.github/assets/grafana.png" - -[bin] -aliases = ["hastebin", "pastebin", "logs"] -title = "Bloom Bin" -description = "Bloom has their own hastebin called Bloom Bin! Check it out [here](https://bin.Bloom.host)!" - -[vps] -title = "VPS - Virtual Private Servers" -description = """Our VPS plans come with a bare Linux command line installation. This means that you will not be able to use our personalized Minecraft control panel and you will need Linux command line experience to be able to manage your VPS. VPS plans are unmanaged and support for configuring and managing the server isn't provided. - -If you don't have any experience with Linux we recommend you go with our [Minecraft plans](https://bloom.host/minecraft). - -Are you new to VPS? Check out our [Get Started with VPS guide](https://docs.bloom.host/VPS/starting-with-vps)! -""" - -[waitlist] -aliases = ["wl"] -title = "About the Waitlist" -description = """ -To enter the Bloom.host waitlist, follow these steps - -**1.** Join the Waitlist Discord server [here](https://Bloom.host/waitlist). -**2.** Create a ticket and let us know what plan/location you want to wait for. -**3.** When it's your turn, you'll be pinged in your ticket. You have 24 hours to respond, otherwise, you lose your spot in line. -**4.** Transfer or purchase your server! - -Thanks again for your interest in our plans! -""" - -[rate] -aliases = ["support"] -title = "Rate Bloom.host!" -description = "If you're having a good experience with Bloom.host, rate us!" -[rate.fields] -1 = ["Links", """ -• [Trustpilot](https://www.trustpilot.com/review/bloom.host) -• [MC Market (Minecraft)](https://www.mc-market.org/threads/612586/) -• [Admincraft Marketplace](https://www.reddit.com/r/admincraft/comments/shvm6f/admincraft_monthly_marketplace/hv4tx5h/) -""", "false"] - -[chunky] -title = "Chunky" -title-icon = "%guildicon%" -description = """ -Chunky is a fast, easy and safe tool for pre-generating chunks on your server. - -Chunk generation in Minecraft is slow, which can sometimes cause server lag or slow chunk loading for players. Generating them upfront will help improve performance and gameplay on almost any server. - -See our official guide for Chunky [here](https://docs.bloom.host/multiplatform/chunky). -""" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/chunky.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/8ytho7.png" -[chunky.fields] -1 = ["⭐ Chunky", """ - -• [Spigot - Plugin Version](https://www.spigotmc.org/resources/chunky.81534/) -• [CurseForge - Forge Mod Version](https://www.curseforge.com/minecraft/mc-mods/chunky-pregenerator-forge) -• [CurseForge - Fabric Mod Version](https://www.curseforge.com/minecraft/mc-mods/chunky-pregenerator) -• [Official Documentation](https://github.com/pop4959/Chunky/wiki) -• [Support Server](https://discord.gg/ZwVJukcNQG) -""", "false"] - -2 = ["🌍 ChunkyBorder", """ -An add-on for Chunky which lets you create and manage custom world borders. -• [Spigot- Plugin Version](https://www.spigotmc.org/resources/chunkyborder.84278/) -• [CurseForge - Fabric Mod Version](https://www.curseforge.com/minecraft/mc-mods/chunky-border) -• [GitHub Repository](https://github.com/pop4959/ChunkyBorder) -• [Support Server](https://discord.gg/ZwVJukcNQG) -""", "false"] - -[velocity] -aliases = ["velo"] -title = "Velocity" -description = """ -Velocity is a next-generation Minecraft proxy focused on scalability and flexibility created by the initial developer of Waterfall and RedisBungee. Velocity uses less CPU and RAM, leaving more resources for your server. Velocity also features modern forwarding, leaving your back-end servers safe. - -Check out our comprehensive guide on Velocity [here](https://docs.bloom.host/velocity). - -**Velocity is not a BungeeCord fork, BungeeCord plugins will not work unless stated that they do.** -""" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/velocity.png" -[velocity.fields] -1 = ["Links", """ -• [Velocity](https://papermc.io/downloads#Velocity) -• [GitHub Repository](https://github.com/PaperMC/Velocity) -""", "false"] - -[security] -aliases = ["proxysecurity"] -title = "✅ Secure Your Servers" -footer = "BloomBot - Bloom.host" -colour = "#77b255" -[security.fields] -1 = ["Using BungeeCord/Waterfall", """ -When using a proxy software such as BungeeCord or Waterfall, make sure: -• `online-mode=` is set to `false` in server.properties -• `bungeecord:` is set to `true` in spigot.yml -• you have BungeeGuard installed (!`bungeeguard`) or have backends firewalled off. -""", "false"] -2 = ["Using Velocity with modern forwarding",""" -When using Velocity with using modern forwarding as your proxy, make sure: -• `online-mode=` is set to `false` in server.properties -• `bungeecord:` is set to `false` in spigot.yml -• `enabled:` and `online-mode` under `velocity-support` is set to true in paper.yml -• `secret` under `velocity-support` is set to Velocity's `forwarding-secret` setting. Both of these must be exactly the same or you will be unable to connect to your server! -""", "false"] -3 = ["Using Velocity with BungeeGuard forwarding",""" -When using Velocity with BungeeGuard forwarding as your proxy, make sure: -• `online-mode=` is set to `false` in server.properties -• `bungeecord:` is set to `true` in spigot.yml -• `enabled:` under `velocity-support` is set to false in paper.yml – This setting is for Velocity modern forwarding and you will not be able to join your server with both this and bungeecord forwarding enabled! -• you have BungeeGuard installed (!`bungeeguard`) and that your token in the BungeeGuard plugin on the backend servers matches what is set for Velocity's `forwarding-secret` setting or you will be unable to connect to your server! -""", "false"] - -[details] -aliases = ["accountdetails", "ad"] -title = "📜 Bloom Docs - Editing Account Details" -description = "Check out our comprehensive guide on editing your accounts' details [here](https://docs.bloom.host/extras/account-details/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" - -[welcome] -aliases = ["login", "credentials"] -title = "📜 Welcome to Bloom!" -description = """Welcome to Bloom! We are happy to have you! - -You can log in into our Minecraft panel using this link: https://mc.bloom.host - -**The login credentials for our Minecraft panel are the same you use for your billing account.** - -For **Virtual Private Servers (VPS)** you will receive an email with a randomly generated password, IP address and VNC credentials. You can reset the root and VNC password in the VPS control panel. - -You can log in into our VPS panel using this link: https://vps.bloom.host - -If you don't receive the email, you can click on 'Forgot Password?' and it will sent you a link to configure a new one. - -**Remember to join our main Discord server:** https://discord.gg/bloom -""" -[welcome.buttons] -1 = ["Join main Discord", "https://discord.gg/bloom", ":bloom:"] -2 = ["Open Minecraft Panel", "https://mc.bloom.host", ":bloom:"] -3 = ["Open VPS Panel", "https://vps.bloom.host", ":bloom:"] - -[panelissues] -title = "📜 Panel Connection Issues - How to attempt to fix them" -description = """If you see the error: **We're having some trouble connecting to your server, please wait...** on the panel and our support team has confirmed that there is no issue with the panel, your server or the node itself please follow the steps listed below: - -- Try clearing your browser cache from the browser settings or use Ctrl + F5 while on the Bloom panel. - -- Try using incognito mode on your browser to access the panel. (At the top right of your browser, click the three dots and then New Incognito Window.) - -- Try another browser. - -If the steps above don't fix it then it indicates you may have an issue with your network connection, if that's the case follow the steps below: - -- Try accessing the panel with your phone using mobile data and not wifi. You can also share a hotspot to your PC. - -- Try using a VPN like Cloudflare WARP https://1.1.1.1/ and see if that fixes it. If the issue gets fixed by using a VPN then there's an issue with your network connection. You can try restarting your router/modem and computer and see if that fixes it, if not then you may need to contact your ISP to report the issue. - -""" - -[waterfall] -title = "📜 Bloom Docs - Setting up a Waterfall Proxy Server" -description = "Check out our comprehensive guide on Setting up a Waterfall Proxy Server' details [here](https://docs.bloom.host/waterfall)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" - -[binarysearch] -aliases = ["binary"] -title = "📜 Bloom Docs - Binary Search" -description = "Check out our comprehensive guide on how to do a binary search [here](https://docs.bloom.host/binarysearch)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" - -[importserver] -aliases = ["import", "importer", "serverimporter", "importserver", "serverimport", "servertransfer"] -title = "📜 Bloom Docs - Server Importer" -description = "Check out our comprehensive guide on our Server Importer feature - An easy way to import your server files from your old host. Details [here](https://docs.bloom.host/server-importer)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://docs.bloom.host/assets/images/1-f63d21b5dd3fbb0392aa5c30a55e6650.png" - -[importdatabase] -aliases = ["importdatabases", "importdatabase", "importdb", "databaseimport", "databasetransfer"] -title = "📜 Bloom Docs - How to import databases" -description = "Check out our comprehensive guide on how to import databases. Details [here](https://docs.bloom.host/databases#importing-mysql-databases)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://docs.bloom.host/assets/images/3-c203038839d42eb177a6608cf37bcae6.png" - -[panel] -aliases = ["basiccontrols", "bc"] -title = "📜 Bloom Docs - Duck Panel" -description = "Check out our showcase of the Duckpanel [here](https://Bloom.host/duck-panel) and our in-depth documentation of it [here](https://docs.bloom.host/basic-controls/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/I5X0x8.png" - -[billingticket] -aliases = ["ticket", "verification", "verify"] -title = "📜 Changes to services and accounts need Billing Account verification" -description = """The staff needs to confirm you are the account holder to be able to process changes on your services and accounts. - -Please go to the support section of our Billing Panel located [here](https://billing.bloom.host/supporttickets.php), sign in with your Billing Account and open a Billing Ticket requesting the change or plan upgrade. -""" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/billing_ticket.png" -[billingticket.buttons] -1 = ["Open Billing Ticket", "https://billing.bloom.host/submitticket.php", ":bloom:"] - -[upgrade] -aliases = ["upgrades", "downgrade", "downgrades", "transfers"] -title = "📜 Plan upgrades, downgrades and location changes can now be done through the billing panel" -description = """To request a plan upgrade, downgrade or a change of location go to the Products section of our billing panel [here](https://billing.bloom.host/clientarea.php?action=services), sign in with your Billing Account, click the three dots to the right side of the Product you want to upgrade, then select the Upgrade/Downgrade button. - -On the upgrade page you will be able to select to what location and plan you want to upgrade/downgrade to, here you can also switch between datacenter locations. Once you select the plan it will generate an invoice (if needed) which needs to be paid before the upgrade and transfer process begins. - -**If you want to upgrade/downgrade a VPS or downgrade to a Minecraft Essentials plan open a Billing Ticket [here](https://billing.bloom.host/clientarea.php?action=services)** - -Read more about how upgrades work [here](https://docs.bloom.host/billing/upgrades/#transfers). - -""" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/upgrade.png" -[upgrade.buttons] -1 = ["Products page", "https://billing.bloom.host/clientarea.php?action=services", ":bloom:"] - -[documentation] -aliases = ["docs-link", "doc-link", "docs"] # Original 'docs' alias conflicted with a different command -title = "📜 Bloom Docs" -description = "Check out our documentation [here](https://docs.bloom.host)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/docs.png" - -[schedules] -aliases = ["schedule"] -title = "📜 Bloom Docs - Schedules" -description = "Check out our comprehensive guide on scheduling actions using the Duckpanel [here](https://docs.bloom.host/schedules)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/rgabRH.png" - -[sftp] -aliases = ["ftp"] -title = "📜 Bloom Docs - SFTP" -description = "Check out our comprehensive guide on using file transfer protocol applications [here](https://docs.bloom.host/sftp)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/6IBNVE.png" - -[emailchange] -aliases = ["email", "changemail", "emailaddress", "changemailaddress"] -title = "📜 Bloom Docs - How to change your email address" -description = "Check out our comprehensive guide that shows you how to change your email address [here](https://docs.bloom.host/billing/email_change)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/billing/email_change/2.png" - -[subusers] -aliases = ["users", "sb", "subuser"] -title = "📜 Bloom Docs - Subusers" -description = "Check out our comprehensive guide on subusers [here](https://docs.bloom.host/users)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ARyhBo.png" - -[database] -aliases = ["databases", "mysql"] -title = "📜 Bloom Docs - MySQL" -description = "Check out our comprehensive guide on MySQL databases [here](https://docs.bloom.host/databases/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZAYTsz.png" - -[revproxy] -aliases = ["reverseproxy", "rp"] -title = "📜 Bloom Docs - Reverse-Proxy" -description = "Check out our comprehensive guide on reverse-proxying web applications [here](https://docs.bloom.host/ports-and-proxies/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZIT9nf.png" - -[split] -aliases = ["splitserver", "serversplit"] -title = "📜 Bloom Docs - Split Servers" -description = "Check out our comprehensive guide on server splitting [here](https://docs.bloom.host/split-server/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/xLXWBT.png" - -[filemanager] -aliases = ["files", "file", "manager"] -title = "📜 Bloom Docs - File Manager" -description = "Check out our comprehensive guide on our built-in file manager [here](https://docs.bloom.host/file-manager-controls/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/twkYen.png" - -[backup] -aliases = ["backups"] -title = "📜 Bloom Docs - Backups" -description = "Check out our comprehensive guide on automatic and manual backups [here](https://docs.bloom.host/backups/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/8K5up1.png" - -[vnc] -title = "📜 Bloom Docs - VNC" -description = "Check out our comprehensive guide on how to connect via VNC [here](https://docs.bloom.host/VPS/vnc/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" - -[2fa] -title = "📜 Bloom Docs - 2-Factor Authentication" -description = "Check out our comprehensive guide on how to protect your accounts with 2FA [here](https://docs.bloom.host/2fa/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/dpomnF.png" - -[status] -title = "🌐 Bloom.Host Network Status" -description = "Check out our nodes status and uptime [here](https://status.bloom.host)! We also publish node status on <#742044812177309728>" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/status.png" - -[jars] -aliases = ["serverjars", "whichjar"] -title = "📜 Bloom Docs - Server Jars" -description = "Check out our comprehensive guide on picking the right server software [here](https://docs.bloom.host/jars/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/NniDCP.png" - -[clumsyloader] -aliases = ["bloomloader", "loader"] -title = "📜 Bloom Docs - ClumsyLoader" -description = "Check out our comprehensive guide on using ClumsyLoader [here](https://docs.bloom.host/extras/clumsyloader)! ClumsyLoader provides an alternative way to download your server backups to your VPS or computer." -[clumsyloader.buttons] -1 = ["Open Docs", "https://docs.bloom.host/extras/clumsyloader/", "❔"] - -[stripe] -aliases = [] -title = "📜 Bloom Docs - Stripe Subscriptions" -description = "Check out our comprehensive guide on how to configure a Stripe Subscription or how to cancel automatic payments [here](https://docs.bloom.host/billing/stripe)." -[stripe.buttons] -1 = ["Open Docs", "https://docs.bloom.host/billing/stripe", "❔"] - -[paypal] -aliases = [] -title = "📜 Bloom Docs - PayPal Subscriptions" -description = "Check out our comprehensive guide on how to configure a PayPal Subscription or how to cancel automatic payments [here](https://docs.bloom.host/billing/paypal)." -[paypal.buttons] -1 = ["Open Docs", "https://docs.bloom.host/billing/paypal", "❔"] - -[suspensions] -aliases = ["suspension", "termination", "terminations"] -title = "📜 Bloom Docs - Suspensions and Terminations" -description = "Check out our comprehensive guide on how Suspensions and Terminations work at Bloom [here](https://docs.bloom.host/billing/suspensions_and_terminations)." -[suspensions.buttons] -1 = ["Open Docs", "https://docs.bloom.host/billing/suspensions_and_terminations", "❔"] - -[billingsubusers] -aliases = ["billingsubuser"] -title = "📜 Bloom Docs - Billing Subusers" -description = "Check out our comprehensive guide on how to create billing subusers [here](https://docs.bloom.host/billing/billing_subusers)." -[billingsubusers.buttons] -1 = ["Open Docs", "https://docs.bloom.host/billing/billing_subusers", "❔"] - -[cancellation] -aliases = ["cancellations", "cancel"] -title = "📜 Bloom Docs - Cancellations" -description = "Check out our comprehensive guide on how to request a service cancellation [here](https://docs.bloom.host/billing/cancellations)." -[cancellations.buttons] -1 = ["Open Docs", "https://docs.bloom.host/billing/cancellations", "❔"] - -[refunds] -aliases = ["refund"] -title = "📜 Bloom Docs - How to request a refund" -description = "Check out our comprehensive guide on how to request a refund [here](https://docs.bloom.host/billing/refunds)." -[refunds.buttons] -1 = ["Open Docs", "https://docs.bloom.host/billing/refunds", "❔"] - -[fabric] -title = "📜 Bloom Docs - Fabric" -description = "Check out our comprehensive guide on installing Fabric to your server [here](https://docs.bloom.host/fabric-setup/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/cTEy1Q.png" - -[serverpack] -aliases = ["serverpacks"] -title = "📜 Bloom Docs - Installing a modpack on your server" -description = "Check out our comprehensive guide on installing Modpacks to your server [here](https://docs.bloom.host/modpacks/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" - -[forge] -title = "📜 Bloom Docs - Forge" -description = "Check out our comprehensive guide on installing Forge to your server [here](https://docs.bloom.host/forge-setup/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/SylbcQ.png" - -[plugins] # Refers to Bukkit/Spigot/Paper plugins -aliases = ["plugin", "spigotplugins", "bukkitplugins", "paperplugins"] # Bukkit, Spigot and Paper -title = "📜 Bloom Docs - Spigot Plugins" -description = "Check out our comprehensive guide on installing Spigot Plugins [here](https://docs.bloom.host/installing-plugins/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/Y9KelU.png" - -[servermods] -aliases = ["servermod","fabricmods","fabricmod","forgemods","forgemod"] # 'fabricmods' and 'forgemods' allow the old commands to redirect to this one -title = "📜 Bloom Docs - Server Mods" -description = "Check out our comprehensive guide on installing Forge or Fabric mods [here](https://docs.bloom.host/mods-install/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/wHrhIR.png" - -[optimization] -aliases = ["optimize", "lowtps", "optimisation", "optimise"] # 'optimisation' and 'optimise' are British English spelling -title = "📜 Bloom Docs - Server Optimizations" -description = "Check out our comprehensive guide on server optimizations [here](https://docs.bloom.host/optimization/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/FcHN3O.png" - -[domain] -aliases = ["ip"] -title = "📜 Bloom Docs - Domain" -description = "Check out our comprehensive guide on connecting your server with your domain [here](https://docs.bloom.host/domain/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/97nYMU.gif" - -[resourcepack] -aliases = ["texturepack", "serverpack", "serverresource"] -title = "📜 Bloom Docs - Server-Side Resourcepack" -description = "Check out our comprehensive guide on installing a server-side resourcepack [here](https://docs.bloom.host/resourcepack/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/K3v1x4.png" - -[java] -aliases = ["jvm"] -title = "📜 Bloom Docs - Java Version" -description = "Check out our comprehensive guide on changing your server's Java version [here](https://docs.bloom.host/java-version/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/a0Oz1b.png" - -[java17] -aliases = ["jvm17"] -title = "📜 Minecraft 1.18+ needs Java 17" -description = """ - -The new release of Minecraft 1.18 needs Java 17. - -You can change your Java version by going to the startup tab and selecting Java 17 under the Java Version section. You can see our comprehensive guide on changing your server's Java version [here](https://docs.bloom.host/java-version/). -""" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/java.png" - -[emergencyrestore] -title = "📜 Bloom Docs - Emergency Restores" -aliases = ["emergencyrestores", "emergencybackup", "emergencybackups"] -description = """ -We have emergency node backups we can restore your server from. - -The first emergency restore is free, but after that is $5 each one. - -Please open a ticket on our [billing panel](https://billing.bloom.host/supporttickets.php) requesting the emergency restore. In the ticket include the server ID and the approximate time you want your server restored to, please write the time in UTC, you can use [Dateful](https://dateful.com/time-zone-converter) to convert timezones. - -Emergency restores are done manually, so it can take us up to 24 hours to process the restore. - -In the future please make use of our backup system, it's free and you can schedule backups. Take a look at how our backup system works here: [How are backups handled?](https://docs.bloom.host/backups) -""" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" - -[datapack] -aliases = ["datapacks"] -title = "📜 Bloom Docs - Datapacks" -description = "Check out our comprehensive guide on installing datapacks to your server [here](https://docs.bloom.host/datapacks/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/Qryijp.png" - -[timings] -aliases = ["timing"] -title = "📜 Bloom Docs - Timings" -description = "Check out our comprehensive guide on creating a timings report to debug TPS issues on your server [here](https://docs.bloom.host/timings/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZX46Vs.png" - -[motd] -title = "📜 Bloom Docs - MOTD" -description = "Check out our comprehensive guide on how to change your server's message of the day [here](https://docs.bloom.host/motd/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/swkTMA.png" - -[reset] -aliases = ["resetworld", "worldreset"] -title = "📜 Bloom Docs - World Reset" -description = "Check out our comprehensive guide on how to reset your world [here](https://docs.bloom.host/world-reset/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/dCHgqO.gif" - -[caddy] -aliases = ["caddysplit", "caddyserver"] -title = "📜 Bloom Docs - Caddy Split Server" -description = "Check out our comprehensive guide on how to split your server into a Caddy Server [here](https://docs.bloom.host/other-servers/caddy-server)!\nAs Caddy is an unsupported server split (which means you will not receive any support from staff), you can ask for community help in <#737803938430189678>!" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://caddyserver.com/resources/images/caddy-open-graph.jpg" -enabled = true - -[ark] -title = "📜 Bloom Docs - How to create an ARK: Survival Evolved server" -description = "Check out our comprehensive guide on how to create an ARK: Survival Evolved server [here](https://docs.bloom.host/other-servers/ark)!\nAs ARK: Survival Evolved is an unsupported server split (which means you will not receive any support from staff for in game issues), you can ask for community help in <#737803938430189678>!" -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://cdn1.epicgames.com/ark/offer/EGS_ARKSurvivalEvolved_StudioWildcard_S1-2560x1440-c316afb7c33a9dfb892eef6b99169e43.jpg" -enabled = true - -[plan] -title = "📜 Bloom Docs - Plan" -description = "Check out our comprehensive guide on how to install Plan - Player Analytics [here](https://docs.bloom.host/multiplatform/plan/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" - -[icon] -title = "📜 Bloom Docs - Server Favicon" -aliases = ["favicon"] -description = "Check out our comprehensive guide on how to add a favicon to your server [here](https://docs.bloom.host/icon/)." -thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/swkTMA.png" - -# ┌────────────────┐ -# │ Interal Embeds │ -# └────────────────┘ -# Please do note that you'll still have to specify "enabled = false" -# to disable them from !docs and their usage as a command. (for example !error) -# Most of these have special placeholders. These should be pretty self-explanatory. - -# Sent whenever the !duck command is used (🦆) -# Placeholder: %link% -[duck] -enabled = true -title = "<:blobcheer:762884190210621440> Here's your random duck!" -image = "%link%" -[duck.buttons] -1 = ["Original Image", "%link%", "🔗"] - -# Sent whenever an unintended command is used on a different server than the main one -[server] -enabled = false -title = "<:ex:849551085793837067> Error: this command can only be used on the main discord server!" -colour = "#dd2e46" -[server.buttons] -1 = ["Join Server", "https://discord.gg/bloom", "🔗"] - -# Sent whenever some action was unsuccessful -# Placeholders: %errormessage% -[error] -enabled = false -title = "<:ex:849551085793837067> Error: %errormessage%" -colour = "#dd2e44" - -# Sent whenever a command was unsuccessful -# Placeholders: %errormessage%, %usage% -[error-usage] -enabled = false -title = "<:ex:849551085793837067> Error: %errormessage%" -description = "Usage: `%usage%`" -colour = "#dd2e44" - -# Sent whenever some action was successful -# Placeholder: %successmessage% -[success] -enabled = false -title = "<:check:849551086033698856> Success: %successmessage%" -colour = "#77b255" - -# Sent when a new suggestion is created or edited -# Placeholders: %suggestion%, %username%, %date%, %suggestionid% -[suggestion-embed] -title = "%username%'s Suggestion" -enabled = false -description = "%suggestion%" -thumbnail = "%useravatar%" -footer = "Suggestion ID: %suggestionid% • %date%" -footer-icon = "%guildicon%" - -# Sent whenever a suggestion is approved -# Placeholders: %username%, %staffname%, %reason%, %status%, %suggestion%, %date%, %upvotes%, %downvotes%, %suggestionid% -[approved-suggestion] -title = "Approved %username%'s Suggestion" -colour = "#77b255" -enabled = false -thumbnail = "%useravatar%" -footer = "Upvotes: %upvotes% - Downvotes: %downvotes% - Suggestion ID: %suggestionid% • %date%" -footer-icon = "%guildicon%" -[approved-suggestion.fields] -1 = ["Suggestion", "%suggestion%", "false"] -2 = ["Reason from %staffname%", "%reason%", "false"] - -# Sent whenever a suggestion is denied -# Placeholders: %username%, %staffname%, %reason%, %status%, %suggestion%, %date%, %upvotes%, %downvotes%, %suggestionid% -[denied-suggestion] -title = "Denied %username%'s Suggestion" -enabled = false -colour = "#ff0000" -thumbnail = "%useravatar%" -footer = "Upvotes: %upvotes% - Downvotes: %downvotes% - Suggestion ID: %suggestionid% • %date%" -footer-icon = "%guildicon%" -[denied-suggestion.fields] -1 = ["Suggestion", "%suggestion%", "false"] -2 = ["Reason from %staffname%", "%reason%", "false"] - -# Sent whenever someone joins -# Placeholders: %username%, %usermention%, %membercount% -[join] -enabled = false -description = "**<:blobwave:736379131696119860> Welcome, %username%!**" - -# Sent whenever the !et command is used without input -[embedtest] -title = "BloomBot - Contributing" -title-icon = "%guildicon%" -enabled = false -footer-icon = "%guildicon%" -description = """ -If you wish to contribute to <@739984621135069355> without coding knowledge, you can help by creating commands using the TOML format, which is very similar to the more commonly used YAML syntax. - -✨ **A Simple Example** -```toml -[test] # <-- This is the name of the command -title = "text" -colour = "#FFFFF1" -description = "text" -``` -To test an embed code, simply type `!embedtest ` and the bot will try to evaluate and create the embed. - -View all properties and an example [here](https://gist.github.com/NotGeri/cb11552ab7a12e20ab495a20826c341f)! - -Once you have an embed you like, simply create a pull request by following the [docs](https://docs.bloom.host/extras/contributing#editing-github-stuffs-advanced)! -""" -[embedtest.buttons] -a = ["Open Help Gist", "https://gist.github.com/NotGeri/cb11552ab7a12e20ab495a20826c341f", "🔗"] -b = ["Read Contribrution Docs", "https://docs.bloom.host/extras/contributing#editing-github-stuffs-advanced", "🔗"] - -# Sent when a ticket is opened outside of regular support hours -# Placeholders: %from%, %to%, %fromraw%, %toraw%, %time% -[time-warn] -enabled = false -colour = "#ffdc5d" -title = ":warning: Outside standard support hours" -description = """ -Our standard support hours today are between **%fromraw%** and **%toraw%** US Eastern (**** and **** local time) - -Current time: **%timeraw%** (**** local) - -Though we are often available outside of these hours, responses may be delayed until support hours resume. - -Please consider using <#737803938430189678> for non-technical issues. -""" -[time-warn.buttons] -1 = ["Use #support-chat", "https://discord.com/channels/720081782980083813/737803938430189678"] - -# Sent when the !claims commmand is used -# Placeholders: %time%, %lines%, %total%, %unclaimed% -[claims] -enabled = false -colour = "#ffcc4d" -[claims.fields] -1 = ["🔗 Claimed Tickets Since `%time%`", """ -%lines% - -✅ Total regular - %total% -⚠️ Unclaimed - %unclaimed% -""", "false"] - -# Sent when a ticket !add/!remove finishes -# Placeholder: %results% -[ticket-command-finished] -enabled = false -title = "Finished! Results:" -title-icon = "%guildicon%" -description = "%results%" - -# Sent when a ticket !add/!remove starts -[ticket-command-pending] -enabled = false -title = "Attempting to add users..." -title-icon = "%guildicon%" - -# Sent when a ticket message is translated -# Placeholders: %oldtext%, %newtext%, %username%, %usermention%, %userid%, %from%, %fromflag%, %to%, %toflag% -[translate-command] -enabled = false -text = "<:translate:989542523464716349> **%username%**: %newtext%" - -# Sent for !translate status -# Placeholders: %status% -[translation-status] -enabled = false -title = "<:translate:989542523464716349> Translation Status: %status%" -description = "Toggle to status with the `!ticket toggle` command!" - -# Sent when !stats is used -# Placeholders: %totalsuggestions%, %pendingsuggestions%, %approvedsuggestions%, %deniedsuggestions%, %duckcount%, %uptime%, %avgfirstresponse%, %membercount%, %rolecount% -[stats-embed] -enabled = false -title = "Bloom Statistics" -title-icon = "%guildicon%" -footer = "BloomBot - Bloom.host" -[stats-embed.fields] -a = ["📈 Suggestion Statistics", """ -```yml -Total: %totalsuggestions% -Pending: %pendingsuggestions% -Approved: %approvedsuggestions% -Denied: %deniedsuggestions% -``` -""", "false"] - -b = ["🦆 Duck Statistics", """ -```yml -Total: %duckcount% -``` -""", "false"] - -c = ["<:aaaduck:755553395363938344> Guild Statistics", """ -```yml -Member Count: %membercount% -Role Count: %rolecount% -``` -""", "false"] - -d = ["⚙ BloomBot Statistics", """ -```yml -Current Uptime: %uptime% -Avg. First Response: %avgfirstresponse% -``` -""", "false"] - -# ┌───────────────┐ -# │ Ticket Embeds │ -# └───────────────┘ -[ticket-notes] -enabled = false -title = "Ticket #%ticketid% — Notes" -colour = "#ffc710" -description = """ -%notes% -""" -[ticket-notes.custom-data] -note-format = "`#%id%` <@%addedby%>: %content%\n" - -[panel-link] -enabled = false -title = "🔗 Panel Account Found" -colour = "#FFFFF1" -footer = "Tickets - Bloom.host" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/line.png" -[panel-link.fields] -1 = ["User Info", """ -- ID: [%id%](https://mc.bloom.host/admin/users/view/%id%) -- Email: [%email%](https://billing.bloom.host/admin/clients.php?email=%email%) -""", "false"] -2 = ["Servers", "%servers%", "false"] -[panel-link.buttons] -1 = ["Unlink Account", "https://mc.bloom.host/account", "<:unlink:1135289952838615161>"] -[panel-link.custom-data] -line-format = "%prefix% %emoji% %name% ([%shortUuid%](https://mc.bloom.host/server/%shortUuid%)) [[Billing](https://billing.bloom.host/redirect.php?id=%externalParentId%)]\n" -owner-emoji = "💰" -regular-emoji = "🔓" -subserver-prefix = " -" -regular-prefix = "-" - -[ticket-panel] -enabled = false -title = "🦆 Click the button to open a ticket" -description = """ -For billing inquiries such as upgrades, downgrades, or refunds, please open a ticket on our billing panel: https://billing.bloom.host/submitticket.php - -Our standard support hours are between 8AM and 8PM US Eastern, ( and local time), although we are often available outside of these hours, responses may be delayed until support hours resume. - -Please consider using <#737803938430189678> for non-technical issues. -""" -[ticket-panel.buttons] -a = ["Open Billing Ticket", "https://billing.bloom.host/submitticket.php", "💰"] - -[tickets-default] -enabled = false -title = "🦆 New Ticket" -colour = "#FFFFF1" -description = "Thank you %username% for opening a ticket! We will be with you as soon as possible. For us to better assist you, please provide your server ID and a description of your issue." -footer = "Tickets - Bloom.host" - -[tickets-general] -enabled = false -title = "🦆 Ticket Created" -colour = "#FFFFF1" -description = """ -Thank you, %username% for opening a ticket! We will be with you as soon as possible. For us to better assist you, please provide your server ID and a description of your issue. - -For billing inquiries such as upgrades, downgrades, or refunds, please open a ticket on our billing panel: https://billing.bloom.host/submitticket.php -""" -footer = "Tickets - Bloom.host" -image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/line.png" -[tickets-general.buttons] -2 = ["Open Billing Ticket", "https://billing.bloom.host/submitticket.php", "💰"] - -[tickets-billing] -enabled = false -title = "💰 Billing Ticket" -colour = "#fdd888" -description = "Thank you %username% for opening a ticket! We will be with you as soon as possible. In order for us to best assist you, please provide your server ID and a description of your issue below." -footer = "Tickets - Bloom.host" - -[tickets-minecraft] -enabled = false -title = "⛏️ Minecraft Ticket" -colour = "#3ba55d" -description = "Thank you %username% for opening a ticket! We will be with you as soon as possible. In order for us to best assist you, please provide your server ID and a description of your issue below." -footer = "Tickets - Bloom.host" - -[minecraft-ess] -enabled = false -title = "Minecraft Essentials" -description = """ -:wave: -Thank you for joining the **Minecraft Essentials** waitlist! - -**Please respond with the following choices:** -```YAML -Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast), Germany -Size: 4GB, 6GB -``` -**Note: selecting multiple options can decrease your wait time significantly.** - -You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom - -**If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** -""" - -[minecraft-perf] -enabled = false -title = "Minecraft Performance" -description = """ -:wave: -Thank you for joining the **Minecraft Performance** waitlist! - -**Please respond with the following choices:** -```YAML -Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast), Germany -Size: 8GB, 12GB, 16GB, 20GB, 24GB, 32GB -``` -**Note: selecting multiple options can decrease your wait time significantly.** - -You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom - -**If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** -""" - -[minecraft-perfplus] -enabled = false -title = "Minecraft Performance+" -description = """ -:wave: -Thank you for joining the **Minecraft Performance+** waitlist! - -**Please respond with the following choices:** -```YAML -Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast), Germany, Singapore -Size: 8GB, 12GB, 16GB, 20GB, 24GB, 32GB -``` -**Note: selecting multiple options can decrease your wait time significantly.** - -You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom - -**If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** -""" - -[vps-perf] -enabled = false -title = "VPS Performance" -description = """ -:wave: -Thank you for joining the **VPS Performance** waitlist! - -**Please respond with the following choices:** -```YAML -Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast) -Size: 4GB, 8GB, 12GB, 16GB, 20GB, 24GB -``` -**Note: selecting multiple options can decrease your wait time significantly.** - -You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom - -**If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** -""" - -[baremetal-waitlist] -enabled = false -title = "Bare Metal" -description = """ -:wave: -Thank you for joining the **Bare Metal** wait list! - -**Please respond with which server(s) you are interested in, and one of our staff members will respond shortly to confirm your spot.** -```YAML -Bare Metal servers available: Ryzen 5 5600X, Ryzen 7 5800X, Ryzen 9 5950X -``` -The full specifications of each server can be found on our website at https://bloom.host/bare-metal-dedicated/ where you can also find a list of available add-ons -""" - -[vps-perfplus] -enabled = false -title = "VPS Performance+" -description = """ -:wave: -Thank you for joining the **VPS Performance+** waitlist! - -**Please respond with the following choices:** -```YAML -Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast), Germany, Singapore -Size: 8GB, 12GB, 16GB, 20GB, 24GB -``` -**Note: selecting multiple options can decrease your wait time significantly.** - -You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom - -**If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** -""" - -[whitelistpanelthing] -enabled = false -title = "Join the waitlist" -description = """ -:white_circle: to join the **Minecraft Essentials** waitlist -:blue_circle: to join the **Minecraft Performance** waitlist -:red_circle: to join the **Minecraft Performance+** waitlist -:green_circle: to join the **VPS Performance** waitlist -:orange_circle: to join the **VPS Performance+** waitlist -:purple_circle: to join the **Bare Metal ** waitlist -""" - -[ticket-close] -enabled = false -title = "Support Ticket Closed" -colour = "#2ecc70" -footer = "Tickets - Bloom.host" -description = """ -:tools: **Reason**: %reason% -:link: **Archive**: [Transcript link here](%link%) -:grey_question: **Ticket ID**: `#%ticketid%` -:duck: **Claimed By:** %claimers% -""" -[ticket-close.fields] -1 = ["Opened", """ -• **By**: %usermention% -• **At**: %fancyopenedat% -""", "true"] -2 = ["Closed", """ -• **By**: %staffmention% -• **At**: %fancyclosedat% -""", "true"] - -# ┌─────────────────┐ -# │ Archived Embeds │ -# └─────────────────┘ -# These are merely as an archive in case they are needed in the future. -# They are not used anywhere by the bot automatically. -[rri-1] -enabled = false -title = "Service Alerts - Toggle Notification" -colour = "#f85102" -description = """ -React below with <:aaaduck:755553395363938344> to toggle Minecraft Alerts -React below with :duck: to toggle VPS Alerts -""" -author-thumbnail = false -title-icon = false -footer-icon = false - -[rri-2] -enabled = false -title = "Location Alerts - Toggle Notification" -colour = "#f85102" -description = """ -React below with 🍄 to toggle notifications of Ashburn Alerts -React below with 🌊 to toggle notifications of Dallas Alerts -React below with 🍀 to toggle notifications of Germany Alerts -""" -author-thumbnail = false -title-icon = false -footer-icon = false - -[rri-3] -enabled = false -title = "Stock Alerts - Toggle Notification" -colour = "#f85102" -description = """ -React below with :sparkles: to toggle notifications for Minecraft stock -React below with :comet: to toggle notifications for VPS stock -""" -author-thumbnail = false -title-icon = false -footer-icon = false - -[rri-4] -enabled = false -colour = "#f85102" -title = "About Us" -description = """Our mission is to continue to provide our high-performance game hosting and Virtual Private Servers to both gamers and non-gamers, at affordable and sustainable prices. We only work with top-rated and reliable datacenters and hardware vendors to give you the best performance, up-time, and overall experience. We top all of this off with excellent customer service. At Bloom, we are always improving and listening to feedback. Please contact us with any questions, suggestions, or concerns.""" -author-thumbnail = false -title-icon = "%guildicon%" -footer-icon = false -[rri-4.fields] -0 = ["<:discord:881204198442663936> **The Discord**", """We post announcements, etc here. -```prolog -Administration -``` -You can talk about anything in general in these channels. -```prolog -Chit Chat -``` -Need help with anything? ask here -```prolog -Support -``` -Think of something we can improve on? suggest it here. -```prolog -Suggestions -``` -""", "false"] -1 = ["🎖️ Important Roles:", """<@&720098768057270283> - Our wonderful staff team -<@&803747472589455360> - Someone in the community who is exceedingly active and helpful -<@&739550512990388296> - Discord Boosters ~ Great people :smile: -<@&753366973961863248> - Official Bloom Partners -<@&744415283330154566> - Help out by writing documentation -<@&880083074321350676> - Feature beta testers -<@&732004421348753482> - Customers -<@&732004386133245953> - Members of our discord server ~ also all great people :slight_smile: -""", "false"] - -2 = ["📜 Rules", """```yml -0: Follow Discord TOS -1: Don't advertise >:( -2: Stay on topic -3: Keep away from potentially disturbing posts -4: Be kind and respectful to others -5: No discrimination of any kind (no slurs) -6: Avoid politics and other controversial topics -7: Use common sense -```""", "false"] - -3 = ["❔ Where you can review us / checkout reviews", """ -• [Trustpilot](https://www.trustpilot.com/review/bloom.host) -• [Mc Market(VPS)](https://www.mc-market.org/threads/601576/) -• [MC Market(Minecraft)](https://www.mc-market.org/threads/612586/) -• [Admincraft Marketplace](https://www.reddit.com/r/admincraft/comments/mi0bjj/admincraft_marketplace_q2_2021/gt30cgl/) -""", "false"] - -[codes] -aliases = ["promo", "coupon"] -title = "💳 Promo Codes" -colour = "#feab33" -description = """ -### Here are the current active promo codes: -- `TRAILS&TALES`: 15% off the first Minecraft or VPS plan (expires ) -- `PERFPLUSME`: 20% off your first Performance Plus plan -""" -[codes.buttons] -1 = ["Create Your Server Now", "https://bloom.host/", "🎉"] diff --git a/embeds.yml b/embeds.yml new file mode 100644 index 000000000..7c840ead3 --- /dev/null +++ b/embeds.yml @@ -0,0 +1,1391 @@ +# This is the source file of BloomBot's embeds +# For more information, please see CONTRIBUTING.md + +help: + title: 'BloomBot Help' + title-icon: '%guildicon%' + thumbnail: 'https://cdn.discordapp.com/icons/720081782980083813/a_b14b3675972cae4aa909387ee4b7995f.gif' + footer: 'BloomBot - Bloom.host' + fields: + - title: ':grey_question: Help Commands' + description: |+ + • `!help` - Here you are! + • `!waitlist` - Join the waitlist + • `!rate` - Satisfied with Bloom? + • `!docs` - List of all other documents + • `!hastebin` - For all your pasting needs! + • `!duck` - Generate a random duck! + inline: true + - title: ':link: Links' + description: |+ + • [Website](https://bloom.host/) + • [Billing Panel](https://billing.bloom.host/) + • [Duck Panel](https://mc.bloom.host/) + • [VPS Panel](https://vps.bloom.host/) + inline: true + - title: ':gear: Misc Commands' + description: |+ + • `!stats` - Some stats + • `!duck` - Get a random duck! + • `!suggest ` - Create a suggestion + • `!steal ` - Add a new emoji + • `!edit ` - Modify your suggestion + inline: false + - title: ':label: Ticket Commands' + description: |+ + • `!close [reason]` - Close your ticket + • `!rename ` - Rename a ticket + • `!transfer <@tag | userid>` - Transfer a ticket to another user + • `!add <@user | userid>` - Add a user to your ticket + • `!remove <@user | userid>` - Remove a user from your ticket + inline: true + +# Todo: is this needed? (see below) +billing: + text: 'https://billing.bloom.host' + buttons: + - [ 'Billing Ticket', 'https://billing.bloom.host/' ] + +billingticket: + aliases: + - 'ticket' + - 'verification' + - 'verify' + title: '📜 Changes to services and accounts need Billing Account verification' + description: |+ + The staff needs to confirm you are the account holder to be able to process + changes on your services and accounts. + + Please go to the support section of our Billing Panel located [here](https://billing.bloom.host/supporttickets.php), sign in with your Billing Account and open a Billing Ticket requesting the change or plan upgrade. + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/billing_ticket.png' + buttons: + - [ 'Open Billing Ticket', 'https://billing.bloom.host/submitticket.php', ':bloom:' ] + +voicechat: + aliases: + - 'vc' + - 'simplevoicechat' + - 'svc' + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/voicechat.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/voicechat-2.png' + title: 'Sponsored by Bloom: Simple Voice Chat' + title-icon: '%guildicon%' + description: |+ + Simple Voice Chat is an easy-to-use and reliable in-game voice chat + modification and plugin for Minecraft servers. + buttons: + - [ 'Website', 'https://modrepo.de/minecraft/voicechat/wiki/?t=setup' ] + - [ 'CurseForge', 'https://www.curseforge.com/minecraft/mc-mods/simple-voice-chat/' ] + - [ 'Bukkit', 'https://dev.bukkit.org/projects/simple-voice-chat' ] + - [ 'Docs', 'https://docs.bloom.host/multiplatform/simple-voice-chat/' ] + +demo: + aliases: [ 'demopanel' ] + title: '<:aaaduck:755553395363938344> Bloom.host Demo Panel' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/demo.png' + description: |+ + Check out our demo panel with all the Duck panel's features and looks! + buttons: + - [ 'Open Demo', 'https://demo.bloom.host', '<:aaaduck:755553395363938344>' ] + +updating: + aliases: + - 'update' + - 'changeversion' + - 'changingversions' + - 'changingjar' + - 'changingjars' + title: '📜 How to update, change versions or change server jar' + description: |+ + Check out our comprehensive guide on how to update, change versions + or server jar [here](https://docs.bloom.host/updating/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/updating/1.png' + +pingissues: + title: ':warning: Bloom Docs - How to diagnose and fix ping issues' + description: > + Check out our comprehensive guide on how to diagnose and fix ping + issues [here](https://docs.bloom.host/extras/ping-issues/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/G7k4om.png' + +bungeeguard: + title: ':warning: Bloom Docs - BungeeGuard' + description: > + Check out our comprehensive guide on BungeeGuard + [here](https://docs.bloom.host/waterfall/#setting-up-bungeeguard). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZvaY5o.png' + +paper: + aliases: [ 'papermc' ] + title: PaperMC + description: > + PaperMC is a fork of Spigot that aims to improve server performance, + security, and gameplay consistency. It's generally the most popular and + recommended fork among the MC community, meeting the needs of most MC + servers out there. + + PaperMC is compatible with every plugin that works on Spigot (except outdated ones, you shouldn't be using these either way), and even improves performance on some optimized plugins meant to work better on Paper. + thumbnail: 'https://avatars.githubusercontent.com/u/7608950' + fields: + - title: 'Links' + description: |+ + • [PaperMC Downloads](https://papermc.io/downloads) + • [PaperMC Discord Server](https://discord.gg/papermc) + • [GitHub Repository](https://github.com/PaperMC/Paper/) + inline: false + +aikar: + aliases: + - 'flags' + - 'flag' + - 'aikars' + - 'ram' + title: '<:ram:850401810018598982> Aikar''s Flags' + description: > + At Bloom, we utilize Aikar's flags by default, which pre-allocates all of + the server's available memory for better performance. You can see you + server's actual memory usage by running the `/memory` or `/tps mem` command + in your console. + + 🔗 Wish to know more? Check out [this post](https://docs.papermc.io/paper/aikars-flags/)! + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/gNzJPp.png' + +contribute: + aliases: [ 'contribute-docs' ] + title: 'Contribute to our Documentation!' + description: > + Most of our documentation have been written by our community. You can + contribute too! Fork the documentation repository or write an article in PDF + or on a Word document and send it to us through a support ticket and we will + add it. + + 🔗 Wish to know more? Check out [How to contribute to our documentation](https://docs.bloom.host/extras/contributing)! + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/documentation.png' + +fbi: + aliases: [ 'fbimeme' ] + text: https://i.clumsy.host/fbi.mp4 + +fbiinfo: + aliases: + - 'offlinemode' + - 'blackspigot' + - 'piracyisbad' + - 'crackedserver' + - 'cracked' + title: '🚫 Piracy Is Bad' + colour: '#dd2e44' + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/85dAco.png' + description: > + In case you are doing any of the following, you will __not recieve + any support__ from Bloom community, staff members, most plugin developers + and server/proxy software staff. + fields: + - title: '<:warn:849551085873135657> Cracked Servers' + description: > + Using offline-mode on servers bypasses Mojang's authentication system + entirely meaning there are __countless security exploits__ people can + use. This feature is meant to be used for developers and proxies. (In + case you *are* using an online-mode proxy, you seriously need to check + your configuration - See `!security`) + inline: false + - title: '🏴‍☠ Pirated Software' + description: > + Using any kind of software obtained from unofficial sites such as + BlackSpigot has a high chance of containing viruses, force-op and more. + If you wish to use Premium software, pay for it. + inline: false + +winmtr: + aliases: + - 'ping' + - 'network' + - 'mtr' + title: 'Diagnosing Connection Issues' + description: > + *MTR probes routers on the route path by limiting the number of + hops individual packets may traverse, and listening to responses of their + expiry.* + footer: 'BloomBot - Bloom.host' + footer-icon: '%guildicon%' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/G7k4om.png' + fields: + - title: '<:windows:849551086158741524> Windows' + description: |+ + You can use a software such as [WinMTR](https://sourceforge.net/projects/winmtr/). + + **1**. Click the link and download the application + **2**. Extract the downloaded archive and open the folder. + **3**. Start the `WinMTR.exe` file and enter your server's IP address in the 'host' field. + **4**. Click start and let it run for at least a minute. + **5**. Take a screenshot of the results so we can analyze your route. + inline: false + - title: '<:apple:849551086028849152> <:linux:955230938084818964> Other Operating Systems' + description: |+ + In case you are using another operating system such as macOS or Linux, be sure to let us know we'll guide you through the process! + inline: false + +grafana: + aliases: + - 'unifiedmetrics' + - 'prom' + - 'prometheus' + - 'metrics' + title: '<:grafana:870895629507903499> Grafana' + description: > + Setup Grafana, Prometheus, and UnifiedMetrics so you can have more + stats about your minecraft server, which couldn't be done without our lovely + server splitter :) + Guide located [here](https://docs.bloom.host/other-servers/grafana/). + image: 'https://raw.githubusercontent.com/Cubxity/UnifiedMetrics/dev/0.3.x/.github/assets/grafana.png' + +# Todo: do we need this? Should we link mclogs instead with some instructions +# about using it with the panel buttons? +bin: + aliases: + - 'hastebin' + - 'pastebin' + - 'logs' + title: 'Bloom Bin' + description: |+ + Bloom has their own hastebin called Bloom Bin! Check it out + [here](https://bin.Bloom.host)! + +vps: + title: 'VPS - Virtual Private Servers' + description: |+ + Our VPS plans come with a bare Linux command line installation. This means + that you will not be able to use our personalized Minecraft control panel + and you will need Linux command line experience to be able to manage your + VPS. VPS plans are unmanaged and support for configuring and managing the + server isn't provided. + + If you don't have any experience with Linux we recommend you go with our [Minecraft plans](https://bloom.host/minecraft). + + Are you new to VPS? Check out our [Get Started with VPS guide](https://docs.bloom.host/VPS/starting-with-vps)! + +waitlist: + aliases: [ 'wl' ] + title: 'About the Waitlist' + description: |+ + To enter the Bloom.host waitlist, follow these steps + + **1.** Join the Waitlist Discord server [here](https://Bloom.host/waitlist). + **2.** Create a ticket and let us know what plan/location you want to wait for. + **3.** When it's your turn, you'll be pinged in your ticket. You have 24 hours to respond, otherwise, you lose your spot in line. + **4.** Transfer or purchase your server! + + Thanks again for your interest in our plans! + +rate: + aliases: [ 'support' ] + title: 'Rate Bloom.host!' + description: 'If you''re having a good experience with Bloom.host, rate us!' + fields: + - title: 'Links' + description: |+ + • [Trustpilot](https://www.trustpilot.com/review/bloom.host) + • [MC Market (Minecraft)](https://www.mc-market.org/threads/612586/) + • [Admincraft Marketplace](https://www.reddit.com/r/admincraft/comments/shvm6f/admincraft_monthly_marketplace/hv4tx5h/) + inline: false + +chunky: + title: 'Chunky' + title-icon: '%guildicon%' + description: |+ + Chunky is a fast, easy and safe tool for pre-generating chunks on your + server. + + Chunk generation in Minecraft is slow, which can sometimes cause server lag or slow chunk loading for players. Generating them upfront will help improve performance and gameplay on almost any server. + + See our official guide for Chunky [here](https://docs.bloom.host/multiplatform/chunky). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/chunky.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/8ytho7.png' + fields: + - title: '⭐ Chunky' + description: |+ + • [Spigot - Plugin Version](https://www.spigotmc.org/resources/chunky.81534/) + • [CurseForge - Forge Mod Version](https://www.curseforge.com/minecraft/mc-mods/chunky-pregenerator-forge) + • [CurseForge - Fabric Mod Version](https://www.curseforge.com/minecraft/mc-mods/chunky-pregenerator) + • [Official Documentation](https://github.com/pop4959/Chunky/wiki) + • [Support Server](https://discord.gg/ZwVJukcNQG) + inline: false + - title: '🌍 ChunkyBorder' + description: |+ + An add-on for Chunky which lets you create and manage custom world borders. + • [Spigot- Plugin Version](https://www.spigotmc.org/resources/chunkyborder.84278/) + • [CurseForge - Fabric Mod Version](https://www.curseforge.com/minecraft/mc-mods/chunky-border) + • [GitHub Repository](https://github.com/pop4959/ChunkyBorder) + • [Support Server](https://discord.gg/ZwVJukcNQG) + inline: false + +velocity: + aliases: [ 'velo' ] + title: 'Velocity' + description: |+ + Velocity is a next-generation Minecraft proxy focused on scalability and flexibility created by the initial developer of Waterfall and RedisBungee. + + Velocity uses less CPU and RAM, leaving more resources for your server. + + Velocity also features modern forwarding, leaving your back-end servers safe. + + Check out our comprehensive guide on Velocity [here](https://docs.bloom.host/velocity). + + **Velocity is not a BungeeCord fork, BungeeCord plugins will not work unless stated that they do.** + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/velocity.png' + fields: + - title: 'Links' + description: |+ + • [Velocity](https://papermc.io/downloads#Velocity) + • [GitHub Repository](https://github.com/PaperMC/Velocity) + inline: false + +security: + aliases: [ 'proxysecurity' ] + title: '✅ Secure Your Servers' + footer: 'BloomBot - Bloom.host' + colour: '#77b255' + fields: + - title: 'Using BungeeCord/Waterfall' + description: |+ + When using a proxy software such as BungeeCord or Waterfall, make sure: + • `online-mode=` is set to `false` in server.properties + • `bungeecord:` is set to `true` in spigot.yml + • you have BungeeGuard installed (!`bungeeguard`) or have backends firewalled off. + inline: false + - title: 'Using Velocity with modern forwarding' + description: |+ + When using Velocity with using modern forwarding as your proxy, make + sure: + • `online-mode=` is set to `false` in server.properties + • `bungeecord:` is set to `false` in spigot.yml + • `enabled:` and `online-mode` under `velocity-support` is set to true in paper.yml + • `secret` under `velocity-support` is set to Velocity's `forwarding-secret` setting. Both of these must be exactly the same or you will be unable to connect to your server! + inline: false + - title: 'Using Velocity with BungeeGuard forwarding' + description: |+ + When using Velocity with BungeeGuard forwarding as your proxy, make sure: + • `online-mode=` is set to `false` in server.properties + • `bungeecord:` is set to `true` in spigot.yml + • `enabled:` under `velocity-support` is set to false in paper.yml – This setting is for Velocity modern forwarding and you will not be able to join your server with both this and bungeecord forwarding enabled! + • you have BungeeGuard installed (!`bungeeguard`) and that your token in the BungeeGuard plugin on the backend servers matches what is set for Velocity's `forwarding-secret` setting or you will be unable to connect to your server! + inline: false + +# Todo: this is really generic +details: + aliases: + - 'accountdetails' + - 'ad' + title: '📜 Bloom Docs - Editing Account Details' + description: |+ + Check out our comprehensive guide on editing your accounts' details + [here](https://docs.bloom.host/extras/account-details/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + +welcome: + aliases: + - 'login' + - 'credentials' + title: '📜 Welcome to Bloom!' + description: |+ + Welcome to Bloom! We are happy to have you! + You can log in into our Minecraft panel using this link: https://mc.bloom.host + + **The login credentials for our Minecraft panel are the same you use for your billing account.** + + For **Virtual Private Servers (VPS)** you will receive an email with a randomly generated password, IP address and VNC credentials. You can reset the root and VNC password in the VPS control panel. + + You can log in into our VPS panel using this link: https://vps.bloom.host + + If you don't receive the email, you can click on 'Forgot Password?' and it will sent you a link to configure a new one. + + **Remember to join our main Discord server:** https://discord.gg/bloom + buttons: + - [ 'Join main Discord', 'https://discord.gg/bloom', ':bloom:' ] + - [ 'Open Minecraft Panel', 'https://mc.bloom.host', ':bloom:' ] + - [ 'Open VPS Panel', 'https://vps.bloom.host' , ':bloom:' ] + +panelissues: + title: '📜 Panel Connection Issues - How to attempt to fix them' + description: |+ + If you see the error: **We're having some trouble connecting to your server, + please wait...** on the panel and our support team has confirmed that there + is no issue with the panel, your server or the node itself please follow the + steps listed below: + - Try clearing your browser cache from the browser settings or use Ctrl + F5 while on the Bloom panel. + - Try using incognito mode on your browser to access the panel. (At the top right of your browser, click the three dots and then New Incognito Window.) + - Try another browser. + + If the steps above don't fix it then it indicates you may have an issue with your network connection, if that's the case follow the steps below: + - Try accessing the panel with your phone using mobile data and not wifi. You can also share a hotspot to your PC. + - Try using a VPN like Cloudflare WARP https://1.1.1.1/ and see if that fixes it. If the issue gets fixed by using a VPN then there's an issue with your network connection. You can try restarting your router/modem and computer and see if that fixes it, if not then you may need to contact your ISP to report the issue. + +# Todo: this is really generic +waterfall: + title: '📜 Bloom Docs - Setting up a Waterfall Proxy Server' + description: > + Check out our comprehensive guide on Setting up a Waterfall Proxy + Server' details [here](https://docs.bloom.host/waterfall). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + +# Todo: this is really generic +binarysearch: + aliases: [ 'binary' ] + title: '📜 Bloom Docs - Binary Search' + description: > + Check out our comprehensive guide on how to do a binary search + [here](https://docs.bloom.host/binarysearch). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + +importserver: + aliases: + - 'import' + - 'importer' + - 'serverimporter' + - 'serverimport' + - 'servertransfer' + title: '📜 Bloom Docs - Server Importer' + description: > + Check out our comprehensive guide on our Server Importer feature - + An easy way to import your server files from your old host. Details + [here](https://docs.bloom.host/server-importer). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://docs.bloom.host/assets/images/1-f63d21b5dd3fbb0392aa5c30a55e6650.png' + +importdatabase: + aliases: + - 'importdatabases' + - 'importdb' + - 'databaseimport' + - 'databasetransfer' + title: '📜 Bloom Docs - How to import databases' + description: |+ + Check out our comprehensive guide on how to import databases. + Details [here](https://docs.bloom.host/databases#importing-mysql-databases). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://docs.bloom.host/assets/images/3-c203038839d42eb177a6608cf37bcae6.png' + +panel: + aliases: + - 'basiccontrols' + - 'bc' + title: '📜 Bloom Docs - Duck Panel' + description: > + Check out our showcase of the Duckpanel + [here](https://Bloom.host/duck-panel) and our in-depth documentation of it + [here](https://docs.bloom.host/basic-controls/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/I5X0x8.png' + +upgrade: + aliases: + - 'upgrades' + - 'downgrade' + - 'downgrades' + - 'transfers' + title: '📜 Plan upgrades, downgrades and location changes can now be done through the billing panel' + description: |+ + To request a plan upgrade, downgrade or a change of location go to the Products section of our billing panel [here](https://billing.bloom.host/clientarea.php?action=services), sign in with your Billing Account, click the three dots to the right side of the Product you want to upgrade, then select the Upgrade/Downgrade button. + + On the upgrade page you will be able to select to what location and plan you want to upgrade/downgrade to, here you can also switch between datacenter locations. Once you select the plan it will generate an invoice (if needed) which needs to be paid before the upgrade and transfer process begins. + + **If you want to upgrade/downgrade a VPS or downgrade to a Minecraft Essentials plan open a Billing Ticket [here](https://billing.bloom.host/clientarea.php?action=services)** + + Read more about how upgrades work [here](https://docs.bloom.host/billing/upgrades/#transfers). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/upgrade.png' + buttons: + - [ 'Products page', 'https://billing.bloom.host/clientarea.php?action=services', ':bloom:' ] + +documentation: + aliases: + - 'docs-link' + - 'doc-link' + - 'docs' + title: '📜 Bloom Docs' + description: |+ + Check out our documentation [here](https://docs.bloom.host). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/docs.png' + +schedules: + aliases: [ 'schedule' ] + title: '📜 Bloom Docs - Schedules' + description: > + Check out our comprehensive guide on scheduling actions using the + Duckpanel [here](https://docs.bloom.host/schedules). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/rgabRH.png' + +sftp: + aliases: [ 'ftp' ] + title: '📜 Bloom Docs - SFTP' + description: > + Check out our comprehensive guide on using file transfer protocol + applications [here](https://docs.bloom.host/sftp). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/6IBNVE.png' + +emailchange: + aliases: + - 'email' + - 'changemail' + - 'emailaddress' + - 'changemailaddress' + title: '📜 Bloom Docs - How to change your email address' + description: > + Check out our comprehensive guide that shows you how to change your + email address [here](https://docs.bloom.host/billing/email_change). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/billing/email_change/2.png' + +subusers: + aliases: + - 'users' + - 'sb' + - 'subuser' + title: '📜 Bloom Docs - Subusers' + description: > + Check out our comprehensive guide on subusers + [here](https://docs.bloom.host/users). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ARyhBo.png' + +database: + aliases: + - 'databases' + - 'mysql' + title: '📜 Bloom Docs - MySQL' + description: > + Check out our comprehensive guide on MySQL databases + [here](https://docs.bloom.host/databases/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZAYTsz.png' + +revproxy: + aliases: + - 'reverseproxy' + - 'rp' + title: '📜 Bloom Docs - Reverse-Proxy' + description: > + Check out our comprehensive guide on reverse-proxying web + applications [here](https://docs.bloom.host/ports-and-proxies/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZIT9nf.png' + +split: + aliases: + - 'splitserver' + - 'serversplit' + title: '📜 Bloom Docs - Split Servers' + description: > + Check out our comprehensive guide on server splitting + [here](https://docs.bloom.host/split-server/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/xLXWBT.png' + +filemanager: + aliases: + - 'files' + - 'file' + - 'manager' + title: '📜 Bloom Docs - File Manager' + description: > + Check out our comprehensive guide on our built-in file manager + [here](https://docs.bloom.host/file-manager-controls/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/twkYen.png' + +backup: + aliases: [ 'backups' ] + title: '📜 Bloom Docs - Backups' + description: > + Check out our comprehensive guide on automatic and manual backups + [here](https://docs.bloom.host/backups/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/8K5up1.png' + +vnc: + title: '📜 Bloom Docs - VNC' + description: > + Check out our comprehensive guide on how to connect via VNC + [here](https://docs.bloom.host/VPS/vnc/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + +2fa: + title: '📜 Bloom Docs - 2-Factor Authentication' + description: > + Check out our comprehensive guide on how to protect your accounts + with 2FA [here](https://docs.bloom.host/2fa/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/dpomnF.png' + +status: + title: '🌐 Bloom.Host Network Status' + description: > + Check out our nodes status and uptime + [here](https://status.bloom.host)! We also publish node status on + <#742044812177309728> + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/status.png' + +jars: + aliases: + - 'serverjars' + - 'whichjar' + title: '📜 Bloom Docs - Server Jars' + description: > + Check out our comprehensive guide on picking the right server + software [here](https://docs.bloom.host/jars/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/NniDCP.png' + +clumsyloader: + aliases: + - 'bloomloader' + - 'loader' + title: '📜 Bloom Docs - ClumsyLoader' + description: > + Check out our comprehensive guide on using ClumsyLoader + [here](https://docs.bloom.host/extras/clumsyloader)! ClumsyLoader provides + an alternative way to download your server backups to your VPS or computer. + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/extras/clumsyloader/', '❔' ] + +stripe: + title: '📜 Bloom Docs - Stripe Subscriptions' + description: > + Check out our comprehensive guide on how to configure a Stripe + Subscription or how to cancel automatic payments + [here](https://docs.bloom.host/billing/stripe). + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/billing/stripe', '❔' ] + +paypal: + title: '📜 Bloom Docs - PayPal Subscriptions' + description: > + Check out our comprehensive guide on how to configure a PayPal + Subscription or how to cancel automatic payments + [here](https://docs.bloom.host/billing/paypal). + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/billing/paypal', '❔' ] + +suspensions: + aliases: + - 'suspension' + - 'termination' + - 'terminations' + title: '📜 Bloom Docs - Suspensions and Terminations' + description: > + Check out our comprehensive guide on how Suspensions and + Terminations work at Bloom + [here](https://docs.bloom.host/billing/suspensions_and_terminations). + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/billing/suspensions_and_terminations', '❔' ] + +billingsubusers: + aliases: [ 'billingsubuser' ] + title: '📜 Bloom Docs - Billing Subusers' + description: > + Check out our comprehensive guide on how to create billing subusers + [here](https://docs.bloom.host/billing/billing_subusers). + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/billing/billing_subusers', '❔' ] + +cancellation: + aliases: + - 'cancellations' + - 'cancel' + title: '📜 Bloom Docs - Cancellations' + description: > + Check out our comprehensive guide on how to request a service + cancellation [here](https://docs.bloom.host/billing/cancellations). + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/billing/cancellations', '❔' ] + +refunds: + aliases: [ 'refund' ] + title: '📜 Bloom Docs - How to request a refund' + description: > + Check out our comprehensive guide on how to request a refund + [here](https://docs.bloom.host/billing/refunds). + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/billing/refunds', '❔' ] + +fabric: + title: '📜 Bloom Docs - Fabric' + description: > + Check out our comprehensive guide on installing Fabric to your + server [here](https://docs.bloom.host/fabric-setup/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/cTEy1Q.png' + +serverpack: + aliases: [ 'serverpacks' ] + title: '📜 Bloom Docs - Installing a modpack on your server' + description: > + Check out our comprehensive guide on installing Modpacks to your + server [here](https://docs.bloom.host/modpacks/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + +forge: + title: '📜 Bloom Docs - Forge' + description: > + Check out our comprehensive guide on installing Forge to your + server [here](https://docs.bloom.host/forge-setup/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/SylbcQ.png' + +plugins: + aliases: + - 'plugin' + - 'spigotplugins' + - 'bukkitplugins' + - 'paperplugins' + title: '📜 Bloom Docs - Spigot Plugins' + description: > + Check out our comprehensive guide on installing Spigot Plugins + [here](https://docs.bloom.host/installing-plugins/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/Y9KelU.png' + +servermods: + aliases: + - 'servermod' + - 'fabricmods' + - 'fabricmod' + - 'forgemods' + - 'forgemod' + title: '📜 Bloom Docs - Server Mods' + description: > + Check out our comprehensive guide on installing Forge or Fabric + mods [here](https://docs.bloom.host/mods-install/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/wHrhIR.png' + +optimization: + aliases: + - 'optimize' + - 'lowtps' + - 'optimisation' + - 'optimise' + title: '📜 Bloom Docs - Server Optimizations' + description: > + Check out our comprehensive guide on server optimizations + [here](https://docs.bloom.host/optimization/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/FcHN3O.png' + +domain: + aliases: [ 'ip' ] + title: '📜 Bloom Docs - Domain' + description: > + Check out our comprehensive guide on connecting your server with + your domain [here](https://docs.bloom.host/domain/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/97nYMU.gif' + +resourcepack: + aliases: + - 'texturepack' + - 'serverpack' + - 'serverresource' + title: '📜 Bloom Docs - Server-Side Resourcepack' + description: > + Check out our comprehensive guide on installing a server-side + resourcepack [here](https://docs.bloom.host/resourcepack/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/K3v1x4.png' + +java: + aliases: [ 'jvm' ] + title: '📜 Bloom Docs - Java Version' + description: > + Check out our comprehensive guide on changing your server's Java + version [here](https://docs.bloom.host/java-version/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/a0Oz1b.png' + +java17: + aliases: [ 'jvm17' ] + title: '📜 Minecraft 1.18+ needs Java 17' + description: |+ + The new release of Minecraft 1.18 needs Java 17. + + You can change your Java version by going to the startup tab and selecting Java 17 under the Java Version section. You can see our comprehensive guide on changing your server's Java version [here](https://docs.bloom.host/java-version/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/java.png' + +emergencyrestore: + title: '📜 Bloom Docs - Emergency Restores' + aliases: + - 'emergencyrestores' + - 'emergencybackup' + - 'emergencybackups' + description: |+ + We have emergency node backups we can restore your server from. + + The first emergency restore is free, but after that is $5 each one. + + Please open a ticket on our [billing panel](https://billing.bloom.host/supporttickets.php) requesting the emergency restore. In the ticket include the server ID and the approximate time you want your server restored to, please write the time in UTC, you can use [Dateful](https://dateful.com/time-zone-converter) to convert timezones. + + Emergency restores are done manually, so it can take us up to 24 hours to process the restore. + + In the future please make use of our backup system, it's free and you can schedule backups. Take a look at how our backup system works here: [How are backups handled?](https://docs.bloom.host/backups) + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + +datapack: + aliases: [ 'datapacks' ] + title: '📜 Bloom Docs - Datapacks' + description: > + Check out our comprehensive guide on installing datapacks to your + server [here](https://docs.bloom.host/datapacks/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/Qryijp.png' + +timings: + aliases: [ 'timing' ] + title: '📜 Bloom Docs - Timings' + description: > + Check out our comprehensive guide on creating a timings report to + debug TPS issues on your server [here](https://docs.bloom.host/timings/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZX46Vs.png' + +motd: + title: '📜 Bloom Docs - MOTD' + description: > + Check out our comprehensive guide on how to change your server's + message of the day [here](https://docs.bloom.host/motd/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/swkTMA.png' + +reset: + aliases: + - 'resetworld' + - 'worldreset' + title: '📜 Bloom Docs - World Reset' + description: > + Check out our comprehensive guide on how to reset your world + [here](https://docs.bloom.host/world-reset/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/dCHgqO.gif' + +caddy: + aliases: + - 'caddysplit' + - 'caddyserver' + title: '📜 Bloom Docs - Caddy Split Server' + description: |+ + Check out our comprehensive guide on how to split your server into a Caddy Server [here](https://docs.bloom.host/other-servers/caddy-server)! + + As Caddy is an unsupported server split (which means you will not receive any support from staff), you can ask for community help in <#737803938430189678>! + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://caddyserver.com/resources/images/caddy-open-graph.jpg' + +ark: + title: '📜 Bloom Docs - How to create an ARK: Survival Evolved server' + description: |+ + Check out our comprehensive guide on how to create an ARK: Survival Evolved + server [here](https://docs.bloom.host/other-servers/ark)! + + As ARK: Survival Evolved is an unsupported server split (which means you will not receive any support from staff for in game issues), you can ask for community help in <#737803938430189678>! + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://cdn1.epicgames.com/ark/offer/EGS_ARKSurvivalEvolved_StudioWildcard_S1-2560x1440-c316afb7c33a9dfb892eef6b99169e43.jpg' + +plan: + title: '📜 Bloom Docs - Plan' + description: > + Check out our comprehensive guide on how to install Plan - Player + Analytics [here](https://docs.bloom.host/multiplatform/plan/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + +icon: + title: '📜 Bloom Docs - Server Favicon' + aliases: [ 'favicon' ] + description: > + Check out our comprehensive guide on how to add a favicon to your + server [here](https://docs.bloom.host/icon/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/swkTMA.png' + +codes: + aliases: + - 'promo' + - 'coupon' + title: '💳 Promo Codes' + colour: '#feab33' + description: |+ + ### Here are the current active promo codes: + - `TRAILS&TALES`: 15% off the first Minecraft or VPS plan (expires ) + - `PERFPLUSME`: 20% off your first Performance Plus plan + buttons: + - [ 'Create Your Server Now', 'https://bloom.host/', '🎉' ] + +# ┌─────────────────┐ +# │ Internal Embeds │ +# └─────────────────┘ +# These embeds are sent only by the bot for specific commands or events + +# Sent for any sort of generic error +# Placeholders: %errormessage% +error: + enabled: false + title: '<:cross:1107368090230067220> Error: %errormessage%' + colour: '#dd2e44' + +# Sent when a command is missing some arguments +# Placeholders: %errormessage%, %usage% +error-usage: + enabled: false + title: '<:ex:849551085793837067> Error: %errormessage%' + description: 'Usage: `%usage%`' + colour: '#dd2e44' + +# Sent when a main-server-only command is executed on the waitlist server +server: + enabled: false + title: '<:ex:849551085793837067> Error: this command can only be used on the main discord server!' + colour: '#dd2e46' + buttons: + - [ 'Join Server', 'https://discord.gg/bloom', '🔗' ] + +# Sent for any successful action +# Placeholders: %successmessage% +success: + enabled: false + title: '<:greencheckmark:1107368128570216488> Success: %successmessage%' + colour: '#77b255' + +# Sent when someone joins the server +# Placeholders: %username%, %usermention%, %membercount% +join: + enabled: false + description: '**<:blobwave:736379131696119860> Welcome, %username%!**' + +# Sent when the user opens a ticket or sends a ticket message outside of support hours +# Placeholders: %time%, %from%, %to%, %timeraw%, %fromraw%, %toraw% +time-warn: + enabled: false + colour: '#ffdc5d' + title: ':warning: Outside standard support hours' + description: |+ + Our standard support hours today are between **%fromraw%** and **%toraw%** + US Eastern (**** and **** local time) + + Current time: **%timeraw%** (**** local) + + Though we are often available outside of these hours, responses may be delayed until support hours resume. + + Please consider using <#737803938430189678> for non-technical issues. + buttons: + - [ 'Use #support-chat', 'https://discord.com/channels/720081782980083813/737803938430189678' ] + +# Sent when the !duck or /duck command is used +# Placeholders: %link% +duck: + enabled: false + title: '<:blobcheer:762884190210621440> Here''s your random duck!' + image: '%link%' + buttons: + - [ 'Original Image', '%link%', '🔗', "3" ] + +# Sent when the !unsupported or /unsupported command is used +# Placeholders: %eggs% +# Custom data: line-format (%egg%) +unsupported: + enabled: false + title: 'List of Unsupported Games' + description: |+ + These games can be used on your Bloom server, but no support is given when + using them: + + %eggs% + footer: 'Suggest a software to be added: !suggest ' + custom-data: + line-format: '- %egg%' + +# Sent when the !modpacks or /modpacks command is used +# Placeholders: %modpacks% +# Custom data: line-format (%modpack%) +modpacks: + enabled: false + aliases: + - 'modpacklist' + title: 'List of Modpacks' + description: '%modpacks%' + footer: 'Suggest a pack to be added: !suggest ' + buttons: + - [ 'Full List', 'https://bloom.host/modpacks/', '🔗' ] + custom-data: + line-format: '- %modpack%' + +# Sent when the !claims command is used +# Placeholders: %time%, %lines%, %total%, %unclaimed% +claims: + enabled: false + colour: '#ffcc4d' + fields: + - title: '🔗 Claimed Tickets Since `%time%`' + description: |+ + %lines% + ✅ Total regular - %total% + ⚠️ Unclaimed - %unclaimed% + inline: false + +# Sent when a ticket command finishes +# Placeholders: %results% +ticket-command-finished: + enabled: false + title: 'Finished! Results:' + title-icon: '%guildicon%' + description: '%results%' + +# Sent when a ticket command starts +ticket-command-pending: + enabled: false + title: 'Attempting to add users...' + title-icon: '%guildicon%' + +# Sent when a message is translated in a ticket +# Placeholders: %oldtext%, %newtext%, %username%, %usermention%, %userid%, %from%, %fromflag%, %to%, %toflag% +translate-command: + enabled: false + text: '<:translate:989542523464716349> **%username%**: %newtext%' + +# Sent when the !translate command is sent without arguments +# Placeholders: %status% +translation-status: + enabled: false + title: '<:translate:989542523464716349> Translation Status: %status%' + description: Toggle to status with the `!ticket toggle` command! + +# Sent when the /notes list command is used +# Placeholders: %ticketid%, %ticketstatus% +# Custom data: note-format (%id%, %content%, %addedat%, %addedby%) +ticket-notes: + enabled: false + title: 'Ticket #%ticketid% — Notes' + colour: '#ffc710' + description: '%notes%' + custom-data: + note-format: '`#%id%` <@%addedby%>: %content%' + +# Sent when the !stats or /stats command is used +# Placeholders: %totalsuggestions%, %pendingsuggestions%, %approvedsuggestions%, %deniedsuggestions%, %duckcount%, %uptime%, %avgfirstresponse%, %membercount%, %rolecount% +stats-embed: + enabled: false + title: 'Bloom Statistics' + title-icon: '%guildicon%' + footer: 'BloomBot - Bloom.host' + fields: + - title: '📈 Suggestion Statistics' + description: |+ + ```yml + Total: %totalsuggestions% + Pending: %pendingsuggestions% + Approved: %approvedsuggestions% + Denied: %deniedsuggestions% + ``` + inline: false + - title: '🦆 Duck Statistics' + description: |+ + ```yml + Total: %duckcount% + ``` + inline: false + - title: '<:aaaduck:755553395363938344> Guild Statistics' + description: |+ + ```yml + Member Count: %membercount% + Role Count: %rolecount% + ``` + inline: false + - title: '⚙ BloomBot Statistics' + description: |+ + ```yml + Current Uptime: %uptime% + Avg. First Response: %avgfirstresponse% + ``` + inline: false + +# Sent when a panel link is found when a ticket is opened +# Placeholders: %id%, %email%, %servers% +# Custom data owner-emoji, regular-emoji, subuser-prefix, regular-prefix, line-format (%prefix%, %emoji%, %name%, %shortUuid%, %externalParentId%) +panel-link: + enabled: false + title: '🔗 Panel Account Found' + colour: '#FFFFF1' + footer: 'Tickets - Bloom.host' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/line.png' + fields: + - title: 'User Info' + description: |+ + - ID: [%id%](https://mc.bloom.host/admin/users/view/%id%) + - Email: [%email%](https://billing.bloom.host/admin/clients.php?email=%email%) + inline: false + - title: 'Servers' + description: '%servers%' + inline: false + buttons: + - [ 'Unlink Account', 'https://mc.bloom.host/account', '<:unlink:1135289952838615161>' ] + custom-data: + line-format: > + %prefix% %emoji% %name% ([%shortUuid%](https://mc.bloom.host/server/%shortUuid%)) + [[Billing](https://billing.bloom.host/redirect.php?id=%externalParentId%)] + owner-emoji: '💰' + regular-emoji: '🔓' + subserver-prefix: ' -' + regular-prefix: '-' + +# Sent when a suggestion is created or edited +# Placeholders: %suggestion%, %username%, %date%, %suggestionid% +suggestion-embed: + enabled: false + title: '%username%''s Suggestion' + description: '%suggestion%' + thumbnail: '%useravatar%' + footer: 'Suggestion ID: %suggestionid% • %date%' + footer-icon: '%guildicon%' + +# Sent when a suggestion is approved, both in the channel and in the suggestor's DMs +# Placeholders: %username%, %staffname%, %reason%, %status%, %suggestion%, %date%, %upvotes%, %downvotes%, %suggestionid% +approved-suggestion: + enabled: false + title: 'Approved %username%''s Suggestion' + colour: '#77b255' + thumbnail: '%useravatar%' + footer: |+ + Upvotes: %upvotes% - Downvotes: %downvotes% - Suggestion ID: %suggestionid% • %date% + footer-icon: '%guildicon%' + fields: + - title: 'Suggestion' + description: '%suggestion%' + inline: false + - title: 'Reason from %staffname%' + description: '%reason%' + inline: false + +# Sent when a suggestion is denied, both in the channel and in the suggestor's DMs +# Placeholders: %username%, %staffname%, %reason%, %status%, %suggestion%, %date%, %upvotes%, %downvotes%, %suggestionid% +denied-suggestion: + enabled: false + title: 'Denied %username%''s Suggestion' + colour: '#ff0000' + thumbnail: '%useravatar%' + footer: |+ + Upvotes: %upvotes% - Downvotes: %downvotes% - Suggestion ID: %suggestionid% • %date% + footer-icon: '%guildicon%' + fields: + - title: 'Suggestion' + description: '%suggestion%' + inline: false + - title: 'Reason from %staffname%' + description: '%reason%' + inline: false + +# Sent in the transcripts channel and in the user's DMs when a ticket is closed +# Placeholders: %ticketid%, %username%, %usermention%, %claimers%, %staffname%, %staffmention%, %openedat%, %fancyopenedat%, %closedat%, %fancyclosedat%, %reason%, %link% +ticket-close: + enabled: false + title: 'Support Ticket Closed' + colour: '#2ecc70' + footer: 'Tickets - Bloom.host' + description: |+ + :tools: **Reason**: %reason% + :link: **Archive**: [Transcript link here](%link%) + :grey_question: **Ticket ID**: `#%ticketid%` + :duck: **Claimed By:** %claimers% + fields: + - title: 'Opened' + description: |+ + • **By**: %usermention% + • **At**: %fancyopenedat% + inline: true + - title: 'Closed' + description: |+ + • **By**: %staffmention% + • **At**: %fancyclosedat% + inline: true + +# ┌───────────────────────┐ +# │ Ticket Opening Embeds │ +# └───────────────────────┘ +# The following embeds are used by the ticket system when a new ticket is opened. +# Placeholders: %username%, %displayname%, %usermention%, %ticketid% +tickets-default: + enabled: false + title: '🦆 New Ticket' + colour: '#FFFFF1' + description: |+ + Thank you %username% for opening a ticket! We will be with you as + soon as possible. For us to better assist you, please provide your server ID + and a description of your issue. + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/line.png' + footer: 'Tickets - Bloom.host' + +tickets-general: + enabled: false + title: '🦆 Ticket Created' + colour: '#FFFFF1' + description: |+ + Thank you, %username% for opening a ticket! We will be with you as soon as + possible. For us to better assist you, please provide your server ID and a + description of your issue. + + For billing inquiries such as upgrades, downgrades, or refunds, please open a ticket on our billing panel: https://billing.bloom.host/submitticket.php + footer: 'Tickets - Bloom.host' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/line.png' + buttons: + - [ 'Open Billing Ticket', 'https://billing.bloom.host/submitticket.php', '💰' ] + +tickets-billing: + enabled: false + title: '💰 Billing Ticket' + colour: '#fdd888' + description: Thank you %username% for opening a ticket! We will be with you as + soon as possible. In order for us to best assist you, please provide your + server ID and a description of your issue below. + footer: Tickets - Bloom.host + +tickets-minecraft: + enabled: false + title: '⛏️ Minecraft Ticket' + colour: '#3ba55d' + description: |+ + Thank you %username% for opening a ticket! We will be with you as + soon as possible. In order for us to best assist you, please provide your + server ID and a description of your issue below. + footer: 'Tickets - Bloom.host' + +minecraft-ess: + enabled: false + title: 'Minecraft Essentials' + description: |+ + :wave: + Thank you for joining the **Minecraft Essentials** waitlist! + + **Please respond with the following choices:** + ```YAML + Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast), Germany + Size: 4GB, 6GB + ``` + + **Note: selecting multiple options can decrease your wait time significantly.** + You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom + **If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** + +minecraft-perf: + enabled: false + title: 'Minecraft Performance' + description: |+ + :wave: + Thank you for joining the **Minecraft Performance** waitlist! + + **Please respond with the following choices:** + ```YAML + Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast), Germany + Size: 8GB, 12GB, 16GB, 20GB, 24GB, 32GB + ``` + + **Note: selecting multiple options can decrease your wait time significantly.** + You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom + **If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** + +minecraft-perfplus: + enabled: false + title: 'Minecraft Performance+' + description: |+ + :wave: + Thank you for joining the **Minecraft Performance+** waitlist! + + **Please respond with the following choices:** + ```YAML + Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast), Germany, Singapore + Size: 8GB, 12GB, 16GB, 20GB, 24GB, 32GB + ``` + + **Note: selecting multiple options can decrease your wait time significantly.** + You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom + **If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** + +vps-perf: + enabled: false + title: 'VPS Performance' + description: |+ + :wave: + Thank you for joining the **VPS Performance** waitlist! + + **Please respond with the following choices:** + ```YAML + Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast) + Size: 4GB, 8GB, 12GB, 16GB, 20GB, 24GB + ``` + + **Note: selecting multiple options can decrease your wait time significantly.** + You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom + **If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** + +baremetal-waitlist: + enabled: false + title: 'Bare Metal' + description: |+ + :wave: + Thank you for joining the **Bare Metal** wait list! + + **Please respond with which server(s) you are interested in, and one of our staff members will respond shortly to confirm your spot.** + ```YAML + Bare Metal servers available: Ryzen 5 5600X, Ryzen 7 5800X, Ryzen 9 5950X + ``` + + The full specifications of each server can be found on our website at https://bloom.host/bare-metal-dedicated/ where you can also find a list of available add-ons + +vps-perfplus: + enabled: false + title: 'VPS Performance+' + description: |+ + :wave: + Thank you for joining the **VPS Performance+** waitlist! + + **Please respond with the following choices:** + ```YAML + Location: Dallas (US Central), Ashburn (US East), Los Angeles (US West), Miami (US Southeast), Germany, Singapore + Size: 8GB, 12GB, 16GB, 20GB, 24GB + ``` + + **Note: selecting multiple options can decrease your wait time significantly.** + You will receive a ping when your spot is ready. In the mean time feel free to ask us any questions and don't forget to join our main Bloom discord at https://discord.gg/bloom + **If this is a transfer from another Bloom location or a plan upgrade, please provide your Bloom.host Billing Account email address.** + +# ┌─────────────────────┐ +# │ Ticket Panel Embeds │ +# └─────────────────────┘ +# The following embeds are used to post ticket panels +ticket-panel: + enabled: false + title: '🦆 Click the button to open a ticket' + description: |+ + For billing inquiries such as upgrades, downgrades, or refunds, please open + a ticket on our billing panel: https://billing.bloom.host/submitticket.php + + Our standard support hours are between 8AM and 8PM US Eastern, ( and local time), although we are often available outside of these hours, responses may be delayed until support hours resume. + + Please consider using <#737803938430189678> for non-technical issues. + buttons: + - [ 'Open Billing Ticket', 'https://billing.bloom.host/submitticket.php', '💰' ] + +waitlistpanel: + enabled: false + title: 'Join the waitlist' + description: |+ + :white_circle: to join the **Minecraft Essentials** waitlist + :blue_circle: to join the **Minecraft Performance** waitlist + :red_circle: to join the **Minecraft Performance+** waitlist + :green_circle: to join the **VPS Performance** waitlist + :orange_circle: to join the **VPS Performance+** waitlist + :purple_circle: to join the **Bare Metal ** waitlist