forked from Bloom-host/BloomDocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
embeds.toml
1073 lines (921 loc) · 51.6 KB
/
embeds.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Pre-Defined Embed Messages.
# For more information and detailed settings please check:
# https://gist.github.com/NotGeri/cb11552ab7a12e20ab495a20826c341f
[billing]
text = "https://billing.bloom.host"
[billing.buttons]
1 = ["Billing Ticket", "https://billing.bloom.host/"]
[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 = true
description= """
Simple Voice Chat is an easy-to-use and reliable in-game voice chat modification and plugin for Minecraft servers.
"""
[voicechat.buttons]
a = ["Website", "https://modrepo.de/minecraft/voicechat/wiki/?t=setup"]
b = ["CurseForge", "https://www.curseforge.com/minecraft/mc-mods/simple-voice-chat/"]
c = ["Bukkit", "https://dev.bukkit.org/projects/simple-voice-chat"]
d = ["Docs", "https://docs.bloom.host/multiplatform/simple-voice-chat/"]
[demo]
aliases = ["demopanel"]
title = "<:aaaduck:755553395363938344> Bloom.host Demo Panel"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/demo.png"
description = """
Check out our demo panel with all the Duck panel's features and looks!
"""
[demo.buttons]
1 = ["Open Demo", "https://demo.bloom.host", "<:aaaduck:755553395363938344>"]
[update118]
aliases = ["1.18"]
colour = "#926cd1"
title = "1.18 - Caves & Cliffs Part II"
title-icon = true
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/OcDKml.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tT9ujN.jpg"
description = """
With the release of 1.18, the second part of the Caves & Cliffs, servers will have to be **__updated to Java 17__**.
Due to this change, some plugins may be **incompatible** and may **require an update**.
For more information about updating your server to the second part of the Caves & Cliffs update, be sure to check out our **comprehensive guide** on updating to 1.18 **[here](https://docs.bloom.host/1.18)**!
"""
[update118.fields]
1 = ["Available Software", """
:white_check_mark: Vanilla - Download [here](https://www.minecraft.net/en-us/download/server)!
:white_check_mark: Spigot - Download [here](https://www.spigotmc.org/threads/9-years-of-spigotmc-spigot-bungeecord-1-18.534760/)!
:white_check_mark: Paper - Download [here](https://papermc.io/downloads#Paper-1.18)
:white_check_mark: Purpur - Download [here](https://purpurmc.org/downloads?v=1.18)
:white_check_mark: Forge - Download [here](https://files.minecraftforge.net/net/minecraftforge/forge/)
:white_check_mark: Fabric - Download [here](https://fabricmc.net/use/installer/)
These first 1.18 releases will be unstable and can have performance issues. Please make sure to create a backup before upgrading your server.
""", "false"]
[updating]
aliases = ["update", "changeversion", "changingversions", "changingjar", "changingjars"]
title = "📜 How to update, change versions or change server jar"
description = "Check out our comprehensive guide on how to update, change versions or server jar [here](https://docs.bloom.host/updating/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/running_a_server/updating/1.png"
[exploit]
title = "📜 SEVERE EXPLOIT FOUND ON MINECRAFT"
aliases = ["exploit2"]
description = "We have published documentation about the severe exploit that was recently discovered. You can find instructions on how to update and patch the exploit [here](https://docs.bloom.host/exploitfix/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
[applyexploitfix]
title = "📜 How to apply the exploit fix"
aliases = ["applyfix", "exploitfix", "fixexploit"]
description = "We have updated the panel to add a one-click exploit fix for Minecraft versions 1.12 - 1.16, versions 1.17+ already have the flag applied. **All Minecraft versions should update to the last stable version and build to fix the exploit**. To apply the fix, just go to the settings tab of your server and click on **Minecraft Versions 1.12 - 1.16** under the **FIX MINECRAFT LOG4J VULNERABILITY**. If for any reason you need to remove this flag or your server doesn't start after applying the fix, you can click on the **Remove** button."
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/exploitfix2.png"
[bungeeguard]
title = ":warning: Bloom Docs - BungeeGuard"
description = "Check out our comprehensive guide on BungeeGuard [here](https://docs.bloom.host/plugins/bungeeguard/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZvaY5o.png"
[paper]
aliases = ["papermc"]
title = "PaperMC"
description = """
PaperMC is a fork of Spigot that aims to improve server performance, security, and gameplay consistency. It's generally the most popular and recommended fork among the MC community, meeting the needs of most MC servers out there.
PaperMC is compatible with every plugin that works on Spigot (except outdated ones, you shouldn't be using these either way), and even improves performance on some optimized plugins meant to work better on Paper.
"""
thumbnail = "https://avatars.githubusercontent.com/u/7608950"
[paper.fields]
1 = ["Links", """
• [PaperMC Downloads](https://papermc.io/downloads)
• [PaperMC Discord Server](https://discord.gg/papermc)
• [GitHub Repository](https://github.com/PaperMC/Paper/)
""", "false"]
[aikar]
aliases = ["flags", "flag", "aikars"]
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 [Aikar's in-depth post](https://aikar.co/2018/07/02/tuning-the-jvm-g1gc-garbage-collector-flags-for-minecraft/)!
"""
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/gNzJPp.png"
[contribute]
aliases = ["contribute-docs"]
title = "Contribute to our Documentation!"
description = """
Most of our documentation have been written by our community. You can contribute too! Fork the documentation repository or write an article in PDF or on a Word document and send it to us through a support ticket and we will add it.
🔗 Wish to know more? Check out [How to contribute to our documentation](https://docs.bloom.host/extras/contributing)!
"""
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/documentation.png"
[fbi]
aliases = ["fbimeme"]
text = "https://i.clumsy.host/fbi.mp4"
[fbiinfo]
aliases = ["offlinemode", "blackspigot", "piracyisbad", "crackedserver", "cracked"] # Cracked servers are offline-mode servers without a valid online-mode proxy
title = "🚫 Piracy Is Bad"
colour = "#dd2e44"
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/85dAco.png"
description = "In case you are doing any of the following, you will __not recieve any support__ from Bloom community, staff members, most plugin developers and server/proxy software staff."
enabled = false
[fbiinfo.fields]
1 = ["<:warn:849551085873135657> Cracked Servers", "Using offline-mode on servers bypasses Mojang's authentication system entirely meaning there are __countless security exploits__ people can use. This feature is meant to be used for developers and proxies. (In case you *are* using an online-mode proxy, you seriously need to check your configuration - See `!security`)", "false"]
2 = ["🏴☠ Pirated Software", "Using any kind of software obtained from unofficial sites such as BlackSpigot has a high chance of containing viruses, force-op and more. If you wish to use Premium software, pay for it. ", "false"]
[winmtr]
aliases = ["ping", "network", "mtr"]
title = "Diagnosing Connection Issues"
description = "*MTR probes routers on the route path by limiting the number of hops individual packets may traverse, and listening to responses of their expiry.*"
footer = "BloomBot - Bloom.host"
footer-icon = true
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/G7k4om.png"
[winmtr.fields]
1 = ["<:windows:849551086158741524> Windows", """
You can use a software such as [WinMTR](https://sourceforge.net/projects/winmtr/).
**1**. Click the link and download the application
**2**. Extract the downloaded archive and open the folder.
**3**. Start the `WinMTR.exe` file and enter your server's IP address in the 'host' field.
**4**. Click start and let it run for at least a minute.
**5**. Take a screenshot of the results so we can analyze your route.
""", "false"]
2 = ["<:apple:849551086028849152> Other Operating Systems", """
In case you are using another operating system such as macOS or Linux, be sure to let us know we'll guide you through the process!
""", "false"]
[grafana]
aliases = ["unifiedmetrics", "prom", "prometheus", "metrics"]
title = "<:grafana:870895629507903499> Grafana"
description = "Setup Grafana, Prometheus, and UnifiedMetrics so you can have more stats about your minecraft server, which couldn't be done without our lovely server splitter :) Guide located [here](https://docs.bloom.host/extras/grafana/)."
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/grafana.png"
[bin]
aliases = ["hastebin", "pastebin", "logs"]
title = "Bloom Bin"
description = "Bloom has their own hastebin called Bloom Bin! Check it out [here](https://bin.Bloom.host)!"
[vps]
title = "VPS - Virtual Private Servers"
description = """Our VPS plans come with a bare Linux command line installation. This means that you will not be able to use our personalized Minecraft control panel and you will need Linux command line experience to be able to manage your VPS. VPS plans are unmanaged and support for configuring and managing the server isn't provided.
If you don't have any experience with Linux we recommend you go with our [Minecraft plans](https://bloom.host/minecraft).
Are you new to VPS? Check out our [Get Started with VPS guide](https://docs.bloom.host/VPS/starting-with-vps)!
"""
[waitlist]
aliases = ["wl"]
title = "About the Waitlist"
description = """
To enter the Bloom.host waitlist, follow these steps
**1.** Join the Waitlist Discord server [here](https://Bloom.host/waitlist).
**2.** Create a ticket and let us know what plan/location you want to wait for.
**3.** When it's your turn, you'll be pinged in your ticket. You have 24 hours to respond, otherwise, you lose your spot in line.
**4.** Transfer or purchase your server!
Thanks again for your interest in our plans!
"""
[rate]
aliases = ["support"]
title = "Rate Bloom.host!"
description = "If you're having a good experience with Bloom.host, rate us!"
[rate.fields]
1 = ["Links", """
• [Trustpilot](https://www.trustpilot.com/review/bloomvps.com)
• [MC Market (VPS)](https://www.mc-market.org/threads/601576/)
• [MC Market (Minecraft)](https://www.mc-market.org/threads/612586/)
• [Admincraft Marketplace](https://www.reddit.com/r/admincraft/comments/mi0bjj/admincraft_marketplace_q2_2021/gt30cgl/)
""", "false"]
[chunky]
title = "Chunky"
title-icon = true
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.
"""
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/chunky.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/8ytho7.png"
[chunky.fields]
1 = ["⭐ Chunky", """
• [Spigot Page](https://www.spigotmc.org/resources/chunky.81534/)
• [GitHub Repository](https://github.com/pop4959/Chunky/)
• [Support Server](https://discord.gg/ZwVJukcNQG)
""", "false"]
2 = ["🌍 ChunkyBorder", """
An add-on for Chunky which lets you create and manage custom world borders.
• [Spigot Page](https://www.spigotmc.org/resources/chunkyborder.84278/)
• [GitHub Repository](https://github.com/pop4959/ChunkyBorder)
• [Support Server](https://discord.gg/ZwVJukcNQG)
""", "false"]
[velocity]
aliases = ["velo"]
title = "Velocity"
description = """
Velocity is a next-generation Minecraft proxy focused on scalability and flexibility created by the initial developer of Waterfall and RedisBungee. Velocity uses less CPU and RAM, leaving more resources for your server. Velocity also features modern forwarding, leaving your back-end servers safe.
Check out our comprehensive guide on Velocity [here](https://docs.bloom.host/velocity).
**Velocity is not a BungeeCord fork, BungeeCord plugins will not work unless stated that they do.**
"""
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/velocity.png"
[velocity.fields]
1 = ["Links", """
• [Velocity](https://velocitypowered.com)
• [GitHub Repository](https://github.com/VelocityPowered/Velocity/)
""", "false"]
[security]
aliases = ["proxysecurity"]
title = "✅ Secure Your Servers"
footer = "BloomBot - Bloom.host"
colour = "#77b255"
[security.fields]
1 = ["Using BungeeCord/Waterfall", """
When using a proxy software such as BungeeCord or Waterfall, make sure:
• `online-mode=` is set to `false` in server.properties
• `bungeecord:` is set to `true` in spigot.yml
• you have BungeeGuard installed (!`bungeeguard`) or have backends firewalled off.
""", "false"]
2 = ["Using Velocity with modern forwarding","""
When using Velocity with using modern forwarding as your proxy, make sure:
• `online-mode=` is set to `false` in server.properties
• `bungeecord:` is set to `false` in spigot.yml
• `enabled:` and `online-mode` under `velocity-support` is set to true in paper.yml
• `secret` under `velocity-support` is set to Velocity's `forwarding-secret` setting. Both of these must be exactly the same or you will be unable to connect to your server!
""", "false"]
3 = ["Using Velocity with BungeeGuard forwarding","""
When using Velocity with BungeeGuard forwarding as your proxy, make sure:
• `online-mode=` is set to `false` in server.properties
• `bungeecord:` is set to `true` in spigot.yml
• `enabled:` under `velocity-support` is set to false in paper.yml – This setting is for Velocity modern forwarding and you will not be able to join your server with both this and bungeecord forwarding enabled!
• you have BungeeGuard installed (!`bungeeguard`) and that your token in the BungeeGuard plugin on the backend servers matches what is set for Velocity's `forwarding-secret` setting or you will be unable to connect to your server!
""", "false"]
[details]
aliases = ["accountdetails", "ad"]
title = "📜 Bloom Docs - Editing Account Details"
description = "Check out our comprehensive guide on editing your accounts' details [here](https://docs.bloom.host/extras/account-details/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
[welcome]
aliases = ["login", "credentials"]
title = "📜 Welcome to Bloom!"
description = """Welcome to Bloom! We are happy to have you!
You can log in into our Minecraft panel using this link: https://mc.bloom.host
**The login credentials for our Minecraft panel are the same you use for your billing account.**
For **Virtual Private Servers (VPS)** you will receive an email with a randomly generated password, IP address and VNC credentials. You can reset the root and VNC password in the VPS control panel.
You can log in into our VPS panel using this link: https://vps.bloom.host
If you don't receive the email, you can click on 'Forgot Password?' and it will sent you a link to configure a new one.
**Remember to join our main Discord server:** https://discord.gg/bloom
"""
[waterfall]
title = "📜 Bloom Docs - Setting up a Waterfall Proxy Server"
description = "Check out our comprehensive guide on Setting up a Waterfall Proxy Server' details [here](https://docs.bloom.host/waterfall)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
[binarysearch]
aliases = ["binary"]
title = "📜 Bloom Docs - Binary Search"
description = "Check out our comprehensive guide on how to do a binary search [here](https://docs.bloom.host/binarysearch)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
[importserver]
aliases = ["import", "importer", "serverimporter", "importserver", "serverimport", "servertransfer"]
title = "📜 Bloom Docs - Server Importer"
description = "Check out our comprehensive guide on our Server Importer feature - An easy way to import your server files from your old host. Details [here](https://docs.bloom.host/server-importer)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://docs.bloom.host/assets/images/1-f63d21b5dd3fbb0392aa5c30a55e6650.png"
[importdatabase]
aliases = ["importdatabases", "importdatabase", "importdb"]
title = "📜 Bloom Docs - Import Databases"
description = "Check out our comprehensive guide on how to import databases. Details [here](https://docs.bloom.host/databases#importing-mysql-databases)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://docs.bloom.host/assets/images/3-c203038839d42eb177a6608cf37bcae6.png"
[panel]
aliases = ["basiccontrols", "bc"]
title = "📜 Bloom Docs - Duck Panel"
description = "Check out our showcase of the Duckpanel [here](https://Bloom.host/duck-panel) and our in-depth documentation of it [here](https://docs.bloom.host/basic-controls/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/I5X0x8.png"
[billingticket]
aliases = ["ticket"]
title = "📜 Upgrades and 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 upgrades and 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"
[upgrade]
aliases = ["upgrades", "downgrade", "downgrades"]
title = "📜 Plan changes need to be requested through the Billing Panel"
description = "To request a plan upgrade or downgrade 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 plan change you want."
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"
[documentation]
aliases = ["docs-link", "doc-link"] # Original 'docs' alias conflicted with a different command
title = "📜 Bloom Docs"
description = "Check out our documentation [here](https://docs.bloom.host)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/docs.png"
[schedules]
aliases = ["schedule"]
title = "📜 Bloom Docs - Schedules"
description = "Check out our comprehensive guide on scheduling actions using the Duckpanel [here](https://docs.bloom.host/schedules)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/rgabRH.png"
[sftp]
aliases = ["ftp"]
title = "📜 Bloom Docs - SFTP"
description = "Check out our comprehensive guide on using file transfer protocol applications [here](https://docs.bloom.host/sftp)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/6IBNVE.png"
[emailchange]
aliases = ["email", "changemail", "emailaddress", "changemailaddress"]
title = "📜 Bloom Docs - How to change your email address"
description = "Check out our comprehensive guide that shows you how to change your email address [here](https://docs.bloom.host/billing/email_change)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/billing/email_change/2.png"
[subusers]
aliases = ["users", "sb"]
title = "📜 Bloom Docs - Subusers"
description = "Check out our comprehensive guide on subusers [here](https://docs.bloom.host/users)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ARyhBo.png"
[database]
aliases = ["databases", "mysql"]
title = "📜 Bloom Docs - MySQL"
description = "Check out our comprehensive guide on MySQL databases [here](https://docs.bloom.host/databases/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZAYTsz.png"
[revproxy]
aliases = ["reverseproxy", "rp"]
title = "📜 Bloom Docs - Reverse-Proxy"
description = "Check out our comprehensive guide on reverse-proxying web applications [here](https://docs.bloom.host/ports-and-proxies/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZIT9nf.png"
[split]
aliases = ["splitserver", "serversplit"]
title = "📜 Bloom Docs - Split Servers"
description = "Check out our comprehensive guide on server splitting [here](https://docs.bloom.host/split-server/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/xLXWBT.png"
[filemanager]
aliases = ["files", "file", "manager"]
title = "📜 Bloom Docs - File Manager"
description = "Check out our comprehensive guide on our built-in file manager [here](https://docs.bloom.host/file-manager-controls/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/twkYen.png"
[backup]
aliases = ["backups"]
title = "📜 Bloom Docs - Backups"
description = "Check out our comprehensive guide on automatic and manual backups [here](https://docs.bloom.host/backups/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/8K5up1.png"
[vnc]
title = "📜 Bloom Docs - VNC"
description = "Check out our comprehensive guide on how to connect via VNC [here](https://docs.bloom.host/VPS/vnc/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
[2fa]
title = "📜 Bloom Docs - 2-Factor Authentication"
description = "Check out our comprehensive guide on how to protect your accounts with 2FA [here](https://docs.bloom.host/2fa/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/dpomnF.png"
[status]
title = "🌐 Bloom.Host Network Status"
description = "Check out our nodes status and uptime [here](https://status.bloom.host)! We also publish node status on <#742044812177309728>"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/status.png"
[jars]
aliases = ["serverjars", "whichjar"]
title = "📜 Bloom Docs - Server Jars"
description = "Check out our comprehensive guide on picking the right server software [here](https://docs.bloom.host/jars/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/NniDCP.png"
[clumsyloader]
aliases = ["bloomloader", "loader"]
title = "📜 Bloom Docs - ClumsyLoader"
description = "Check out our comprehensive guide on using ClumsyLoader [here](https://docs.bloom.host/extras/clumsyloader)! ClumsyLoader provides an alternative way to download your server backups to your VPS or computer."
[clumsyloader.buttons]
1 = ["Open Docs", "https://docs.bloom.host/extras/clumsyloader/", "❔"]
[stripe]
aliases = []
title = "📜 Bloom Docs - Stripe Subscriptions"
description = "Check out our comprehensive guide on how to configure a Stripe Subscription or how to cancel automatic payments [here](https://docs.bloom.host/billing/stripe)."
[stripe.buttons]
1 = ["Open Docs", "https://docs.bloom.host/billing/stripe", "❔"]
[paypal]
aliases = []
title = "📜 Bloom Docs - PayPal Subscriptions"
description = "Check out our comprehensive guide on how to configure a PayPal Subscription or how to cancel automatic payments [here](https://docs.bloom.host/billing/paypal)."
[paypal.buttons]
1 = ["Open Docs", "https://docs.bloom.host/billing/paypal", "❔"]
[suspensions]
aliases = ["suspension", "termination", "terminations"]
title = "📜 Bloom Docs - Suspensions and Terminations"
description = "Check out our comprehensive guide on how Suspensions and Terminations work at Bloom [here](https://docs.bloom.host/billing/suspensions_and_terminations)."
[suspensions.buttons]
1 = ["Open Docs", "https://docs.bloom.host/billing/suspensions_and_terminations", "❔"]
[billingsubusers]
aliases = ["billingsubuser"]
title = "📜 Bloom Docs - Billing Subusers"
description = "Check out our comprehensive guide on how to create billing subusers [here](https://docs.bloom.host/billing/billing_subusers)."
[billingsubusers.buttons]
1 = ["Open Docs", "https://docs.bloom.host/billing/billing_subusers", "❔"]
[cancellation]
aliases = ["cancellations"]
title = "📜 Bloom Docs - Cancellations"
description = "Check out our comprehensive guide on how to request a service cancellation [here](https://docs.bloom.host/billing/cancellations)."
[cancellations.buttons]
1 = ["Open Docs", "https://docs.bloom.host/billing/cancellations", "❔"]
[refunds]
aliases = ["refund"]
title = "📜 Bloom Docs - How to request a refund"
description = "Check out our comprehensive guide on how to request a refund [here](https://docs.bloom.host/billing/refunds)."
[refunds.buttons]
1 = ["Open Docs", "https://docs.bloom.host/billing/refunds", "❔"]
[fabric]
title = "📜 Bloom Docs - Fabric"
description = "Check out our comprehensive guide on installing Fabric to your server [here](https://docs.bloom.host/fabric-setup/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/cTEy1Q.png"
[modpacks]
aliases = ["modpack", "serverpack", "serverpacks"]
title = "📜 Bloom Docs - Installing a modpack on your server"
description = "Check out our comprehensive guide on installing Modpacks to your server [here](https://docs.bloom.host/modpacks/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
[forge]
title = "📜 Bloom Docs - Forge"
description = "Check out our comprehensive guide on installing Forge to your server [here](https://docs.bloom.host/forge-setup/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/SylbcQ.png"
[plugins] # Refers to Bukkit/Spigot/Paper plugins
aliases = ["plugin", "spigotplugins", "bukkitplugins", "paperplugins"] # Bukkit, Spigot and Paper
title = "📜 Bloom Docs - Spigot Plugins"
description = "Check out our comprehensive guide on installing Spigot Plugins [here](https://docs.bloom.host/installing-plugins/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/Y9KelU.png"
[fabricmods]
aliases = ["fabricmod"]
title = "📜 Bloom Docs - Fabric Mods"
description = "Check out our comprehensive guide on installing Fabric Mods [here](https://docs.bloom.host/fabric-mods/)."
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"
[forgemods]
aliases = ["forgemod"]
title = "📜 Bloom Docs - Forge Mods"
description = "Check out our comprehensive guide on installing Forge Mods [here](https://docs.bloom.host/forge-mods/)."
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/y3ISVE.png"
[optimization]
aliases = ["optimize", "lowtps", "optimisation", "optimise"] # 'optimisation' and 'optimise' are British English spelling
title = "📜 Bloom Docs - Server Optimizations"
description = "Check out our comprehensive guide on server optimizations [here](https://docs.bloom.host/optimization/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/FcHN3O.png"
[domain]
aliases = ["ip"]
title = "📜 Bloom Docs - Domain"
description = "Check out our comprehensive guide on connecting your server with your domain [here](https://docs.bloom.host/domain/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/97nYMU.gif"
[resourcepack]
aliases = ["texturepack", "serverpack", "serverresource"]
title = "📜 Bloom Docs - Server-Side Resourcepack"
description = "Check out our comprehensive guide on installing a server-side resourcepack [here](https://docs.bloom.host/resourcepack/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/K3v1x4.png"
[java]
aliases = ["jvm"]
title = "📜 Bloom Docs - Java Version"
description = "Check out our comprehensive guide on changing your server's Java version [here](https://docs.bloom.host/java-version/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/a0Oz1b.png"
[java17]
aliases = ["jvm17"]
title = "📜 Minecraft 1.18+ needs Java 17"
description = """
The new release of Minecraft 1.18 needs Java 17.
You can change your Java version by going to the startup tab and selecting Java 17 under the Java Version section. You can see our comprehensive guide on changing your server's Java version [here](https://docs.bloom.host/java-version/).
"""
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/java.png"
[emergencyrestore]
title = "📜 Bloom Docs - Emergency Restores"
aliases = ["emergencyrestores", "emergencybackup", "emergencybackups"]
description = """
We have emergency node backups we can restore your server from.
The first emergency restore is free, but after that is $5 each one.
Please open a ticket on our [billing panel](https://billing.bloom.host/supporttickets.php) requesting the emergency restore. In the ticket include the server ID and the approximate time you want your server restored to, please write the time in UTC, you can use [Dateful](https://dateful.com/time-zone-converter) to convert timezones.
Emergency restores are done manually, so it can take us up to 24 hours to process the restore.
In the future please make use of our backup system, it's free and you can schedule backups. Take a look at how our backup system works here: [How are backups handled?](https://docs.bloom.host/backups)
"""
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
[datapack]
aliases = ["datapacks"]
title = "📜 Bloom Docs - Datapacks"
description = "Check out our comprehensive guide on installing datapacks to your server [here](https://docs.bloom.host/datapacks/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/Qryijp.png"
[timings]
aliases = ["timing"]
title = "📜 Bloom Docs - Timings"
description = "Check out our comprehensive guide on creating a timings report to debug TPS issues on your server [here](https://docs.bloom.host/timings/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/ZX46Vs.png"
[motd]
title = "📜 Bloom Docs - MOTD"
description = "Check out our comprehensive guide on how to change your server's message of the day [here](https://docs.bloom.host/motd/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/swkTMA.png"
[reset]
aliases = ["resetworld", "worldreset"]
title = "📜 Bloom Docs - World Reset"
description = "Check out our comprehensive guide on how to reset your world [here](https://docs.bloom.host/world-reset/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/dCHgqO.gif"
[caddy]
aliases = ["caddysplit", "caddyserver"]
title = "📜 Bloom Docs - Caddy Split Server"
description = "Check out our comprehensive guide on how to split your server into a Caddy Server [here](https://docs.bloom.host/extras/caddy-server/)!\nAs Caddy is an unsupported server split (which means you will not receive any support from staff), you can ask for community help in <#737803938430189678>!"
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://caddyserver.com/resources/images/caddy-open-graph.jpg"
enabled = true
[plan]
title = "📜 Bloom Docs - Plan"
description = "Check out our comprehensive guide on how to install Plan - Player Analytics [here](https://docs.bloom.host/multiplatform/plan/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
[icon]
title = "📜 Bloom Docs - Server Favicon"
aliases = ["favicon"]
description = "Check out our comprehensive guide on how to add a favicon to your server [here](https://docs.bloom.host/icon/)."
thumbnail = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/tY6IAF.png"
image = "https://raw.githubusercontent.com/Bloom-host/BloomDocs/master/static/imgs/discord/swkTMA.png"
# ┌────────────────┐
# │ Interal Embeds │
# └────────────────┘
# Please do note that you'll still have to specify "enabled = false"
# to disable them from !docs and their usage as a command. (for example !error)
# Most of these have special placeholders.
# All placeholders should be pretty self-explanatory:
# - duck: %link%
# - error: %errormessage%
# - success: %successmessage%
# - suggestion-embed: %username% %suggestion% %suggestionid% %date%
# - approved-suggestion: %username% %suggestion% %suggestionid% %date% %upvotes %downvotes%
# - denied-suggestion: %username% %suggestion% %suggestionid% %date% %upvotes% %downvotes%
# - join: %username% %membercount%
# - timewarn: %to% %from% %time%
[duck]
enabled = true
title = "<:blobcheer:762884190210621440> Here's your random duck!"
image = "%link%"
[duck.buttons]
1 = ["Original Image", "%link%", "🔗"]
[server]
enabled = false
title = "<:ex:849551085793837067> Error: his command can only be used on the main discord server!"
colour = "#dd2e46"
[server.buttons]
1 = ["Join Server", "https://discord.gg/bloom", "🔗"]
[error]
enabled = false
title = "<:ex:849551085793837067> Error: %errormessage%"
colour = "#dd2e44"
[error-usage]
enabled = false
title = "<:ex:849551085793837067> Error: %errormessage%"
description = "Usage: `%usage%`"
colour = "#dd2e44"
[success]
enabled = false
title = "<:check:849551086033698856> Success: %successmessage%"
colour = "#77b255"
[suggestion-embed]
title = "%username%'s Suggestion"
enabled = false
description = "%suggestion%"
author-thumbnail = true
footer = "Suggestion ID: %suggestionid% • %date%"
footer-icon = true
[approved-suggestion]
title = "Approved %username%'s Suggestion"
colour = "#77b255"
enabled = false
author-thumbnail = true
footer = "Upvotes: %upvotes% - Downvotes: %downvotes% - Suggestion ID: %suggestionid% • %date%"
footer-icon = true
[approved-suggestion.fields]
1 = ["Suggestion", "%suggestion%", "false"]
2 = ["Reason from %staffname%", "%reason%", "false"]
[denied-suggestion]
title = "Denied %username%'s Suggestion"
enabled = false
colour = "#ff0000"
author-thumbnail = true
footer = "Upvotes: %upvotes% - Downvotes: %downvotes% - Suggestion ID: %suggestionid% • %date%"
footer-icon = true
[denied-suggestion.fields]
1 = ["Suggestion", "%suggestion%", "false"]
2 = ["Reason from %staffname%", "%reason%", "false"]
[join]
title = "<:blobwave:736379131696119860> Welcome, %username%!"
enabled = false
author-thumbnail = true
description = """
Welcome to Bloom.host, your source for dedicated Minecraft and VPS hosting!
Make sure to check out <#720099921675681832> to learn more about Bloom.host and read our latest <#720099943460896800>!
For support, check out <#737803938430189678>.
"""
[embedtest]
title = "BloomBot - Contributing"
title-icon = true
enabled = false
footer-icon = true
description = """
If you wish to contribute to <@739984621135069355> without coding knowledge, you can help by creating commands using the TOML format, which is very similar to the more commonly used YAML syntax.
✨ **A Simple Example**
```toml
[test] # <-- This is the name of the command
title = "text"
colour = "#FFFFF1"
description = "text"
```
To test an embed code, simply type `!embedtest <code>` and the bot will try to evaluate and create the embed.
View all properties and an example [here](https://gist.github.com/NotGeri/cb11552ab7a12e20ab495a20826c341f)!
Once you have an embed you like, simply create a pull request by following the [docs](https://docs.bloom.host/extras/contributing#editing-github-stuffs-advanced)!
"""
[embedtest.buttons]
a = ["Open Help Gist", "https://gist.github.com/NotGeri/cb11552ab7a12e20ab495a20826c341f", "🔗"]
b = ["Read Contribrution Docs", "https://docs.bloom.host/extras/contributing#editing-github-stuffs-advanced", "🔗"]
# ┌───────────────┐
# │ Ticket Embeds │
# └───────────────┘
[ticket-panel]
enabled = false
title = "React to open a ticket"
description = """
React to this message with :duck: to open a ticket!
For billing inquiries, please create a ticket through the support section on our billing portal: https://billing.bloom.host
Our standard support hours are between 8AM and 8PM US Eastern, although we are often available outside of these hours. Please consider using <#737803938430189678> for non-technical issues.
"""
[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. 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-general]
enabled = false
title = "🦆 General Ticket"
colour = "#FFFFF1"
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-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), 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
"""
[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), 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
"""
[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), 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
"""
[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)
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
"""
[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), Germany
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
"""
[whitelistpanelthing]
title = "Join the waitlist"
enabled = false
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
"""
[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%`
"""
[ticket-close.fields]
1 = ["Opened", """
• **By**: %usermention%
• **At**: %fancyopenedat%
""", "true"]
2 = ["Closed", """
• **By**: %staffmention%
• **At**: %fancyclosedat%
""", "true"]
[time-warn]
enabled = false
colour = "#ffdc5d"
title = ":wave: Heads up!"
description = """
Our standard support hours today are between %to% and %from% US Eastern. Current time: %time%.
Though we are often available outside of these hours, responses may be delayed until support hours resume.
"""
[time-warn.buttons]
1 = ["Open Billing Ticket", "https://billing.bloom.host", ":moneybag:"]
[claims]
enabled = false
colour = "#ffcc4d"
[claims.fields]
1 = ["🔗 Claimed Tickets Since `%time%`", """
%lines%
✅ Total regular - %total%
⚠️ Unclaimed - %unclaimed%
""", "false"]
# ┌─────────────────┐
# │ Archived Embeds │
# └─────────────────┘
[infoyes]
title = "About US"
title-icon = true
enabled = false
description = """
Our mission is to continue to provide our high-performance game hosting and Virtual Private Servers to both gamers and non-gamers, at affordable and sustainable prices. We only work with top-rated and reliable datacenters and hardware vendors to give you the best performance, up-time, and overall experience. We top all of this off with excellent customer service. At Bloom, we are always improving and listening to feedback. Please contact us with any questions, suggestions, or concerns.
"""
[infoyes.fields]
1 = ["<:discord:881204198442663936> **The Discord**", """
We post announcements, etc here.
```prolog
Administration
```
You can talk about anything in general in these channels.
```prolog
Chit Chat
```
Need help with anything? ask here
```prolog
Support
```
Think of something we can improve on? suggest it here.
```prolog
Suggestions
```
""", "false"]
2 = ["🎖️ Important Roles:", """
<@&720098768057270283> - Our wonderful staff team
<@&803747472589455360> - Someone in the community who is exceedingly active and helpful
<@&739550512990388296> - Discord Boosters ~ Great people :smile:
<@&753366973961863248> - Official Bloom Partners
<@&744415283330154566> - Help out by writing documentation
<@&880083074321350676> - Feature beta testers
<@&732004421348753482> - Customers
<@&732004386133245953> - Members of our discord server ~ also all great people :slight_smile:
""", "false"]
3 = ["📜 Rules", """
```yml
0: Follow Discord TOS
1: Don't advertise >:(
2: Stay on topic
3: Keep away from potentially disturbing posts
4: Be kind and respectful to others
5: No discrimination of any kind (no slurs)
6: Avoid politics and other controversial topics
7: Use common sense
```
""", "false"]
4 = ["❔ Where you can review us / checkout reviews", """
• [Trustpilot](https://www.trustpilot.com/review/bloom.host)
• [Mc Market(VPS)](https://www.mc-market.org/threads/601576/)
• [MC Market(Minecraft)](https://www.mc-market.org/threads/612586/)
• [Admincraft Marketplace](https://www.reddit.com/r/admincraft/comments/mi0bjj/admincraft_marketplace_q2_2021/gt30cgl/)
""", "false"]
[temp-1]
enabled = false
title = "Service Alerts - Toggle Notification"
colour = "#f85102"
description = """
React below with <:aaaduck:755553395363938344> to toggle Minecraft Alerts
React below with :duck: to toggle VPS Alerts
"""
author-thumbnail = false
title-icon = false
footer-icon = false
[temp-2]
enabled = false
title = "Location Alerts - Toggle Notification"
colour = "#f85102"
description = """