From 6cc4c5a88e7c0e71136b4904fd1982dac9b0273b Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 06:51:40 -0700 Subject: [PATCH 01/10] spark + whitelist + internal servers --- embeds.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/embeds.yml b/embeds.yml index 8ef57b0c..0a2de057 100644 --- a/embeds.yml +++ b/embeds.yml @@ -655,6 +655,28 @@ clumsyloader: buttons: - [ 'Open Docs', 'https://docs.bloom.host/extras/clumsyloader/', '❔' ] +whitelist: + aliases: + - 'whitelists' + title: '📜 Bloom Docs - Whitelist' + description: > + Check out our comprehensive guide on using a whitelist + [here](https://docs.bloom.host/whitelist/)! + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/whitelist/', '❔' ] + +internal: + aliases: + - 'internal-servers' + - 'internal-server' + - 'backend' + title: '📜 Bloom Docs - Internal Servers' + description: > + Check out our comprehensive guide on internal servers + [here](https://docs.bloom.host/internal-servers/)! + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/internal-servers/', '❔' ] + stripe: title: '📜 Bloom Docs - Stripe Subscriptions' description: > @@ -855,6 +877,15 @@ 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' +spark: + aliases: [ 'profiler' ] + title: '📜 Bloom Docs - Spark' + description: > + Check out our comprehensive guide on creating a spark profiler to + debug TPS issues on your server [here](https://docs.bloom.host/spark/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/spark/1.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/spark/1.png' + motd: title: '📜 Bloom Docs - MOTD' description: > From f6b779a415e2f51df710c282920b4a1dcc8c2429 Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 06:58:53 -0700 Subject: [PATCH 02/10] Create .yamllint --- .yamllint | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .yamllint diff --git a/.yamllint b/.yamllint new file mode 100644 index 00000000..b0628f9d --- /dev/null +++ b/.yamllint @@ -0,0 +1,10 @@ +extends: default + +rules: + document-start: disable + line-length: + max: 150 + level: warning + trailing-spaces: disable + brackets: + required: false From c88e597a95145a36c9c7fb775e2d665abc850948 Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 06:59:23 -0700 Subject: [PATCH 03/10] use yamllint config --- .github/workflows/embeds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/embeds.yml b/.github/workflows/embeds.yml index d17d57a5..eeb79e6f 100644 --- a/.github/workflows/embeds.yml +++ b/.github/workflows/embeds.yml @@ -15,4 +15,4 @@ jobs: steps: - uses: actions/checkout@v2 - name: Validate YAML file - run: yamllint embeds.yml + run: yamllint -c .yamllint embeds.yml From dd29e01040cff21dcc9bd81e634bcd9341a3882d Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 07:03:15 -0700 Subject: [PATCH 04/10] disable brackets --- .yamllint | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.yamllint b/.yamllint index b0628f9d..e84354f6 100644 --- a/.yamllint +++ b/.yamllint @@ -6,5 +6,4 @@ rules: max: 150 level: warning trailing-spaces: disable - brackets: - required: false + brackets: disable From 1cc4378b180c617eca1c0c87079c4880fd6986bc Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 07:04:52 -0700 Subject: [PATCH 05/10] disable line length --- .yamllint | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.yamllint b/.yamllint index e84354f6..69750c29 100644 --- a/.yamllint +++ b/.yamllint @@ -2,8 +2,6 @@ extends: default rules: document-start: disable - line-length: - max: 150 - level: warning + line-length: disable trailing-spaces: disable brackets: disable From da26ec797d5cbb72964723f46619d62926a55111 Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 07:15:18 -0700 Subject: [PATCH 06/10] fix comma space --- embeds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embeds.yml b/embeds.yml index 0a2de057..80c07b9e 100644 --- a/embeds.yml +++ b/embeds.yml @@ -1406,7 +1406,7 @@ ticket-panel: Please consider using <#737803938430189678> for non-technical issues. buttons: - - [ 'Open Billing Ticket', 'https://billing.bloom.host/submitticket.php', '💰' , '2' ] + - [ 'Open Billing Ticket', 'https://billing.bloom.host/submitticket.php', '💰', '2' ] waitlistpanel: enabled: false From ed03dc87f07043baf4e3a04ae60b9769546b2436 Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 07:30:22 -0700 Subject: [PATCH 07/10] Update .yamllint --- .yamllint | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.yamllint b/.yamllint index 69750c29..f76fe99b 100644 --- a/.yamllint +++ b/.yamllint @@ -5,3 +5,5 @@ rules: line-length: disable trailing-spaces: disable brackets: disable + new-lines: + type: unix From 157d8ede4cff55ee9f6cbf0206b9b8de87afdaf9 Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 10:43:58 -0400 Subject: [PATCH 08/10] dos2unix --- embeds.yml | 2840 ++++++++++++++++++++++++++-------------------------- 1 file changed, 1420 insertions(+), 1420 deletions(-) diff --git a/embeds.yml b/embeds.yml index 80c07b9e..f36854a3 100644 --- a/embeds.yml +++ b/embeds.yml @@ -1,1420 +1,1420 @@ -# 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 - -billing: - aliases: - - 'billingticket' - - '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:732019289741066379>', '1' ] - -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' - -bin: - aliases: - - 'hastebin' - - 'pastebin' - - 'mclogs' - - 'mclo.gs' - - 'paste' - title: 'Log Sharing' - image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/mclogs.png' - description: |+ - Use [mclo.gs](https://mclo.gs), a handy text sharing service! - In the panel, use the `Uploads Logs` button next to the console area, or `Publish on mclo.gs` for config files! - buttons: - - [ 'Open mclo.gs ', 'https://mclo.gs', '🔗' ] - -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' ] - - [ 'Open Minecraft Panel', 'https://mc.bloom.host' ] - - [ 'Open VPS Panel', 'https://vps.bloom.host' ] - -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:732019289741066379>' ] - -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/', '❔' ] - -whitelist: - aliases: - - 'whitelists' - title: '📜 Bloom Docs - Whitelist' - description: > - Check out our comprehensive guide on using a whitelist - [here](https://docs.bloom.host/whitelist/)! - buttons: - - [ 'Open Docs', 'https://docs.bloom.host/whitelist/', '❔' ] - -internal: - aliases: - - 'internal-servers' - - 'internal-server' - - 'backend' - title: '📜 Bloom Docs - Internal Servers' - description: > - Check out our comprehensive guide on internal servers - [here](https://docs.bloom.host/internal-servers/)! - buttons: - - [ 'Open Docs', 'https://docs.bloom.host/internal-servers/', '❔' ] - -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' - -spark: - aliases: [ 'profiler' ] - title: '📜 Bloom Docs - Spark' - description: > - Check out our comprehensive guide on creating a spark profiler to - debug TPS issues on your server [here](https://docs.bloom.host/spark/). - thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/spark/1.png' - image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/spark/1.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: '<:ex:849551085793837067> 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:849551086033698856> 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%', '🔗', '2' ] - -# 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%\n" - -# 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%\n" - -# 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%\n" - -# 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', '💰', '2' ] - -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', '💰', '2' ] - -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 +# 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 + +billing: + aliases: + - 'billingticket' + - '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:732019289741066379>', '1' ] + +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' + +bin: + aliases: + - 'hastebin' + - 'pastebin' + - 'mclogs' + - 'mclo.gs' + - 'paste' + title: 'Log Sharing' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/mclogs.png' + description: |+ + Use [mclo.gs](https://mclo.gs), a handy text sharing service! + In the panel, use the `Uploads Logs` button next to the console area, or `Publish on mclo.gs` for config files! + buttons: + - [ 'Open mclo.gs ', 'https://mclo.gs', '🔗' ] + +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' ] + - [ 'Open Minecraft Panel', 'https://mc.bloom.host' ] + - [ 'Open VPS Panel', 'https://vps.bloom.host' ] + +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:732019289741066379>' ] + +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/', '❔' ] + +whitelist: + aliases: + - 'whitelists' + title: '📜 Bloom Docs - Whitelist' + description: > + Check out our comprehensive guide on using a whitelist + [here](https://docs.bloom.host/whitelist/)! + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/whitelist/', '❔' ] + +internal: + aliases: + - 'internal-servers' + - 'internal-server' + - 'backend' + title: '📜 Bloom Docs - Internal Servers' + description: > + Check out our comprehensive guide on internal servers + [here](https://docs.bloom.host/internal-servers/)! + buttons: + - [ 'Open Docs', 'https://docs.bloom.host/internal-servers/', '❔' ] + +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' + +spark: + aliases: [ 'profiler' ] + title: '📜 Bloom Docs - Spark' + description: > + Check out our comprehensive guide on creating a spark profiler to + debug TPS issues on your server [here](https://docs.bloom.host/spark/). + thumbnail: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/spark/1.png' + image: 'https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/spark/1.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: '<:ex:849551085793837067> 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:849551086033698856> 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%', '🔗', '2' ] + +# 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%\n" + +# 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%\n" + +# 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%\n" + +# 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', '💰', '2' ] + +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', '💰', '2' ] + +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 From 7f17f3500983af8801a134ba2d0ebb7670f9f78d Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 10:46:43 -0400 Subject: [PATCH 09/10] upgrade v2 to v3 --- .github/workflows/embeds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/embeds.yml b/.github/workflows/embeds.yml index eeb79e6f..88dfb031 100644 --- a/.github/workflows/embeds.yml +++ b/.github/workflows/embeds.yml @@ -13,6 +13,6 @@ jobs: validate-yaml: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Validate YAML file run: yamllint -c .yamllint embeds.yml From 55a2632a18d3cc261135e7cca5084e99b0cb2e41 Mon Sep 17 00:00:00 2001 From: Clumsy <59402569+ClumsyAdmin@users.noreply.github.com> Date: Mon, 28 Aug 2023 11:09:28 -0400 Subject: [PATCH 10/10] er alias --- embeds.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/embeds.yml b/embeds.yml index f36854a3..d349de0e 100644 --- a/embeds.yml +++ b/embeds.yml @@ -847,6 +847,7 @@ emergencyrestore: - 'emergencyrestores' - 'emergencybackup' - 'emergencybackups' + - 'er' description: |+ We have emergency node backups we can restore your server from.