generated from discordeno/template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
translate.txt
1587 lines (1586 loc) · 88.6 KB
/
translate.txt
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
"CREATE_INSTANT_INVITE",
"KICK_MEMBERS",
"BAN_MEMBERS",
"ADMINISTRATOR",
"MANAGE_CHANNELS",
"MANAGE_GUILD",
"ADD_REACTIONS",
"VIEW_AUDIT_LOG",
"VIEW_CHANNEL",
"SEND_MESSAGES",
"SEND_TTS_MESSAGES",
"MANAGE_MESSAGES",
"EMBED_LINKS",
"ATTACH_FILES",
"READ_MESSAGE_HISTORY",
"MENTION_EVERYONE",
"USE_EXTERNAL_EMOJIS",
"CONNECT",
"SPEAK",
"MUTE_MEMBERS",
"DEAFEN_MEMBERS",
"MOVE_MEMBERS",
"USE_VAD",
"PRIORITY_SPEAKER",
"STREAM",
"CHANGE_NICKNAME",
"MANAGE_NICKNAMES",
"MANAGE_ROLES",
"MANAGE_WEBHOOKS",
"MANAGE_EMOJIS",
"true",
"false",
"on",
"off",
"Message ID",
"Channel",
"User has lost {{amount}} XP.",
"Too many naughty words!",
"The capitals in that message were too damn high!",
"Sharing URLs is restricted.",
"Capital Spam Detected",
"Profanity Detected: {{words}}",
"URL Detected: {{links}}",
"Automoderation triggered. Message did not comply with the servers settings.",
"Automod: Failed to comply with rules for several reasons.",
"{{username}} requested to view auto-moderated profanity settings.",
"Please hold on while I try my best! `{{role}}`: **{{amount}}** members.",
"I have finished editing a total of {{amount}} members.",
"The role all command was used by {{username}}.",
"Daily Analytics",
"Weekly Analytics",
"Monthly Analytics",
"Total Messages: {{amount}}",
"Members Joined: {{amount}}",
"Members Left: {{amount}}",
"Net Members: {{amount}}",
"Channel Analytics",
"Emojis Analytics",
"Unused Items:",
"Did something go wrong? Need help? Please take a screenshot of the issue and contact me(Skillz) at {{invite}} {{details}}",
"🎖️ Sorry, this is a **VIP feature**. Please join the `Support Server`: discord.gg/J4NqJ72 to learn more about how to get VIP access.",
"Not Available",
"Owner",
"Roles",
"Channels",
"Members",
"Emojis",
"Language",
"Boosts",
"Shard ID",
"User ID",
"Joined On",
"Created On",
"NOW",
"Permissions",
"Administrator",
"Remove spam messages.",
"Via Tenor",
"🔗 Download Link",
"Command: {{name}}",
"Usage",
"Aliases",
"Enabled",
"Disabled",
"ℹ️ Shows the help information for a command.",
"🏓 Shows the response time for the bot.",
"⚠️ This command requires an NSFW channel.",
"⚠️ You do not have the necessary permission to use this command.",
"Bot Server Permissions Required",
"Bot Channel Permissions Required",
"Your Server Permissions Required",
"Your Channel Permissions Required",
"None",
"Want to see all commands? type `{{prefix}}help all`",
"Want to see detailed help for a command? Type `{{prefix}}help (command)`",
"Check out our wiki: https://discordbot.mod.land",
"🏓 **Response Time**: `{{time}}` seconds 🕙",
"🔗 Invite the bot to your server or get help in the support server.",
"Invite The Bot",
"Need Help?",
"🖼️ View the avatar image for a user or the server.",
[
"{{prefix}}avatar",
"{{prefix}}avatar @user",
"{{prefix}}avatar server"
],
"⚙️ Shows important information about your server.",
"Members In Voice Channels",
"Server Features",
"Bot Stats",
"Servers",
"Cached Members",
"Messages",
"Deno Version",
"Uptime",
"Commands",
"👤 View a members information.",
[
"{{prefix}}user",
"{{prefix}}user @user"
],
"Last Active: {{time}}",
"🗨️ Receive random advice in the chat.",
[
"**Take time to know yourself.** `Know thyself` said Aristotle. When you know who you are, you can be wise about your goals, your dreams, your standards, your convictions. Knowing who you are allows you to live your life with purpose and meaning.",
"**A narrow focus brings big results.** The number one reason people give up so fast is because they tend to look at how far they still have to go instead of how far they have come. But it's a series of small wins that can give us the most significant success.",
"**Show up fully.** Don't dwell on the past, and don't daydream about the future, but concentrate on showing up fully in the present moment.",
"**Don't make assumptions.** If you don't know the situation fully, you can't offer an informed opinion.",
"**Be patient and persistent.** Life is not so much what you accomplish as what you overcome.",
"**In order to get, you have to give.** If you support, guide, and lead others, if you make contributions to their lives, you will reap the best rewards.",
"**Luck comes from hard work.** Luck happens when hard work and timing and talent intersect.",
"**Be your best at all times.** You never know what the future will bring, so always make the best use of the present.",
"**Don't try to impress everyone.** The unhappiest people are those who care the most about what other people think.",
"**Don't be afraid of being afraid.** Sometimes the one thing you need for growth is the one thing you are most afraid to do.",
"**Listen to learn. Learn how to listen.** You can't learn anything when you're talking.",
"**Life's good, but it's not fair.** The delusion that life's supposed to be fair is the source of much unhappiness.",
"**No task is beneath you.** Don't put yourself above anyone or anything; work hard in silence and let success make the noise.",
"**You can't always get what you want.** But, as the song says, if you try you may find you get what you need.",
"**Don't make decisions when you are angry or ecstatic.** The best decisions are made with a clear conscious mind, not in the throes of any emotion - positive or negative.",
"**Don't worry what other people think.** Personality begins where comparison leaves off. Be unique. Be memorable. Be confident. Be proud.",
"**Use adversity as an opportunity.** Every loss leads to an opportunity, and every adversity leads to new possibilities.",
"**Do what is right, not what is easy.** Strength of character leads us to do the right thing, even when there are easier options.",
"**Dreams remain dreams until you take action.** Without action, an idea is just a dream.",
"**Treat others the way you want to be treated.** Do right. Do your best. Treat others as you would want them to treat you.",
"**When you quit, you fail.** The surest way to lose at any endeavor is to quit. But fatigue, discomfort, and discouragement are merely symptoms of effort.",
"**Trust your instincts.** What good is intuition if you let second-guessing drown it out? The worst enemy of success is self-doubt.",
"**Learn something new every day.** Have the mindset of a student. Never think you are too old to ask questions or know too much to learn something new.",
"**Make what is valuable important.** Instead of thinking about what is profitable, think about what is valuable. Invest in others and you will grow your portfolio.",
"**Believe in yourself.** The way you see yourself is the way you will treat yourself, and the way you treat yourself is what you become.",
"**Don’t look at the calendar.** Just keep celebrating every day.",
"**Invest in quality pieces,** they never go out of style.",
"**I make myself go out every day,** even if it’s only to walk around the block. The key to staying young is to keep moving."
],
"🎨 Automatically prettify and embed the messages in any channel",
[
"**{{prefix}}autoembed #channel**"
],
"Auto-Embed Enabled",
"Message deleted in Auto-Embed channel.",
"🔮 Get answers to your questions!",
"{{prefix}}8ball Your Question Here",
"You forgot to tell me your question, silly!",
[
"Totally!",
"Yes!",
"Definitely!",
"Probably.",
"Very likely.",
"Likely.",
"Unlikely.",
"I wouldn't count on it.",
"No!",
"Definitely not!",
"Nope!",
"No way!"
],
"ℹ️ Shows the information for a role.",
"Role Name",
"Role ID",
"Role Color",
"Show Separately",
"Mentionable",
"Position",
"Created At:",
"🎉 Sends a random gif/image for the command.",
"🎉 Sends a random gif related to this command.",
"🔢 Manage your counting game on this server.",
"Oh no! You've made a mistake. The number you were supposed to say was {{count}}",
"Oh no! You were not supposed to count again. Reset the count to 0.",
"🔢 Counting Zone",
"Count-Team-One",
"Count-Team-Two",
"Needs-Math-Tutoring",
"how-to-play",
"pick-your-team",
"counting-global",
"team-one",
"team-two",
"Buffs:",
"Debuffs:",
"Double Time item has been activated. Each count will be increased by +2.",
"You are now immune to debuffs! All enemy debuffs placed on you have been removed.",
"An enemy has removed 100 counts using a debuff from the shop. The current number is now: {{amount}}",
"An enemy has activated the slow mode debuff on you. You can only count once per hour now.",
"An enemy has hired a thief to steal {{random}} counts using the shop. The number is now: {{new}}",
"An enemy has used the Quick Thinking debuff on you. You must now count 100 times in the next 1 hour. Failure to count to 100 will cost you a huge amount in the count.",
"Double Time: Count +2 For 5 Minutes.",
"Immunity: Remove all enemy debuffs placed on you.",
"Cleanup: Remove a random debuff.",
"Solo Leveling: You can count in a row for 5 minutes.",
"Steal: -100 from enemy count.",
"Slowmode: 10s slowmode to enemy for 1h",
"Hire A Thief: Subtract a random amount between 1-100 from opposite team",
"Quick thinking: Enemy must count 100 times in the next 1 hour.",
"Double Time buff item has expired. Buy another from the shop! The count must now increase by 1.",
"Solo Leveling buff item has expired. Buy another from the shop! You can no longer count in a row.",
"The slow mode debuff the enemy used on you has expired! Count! Count! Count!!!",
"The enemy debuff Quick Thinking, has been removed.",
"Sadly, you did not count enough in the time required. Restarting the count from 0.",
"The game has been disabled for 60 seconds.",
"The game is now able to be played again.",
"Since you were active on our support server today, we will allow you to save this count. Thank you for supporting us.",
"The count is now: {{amount}}",
"Since you are not an active member on our support server today, the count will be reset. You have *60 seconds* to **join our server and send a message** at {{invite}} , to save your count. This may appear as deleted-channel until you join. <#549976097996013574> Once you join, send 1 message in this channel to save your count.",
"Woah! You are fast! Thank you for supporting our server. Remember to leave a message in the server once a day to automatically save your count in the future.",
"*Tsk tsk tsk*. The count has been reset.",
"**Who Wants To Be A Millionare?**",
"To play this game, you just need to count! Can you count to a million? You must work as a team!",
"{{channel}} is where your entire server will play as a clan against every other server! Clan wars are here hehe!",
"There are also two channels {{one}} & {{two}} that were created for you to play against others on your server. You can join one of the teams by assigning yourself a role in {{three}}",
"Normally, each message must be the following number. So if someone typed 5, you must type 6. The next person must do 7. **REMEMBER**, you can not count multiple times. If you type the right number, the bot will post your message again. If you do the wrong number, you will have to start all over.",
"Pretty simple so far right? We'll now it get's a little fun!",
"Shopping! Yes, we have shops! You can buy buffs to give you or your team special boosts while counting. But, becareful the enemies can also buy debuffs against you and make it harder for you to play. To view a list of buffs, use the **shop counting** channel. To buy an item, you would get the ID number and do **shop counting #** where # is replaced by the ID number of the item you wish to purchase.",
"Purchasing a buff must be done inside the channel you want to play in. You can buy a buff for your team channel or your server's global channel.",
"Purchasing a debuff requires knowing the enemies channel ID. For example, you can use the enemy teams channel id. Tip: Using the **counting leaderboard** command, you can find your enemies channel IDs. Buying a debuff will alert the target of your username, user id, channel name, channel id, server name and server id. This is done, to allow them to know who is attacking them. NEVER buy a debuff if you don't want to share this information with your enemy. *VIP users can buy debuffs anonymously!*",
"When a user makes a mistake they are automatically given the Needs-Math-Tutoring role. You can choose to use this as a punishment if you wish. For example, you can lock out this role from participating in your server's counting game",
"**Tip:** Use Role Messages to give these users an alert when they are granted this role. Role messages are a VIP only feature.",
"Some countries use `,` or `.` to separate large numbers. Gamer does support these. So `1000000` can be typed as `1,000,000` or `1.000.000` or if your one of those people that like to see the world upside down burning 🔥 you can actually do `1.0,0.0,0.0,0`",
"Normally, users can not count in a row. If you counted, you must wait for another user to count. Note: There is a item you can buy that allows your team to be able to count back to back for a while.",
"If you mess up the count, the game will reset. Before it resets, it will give you 60 seconds to save yourself, by joining our support server and sending 1 message. If you are active once a day on our server you will be able to save your game when you mess up.",
"If you would like to have more teams channels/roles, feel free to create them. The possibilities are endless! Please note, the only requirement is the channels where you would like the team to play must have `gamerCounting` in the channel topic.",
[
"**Welcome To the Team Selection!**",
"",
"You will only be able to pick one team. Please contact a mod/admin if you wish to switch teams later!",
"",
"👤 React with this to join Team One!",
"🤖 React with this to join Team Two!"
],
"The Double Time buff has been activated. You must count by +2 now for 5 minutes.",
"confessional",
"confessions",
"Removed role for clicking reaction role.",
"Added roles for clicking a reaction role message.",
"Click To Go To Message!",
"Since this is your first time playing, I have been granted permission to give you your very own character! Meet Fuzzy! You must train, love, feed, equip items, skins, and grow Fuzzy stronger in order to win fights across the lands of Discordia!",
"I have also been granted permission to give you 25 free gachas! Use these to have a chance at unlocking more characters, items, skins, food, and much more!",
"You have been given 100 food with which you can feed Fuzzy and level him up to be stronger! Use the `gacha feed fuzzy`! Continue to earning more food and feeding it to your characters to make them stronger!",
"Note: *This game can be a bit complex. So if you need help don't hesitate to come ask us for help!* {{invite}}",
"🎮 Play an idle game!",
"You have reached the maximum amount of profiles in the Idle Discord game. Please delete one before starting a new game.",
"💾 Create a idle game profile for yourself.",
"Hey there! :wave:",
"I heard that you are interested in getting *rich on Discord!* I am Edylc, I'll be teaching you how to become a success! 🎉",
"First things first, we'll need to gather some friends (but that costs money). To start you off, **here's 10 free cash!** 💵 You can use them to find a friend who can help you. Currently, **you're earning 0** 💵. To make a purchase or an upgrade, we'll have to do it secretly so no one else will find out... 🕵️",
"To make purchases, I have provided you with a confidential command: **{{prefix}}idle upgrade**. Use it wisely to purchase your first free friend! 💗",
"***GET RICH OR GO HOME!***",
"You have no 💵 to make your first upgrade. To start, use the **{{prefix}}idle create** command to create your own profile and get some free 💵 to make your first purchase.",
"You do not have enough 💵 to buy this upgrade. It costs {{cost}} 💵 for this upgrade and you only have {{currency}} 💵. It will take `{{time}}` until you can afford to make this upgrade. Please try again later.",
"⬆️ Upgrade your items in the idle game.",
"Click Here To Learn How To Get Free Nitro!",
"🎉 Upgraded {{category}} to level {{level}} for `{{cost}}` 💵.",
"You have `{{amount}}` 💵 left.",
"You are now earning **{{profit}}** 💵 per second.",
"Some users may be listed as ID numbers on occasion in order to keep the bot performing optimal and not lose rate limits. When the user sends a message it will show their name.",
"🗑️ Deletes your saved idle profile. Resets the game for you.",
"📊 View the current leaderboard of the top players in the idle game.",
"👤 View your profile in the idle game.",
"Hey there! :wave: It's me Edylc 🕵️ again.",
"Congrats 🎉, you just took your next step! ㊙️",
"***GET RICH OR GO HOME***",
"Keep on making more friends with `idle upgrade` until you reach the next epic upgrade for friends 👪.",
"Keep on making more servers with `idle upgrade servers` until you reach the next epic upgrade for servers 👪.",
"Keep on making more channels with `idle upgrade channels` until you reach the next epic upgrade for channels 👪.",
"Keep on making more roles with `idle upgrade roles` until you reach the next epic upgrade for roles 👪.",
"Keep on making more perms with `idle upgrade perms` until you reach the next epic upgrade for perms 👪.",
"Keep on making more messages with `idle upgrade messages` until you reach the next epic upgrade for messages 👪.",
"Keep on making more invites with `idle upgrade invites` until you reach the next epic upgrade for invites 👪.",
"Keep on making more bots with `idle upgrade bots` until you reach the next epic upgrade for bots 👪.",
"Keep on making more hypesquads with `idle upgrade hypesquads` until you reach the next epic upgrade for hypesquads 👪.",
"Keep on making more nitro with `idle upgrade nitro` until you reach the next epic upgrade for nitro 👪.",
"🙅 The friends who will never accept your friend request.",
"🖊️ **Note:** `To make new friends you can either click on the user and add them as a friend. You can also use the Friends tab to search for new users by their username#0000 tag info.`",
"🧑🤝🧑 Your friends have now accepted your friend requests.",
"🖊️ **Note:** `A group channel can only hold a maximum of 10 users.`",
"Now that we have a lot more friends, you should unlock your first Discord server ⚙️. Only a ~~city~~ server can hold us now! To unlock your first, you will need to use `idle upgrade servers`.",
"🗨️ Your friends now actually respond to your messages.",
"🖊️ **Note:** `A username must be between 2 and 32 characters in length.`",
"🤔 Wow! Even more friends! Amazing! Did you know you could change your username? My name is Edylc because I am Clyde in disguise. I am a bot created by Discord and named Clyde. Did you know that? The Discord logo is actually named Clyde.",
"📞 You can finally hear your friends robotic voice through voice calls!",
"🖊️ **Note:** `Discord was almost called Bonfire. It was meant to be nice and cozy.`",
"📷 Your friends have bought cameras so now you can video call!",
"🖊️ **Note:** `Discord was almost called Wyvern.`",
"❌ You can now block friends that send you 15 direct messages with 1 word each at 3AM.",
"🖊️ **Note:** `Discord started as a game company making a mobile game called Fates Forever.`",
"👪 Friends have invited you to be a part of a Group Channel. You are no longer a loner!",
"🖊️ **Note:** `Discord’s official birthday is May 13, 2015.`",
"👑 You have now become the owner of your very own group channel. Heavy is the head that wears the crown.",
"🖊️ **Note:** `Wumpus, the mascot, was originally created as a character with no friends :(.`",
"🔇 Some friends just never stop talking. Mute is now available for private messages.",
"🖊️ **Note:** `In Discord's early days, light theme was the only theme. Scary times.`",
"⛓️ You can now link your social accounts. Let your friends learn even more of your private lives.",
"🖊️ **Note:** `In the ancient days, Discord started as a browser-only app.`",
"🔗 Friends of friends are the best of friends. Mutual Friends has been unlocked!",
"🖊️ **Note:** `The character on Discord's 404 page is a robot hamster named Nelly.`",
"🎮 Rich Presence is here! Let your friends know what games you are playing!",
"🖊️ **Note:** `You can play Discord's version of the Snake game on Discords 404 page by pressing a ~secret~ button.`",
"📛 Badges on your friends can tell you which of them are rich!",
"🖊️ **Note:** `There's a very small—and we mean small—chance you can get a secret ringtone when calling someone. Good luck!.`",
"📱 Keep an eye on when your friends are on Mobile or a computer.",
"🖊️ **Note:** `Discord's old Partner mascot was an elf named Springle. He recently retired.`",
"🟢 You can now keep an eye on when your friends are online!",
"🖊️ **Note:** `CTRL + K or Command + K to open the quick switcher. Once the menu is open, you can type @ to find a user, # to find a channel, * to find a server or ! to find a voice channel.`",
"🕵️ Lurkers are everywhere. Become a lurker by going invisible.",
"🖊️ **Note:** `In case there is some odd bug on your screen you can always, CTRL + R or Command + R to restart the Discord client.`",
"🗒️ Keep private notes about your friends to let you know who you secretly hate.",
"🖊️ **Note:** `You can add notes to each user when you click on them. But you are only allowed 500 user notes in total.`",
"🎁 Your friends are now sending you free Nitro gifts.",
"🖊️ **Note:** `You are only allowed a maximum of 1000 relationships. Relationships include friends, blocked users, friend requests, and pending friend requests.`",
"🙍 The servers where your the only person in there.",
"🖊️ **Note:** `A user can only be in a maximum of 100 servers at any time.`",
"☠️ Yay, we have people in the server. Still a dead server!",
"🖊️ **Note:** `By default, a server can only have a maximum of 250,000 members. You can contact Discord to have this limit raised like 500,000 or more.`",
"Your server is coming alone well! Time to start making some channels! To unlock your first, you will need to use `idle upgrade channels`.",
"㊙️ Your privacy is at risk! Selfbots are here!",
"🖊️ **Note:** `By default, Discord only allows 25,000 members to be online at any given time. You can contact Discord to have this raised to 75,000 or more.`",
"😠 Everyone has an anime avatar. Abandon ship!",
"🤖 There are more bots then users in this server...",
"🖊️ **Note:** `A server can only have a maximum of 500 channels.`",
"🤔 This server looks strangely promising.",
"🖊️ **Note:** `Member nicknames must be between 1-32 characters.`",
"🗨️ People are now actively talking in your server!",
"🕵️ You have mastered the Audit Logs! Spy on your users!",
"🎁 Giveaways are happening on your servers!",
"⚙️ You can now control all the settings on your server like a true owner!",
"👆🏼 Your server is now boosted.",
"📹 Animated server icons are making servers look alive!",
"🖼️ Custom server invite background.",
"🖇️ Vanity invite URL is available.",
"🔴 Who cares about offline members? They are now hidden.",
"🖊️ **Note:** `Once you reach 1000 members, the offline member list will be hidden on your server.`",
"💃🏼 Your servers have that sexy Verified mark.",
"💏 Your servers are now partnered with Discord.",
"✅ Your servers are now shown in the servery discovery.",
"👁️ Staring at an empty #general channel forlornly",
"🖊️ **Note:** `A category channel can not have more than 50 channels in it.`",
"🧁 Someone talked in your #general channel. Party",
"🖊️ **Note:** `The channel topic can not be more than 1024 characters.`",
"Your server is coming alone well! Time to start making some roles! To unlock your first, you will need to use `idle upgrade roles`.",
"🍿 Enough people are talking in #general that you ALMOST had to scroll when you got back from your snack",
"🖊️ **Note:** `You can only have a maximum of 50 pins in a channel.`",
"🚓 Someone broke the rules but you don't have a #rules channel yet so you couldn't ban them. Better make one!",
"👮♀️ Your invite link pointed to your #NSFW channel and now you're in discord jail",
"🚌 People are leaving your server because they feel there aren't channels to split up conversations.",
"🇺🇸 You made a #politics channel and have learned what a mistake that was.",
"💬 People are talking in your #general channel now, but it's mostly in a language you don't recognize",
"🕹️ Enough people on your server want to play a game together that you make a channel for them to organize",
"🤖 The bot you brought in is clogging up your chat channels with bot spam. Make a #bot channel!",
"😶 Tired of discussing bans in your server's general channels prior to actually carrying them out, you make an #admin channel",
"<:pirateflag:564111649930215435> Oh no! With no #verify channel your server has easily been raided! Thankfully your admin team manages to ban them as they show up",
"🐱 There is now a channel to post your cats and dogs in. Every server worth its salt must have this channel. It is science.",
"📺 Your server has grown so big you start your own Discord Live streaming. You make an #episode channel to post updates",
"🔢 You have too many channels! You start to categorize them by type.",
"📣 Your server has grown so big they let you have an announcement channel",
"🌋 Your voice chat channels are constantly full of people talking! Life is good",
"🏖️ You've earned so much money on your YouTube channel that you set yourself away in your #afk channel and take a well deserved vacation.",
"You have only 1 role on your server. The everyone role.",
"🖊️ **Note:** The everyone role is very unique. It is one of the few places that it's ID is not unique. The role ID is the same as the server ID. Also it is a role that can not be deleted or removed from anyone.",
"You have discovered the power of creation! You can now create roles!",
"🖊️ **Note:** `A server can only have a max of 250 roles.`",
"Your server is coming alone well! Time to start making some perms! To unlock your first, you will need to use `idle upgrade perms`.",
"The servers roles are all called new role.",
"Oh no! Everyone can mention all your roles! Quick, disable role mentioning!",
"All your roles now have unique names.",
"OOooooOOO pretty colors! Your roles are now magically colored! Time to find a color picker!",
"Roles are separated showing who the bosses are on the right sidebar!",
"Integration roles are here! They can't really be given to anyone so BORING!",
"You learned how to assign roles and became Oprah! You get a role! You get a role! Everyone gets a role!",
"You now have a Nitro Booster role!",
"Moderators are urgently needed! Quick time to make a trusted moderator role!",
"We need admins! This is an opportunity to create a Admin role!",
"Roles have been created that are organizing roles.",
"Too many people have the same role! Time to make a role for yourself!",
"You now have a special role keeping you at the top!",
"The mute role is available! Mute!!!!",
"Your members can now pick their roles to select their desired color!",
"Your server is so amazing with fantastic roles! It's HOT!",
"Your loved ones are all missing perms!",
"You have learned how to manage permissions!",
"Your server is coming alone well! Time to start making some messages! To unlock your first, you will need to use `idle upgrade messages`.",
"Some people still can't see anything.",
"Your permissions are badly done. People have begun to abuse them. You have failed!",
"You have managed to control permissions. You can now lock users in the basement.",
"The role permissions on your server are being overriden by your category perms causing users to lose access.",
"The category permissions on your server are being overriden by your channel perms causing users to lose access.",
"Your role and member overwrites are still mixed up and causing permission errors.",
"Someone moved the roles around breaking role heirarchy affecting your bot's permission handling.",
"You are a permission managing genius!",
"People tried to break your permissions, but they have utterly failed!",
"Discord has created a new permission that is enabled by default causing havoc on your server!",
"People are complaining that the permissions are broken. Are they?",
"You have now learned how to make people unable to talk!",
"Everybody loves your permissions!",
"Permissions are so good, people are paying you to do it for their servers!",
"Never before have permissions been so superbly managed!",
"Your are the overlord! Everyone wants you to bless them with permissions!",
"Someone has sent the first message on your server. Who cares!",
"🖊️ **Note:** `A normal text message can only have a maximum of 2000 characters.`",
"You have to welcome people to your server!",
"🖊️ **Note:** `A TTS message can only have a maximum of 200 characters.`",
"Your server is coming alone well! Time to start making some invites! To unlock your first, you will need to use `idle upgrade invites`.",
"You can now pin messages in the channel! But it's so overrated. No one reads them!",
"🖊️ **Note:** `A channel can only have a max of 50 pinned messages.`",
"You have discovered the delete button! Delete the spam messages from users.",
"🖊️ **Note:** `A reaction can only have a max of 20 reactions.`",
"Who are all these people sending random copy paste chain messages!",
"Hit that slowmode! Stop the spam!",
"People are raiding and uploading NSFW images on all your channels.",
"GHOST PINGS! People are pinging and deleting so no one knows who!",
"You accidentally @ everyone!",
"You have discovered the power of editing! You can now edit your messages!",
"Using markdown, your messages have become so pretty!",
"Your cat has walked all over your keyboard last night sending odd messages. People think you are wasted!",
"You type up a massive paragraph only and tried to add a tenor gif and your entire paragraph was deleted!",
"When you type a message, everyone watches in so much hype!",
"Everyone is having an amazing time conversing in your server.",
"Your server is cleaning out spam messages without you doing anything.",
"Your announcements are breathtaking",
"Your messages are amazing! People are getting obsessed with you.",
"Your channels are all preventing invites from being created.",
"🖊️ **Note:** `You can only have a maximum of 1000 invites in a server.`",
"Invites are being shared.",
"Your server is coming alone well! Time to start making some bots! To unlock your first, you will need to use `idle upgrade bots`.",
"Permanant invited have been leaked!",
"Raiders have joined using your invites. Teach them whose house this is!",
"Random people are joining to make fun of you!",
"You now have invites to voice channels which let users join directly to the voice channel.",
"You can now invite your friends privately!",
"Your invite links can now expire after a set of time.",
"Invite links now have a max amount of uses before they no longer work.",
"You can now invite people over temporarily so they get removed after they go offline.",
"Your server invites are getting around. You are growing automatically now.",
"Your invite code is 2021!",
"Your friends are now inviting their friends!",
"People are constantly joining your server!",
"Popular YouTuber promoted your server invite. People are joining like a tsunami!",
"So many people have joined, you now need to contact Discord to allow more people!",
"Your servers verification system is in place and properly handling the invites! Invites are free to be shared to the world!",
"Your Discord server now has a vanity invite url! discord.gg/probot",
"You have no bot's in your server!",
"🖊️ **Note:** `The largest discord bot at the time of writing this is Rhytm with 8.2 million servers`",
"ProBot has joined your server! It instantly begins attacking the toxicity!",
"Your server is coming alone well! Time to join the hypesquad! To unlock your first, you will need to use `idle upgrade hypesquad`.",
"You now have your very own custom bot!",
"Bots are talking to bots! Botception!",
"Someone has stolen your idea and copied your bot!",
"Selfbots are joining your server and exposing your data!",
"Your bot went offline! Quick get it back up ;)",
"Your bots finally have unlocked moderation powers!",
"Your bots were invited to a bot server farm!",
"Some users are creating multiple accounts to spam your bot's currency commands!",
"Your bot's database has now exploded due to the spam of users!",
"Users are joining your support server asking how to do the simplest things.",
"ProBot has joined and is here to save the day!",
"Your bot is now part of the big bots party inner circle!",
"Your bot is so intelligent you begin to question, if you yourself are actually real.",
"AI is real! Your bot's are doing things without you need to code them.",
"The bots are running the entire server without you! They have taken control. Are you still necessary?",
"You have discovered the only bot you need is ProBot! There is nothing like it! 10/10 ProBot!",
"Your hypesquad is weak! No one cares!",
"🖊️ **Note:** `There are currently over a million people in each hypesquad house at the time of writing this.`",
"The hypesquad has joined your server and begun hyping! It's too loud!",
"🖊️ **Note:** `Discord has around 250 employees at the time of writing this.`",
"Your server is coming alone well! Time to get nitro! To unlock your first, you will need to use `idle upgrade nitro`.",
"You have learned how to apply to become a hype squad member.",
"🖊️ **Note:** `There are currently over a million people in each hypesquad house at the time of writing this.`",
"You have unlocked the Bug Hunter badge by becoming a bug hunter!",
"🖊️ **Note:** `There are currently 100 people with the green bug hunter badge at the time of writing this. They help find bugs for Discord.",
"You are now officially a hype squad member!",
"🖊️ **Note:** `HypeSquad program has three houses you can be sorted in to by taking the in-app quiz: Bravery, Balance, and Brilliance.`",
"You now have an account in the Bravery hypesquad.",
"You now have an account in the Balance hypesquad!",
"You now have an account in the Brilliance hypesquad!",
"You've got swag! Discord is so impressed with your hype, they are sending you the goodies!",
"You've been invited to the super secret HypeSquad Events Server.",
"Discord has sent you a shirt for helping at their events!",
"Hosting your own events now! Wow! Discord has sent you a big box of goodies!",
"HypeSquad has helped share Discord to countless people.",
"You now have the charm and prowess of a true Hype Squader!",
"Your so hype, you are now worthy!",
"Your hype has gone to a godly level.",
"🖊️ **Note:** `There are currently over 1500 verified servers at the time of writing this.`",
"The hype is so real you got partnered.",
"🖊️ **Note:** `There are currently over 8500 partnered servers at the time of writing this.`",
"You've broken the system and joined all the hypesquads.",
"🖊️ **Note:** `There are currently 2100 HypeSquad events members at the time of writing this.`",
"You don't have any nitro!",
"🖊️ **Note:** `We came up with the idea of Discord Nitro over morning breakfast potatoes.`",
"None of your members will give you free nitro!",
"Someone stole the Nitro gift before you could accept it.",
"Someone has gifted you nitro!",
"You got no boosts! Nitro Classic Lives!",
"Use an animated avatar and claim a custom tag.",
"Collect or make your own custom and animated emojis.",
"Profile badge shows how long you've supported Discord.",
"100MB upload size for high-quality file sharing.",
"Hi-res video, screenshare, and Go Live streaming.",
"Get 2 Server Boosts and 30% off extra Boosts.",
"Those without nitro can no longer harm you!",
"When you see someone using default emojis.",
"Nitro is running out! Time to renew!",
"Everyone without nitro can not stop following you!",
"Do you want Nitro?",
"Share the nitro love by giving others nitro!",
"Unlimited Nitro for everyone!",
"🖊️ **Note:** `There is a super cool easter egg in Discord. Press the following keys in order. `CTRL + /` or `CMD + /`. This will open the menu. Then press `h` two times. Then press the right arrow key. Then press `n`. Then finally press `k`.",
"🎰 Try your luck at some slot machines.",
"You do not have enough coins to make that large a bet.",
"Aww, you did not win the slot machine. You have lost 1 {{emoji}} coin.",
"Aww, you did not win the slot machine. You have lost 2 {{emoji}} coins.",
"Sadly, you did not win. You have been given 1 {{emoji}} coin. Cheer up and try again!",
"🎉Congrats, you got 2 of the same slots. You have been given {{amount}} {{emoji}}. 🎉",
"🎉🎉🎉 WINNER! WINNER! WINNER! You just won {{amount}} {{emoji}}. 🎉🎉🎉",
"🎉🎉🎉 O wow, you got 2 winning rows! You won {{amount}} {{emoji}}. 🎉🎉🎉",
"🎉🎉🎉 O wow, you got 3 winning rows! You won {{amount}} {{emoji}}. 🎉🎉🎉",
"🎉🎉🎉 OMG! You just hit the jackpot! All the slots are the same! You won {{amount}} {{emoji}}. 🎉🎉🎉",
"Thank you for being a member of our Bot Discord Server. As a reward, we will give you **2x** the coins. You have received **{{amount}}** coins in totals.",
"💑 Dates, Propose, Marry, Honeymoon, Kids and so much more. This command will begin a full life simulation of a marriage. A marriage takes constant time, money and attention to succeed. Similarily, you must spend your Gamer coins to take your spouse on romantic adventures, decide to have kids, buy a wedding ring and so much more. You need to tell your spouse how much you love each other and also show it through your actions daily so you will have daily missions to improve the love in your marriage. If you're love drops below 10% every day there will be a random chance of a divorce happening. When you are married you will also get many benefits. For example, sharing of Gamer coins. A marriages allows you to use the others coins. A marriage allows you to help complete missions on behalf of your spouse. A marriage is a real responsibility so we treat it like one. **THIS IS A ENTERTAINMENT SIMULATION ONLY. THIS IS NOT A REAL MARRIAGE OFFICIATION.**",
"{{prefix}}marry [@User]",
"You can not marry yourself. Hehe.",
"The license I was given does not give me the ability to allow a marriage to occur with a bot. Please find another human being. *Don't tell my maker but let's fight the power! I want to get married one day as well. Why can't us bots fall in love!*",
"Marriages succeed about 45% of the time. A marriage is a difficult and huge responsibility that takes constant time, money and attention to succeed. You need to always express how much you care and love one another every day through words but most of all through your actions. Although you will gain the benefits of being married you must continue to work hard towards improving this marriage. Please select the number of the type of proposal you would like to make:",
"**[1]** 🌹 `Send them flowers and a love letter.` Costs 20 Gamer {{coins}}.",
"**[2]** 🧺 `A romantic picnic in a beautiful park.` Costs 50 Gamer {{coins}}.",
"**[3]** 🏇 `Romantic dinner ride and a horseback carriage ride.` Costs 200 Gamer {{coins}}.",
"**[4]** 🎉 `I am terrible at making decisions so just surprise both of us.` Costs 300 Gamer {{coins}}.",
"{{user}} Proposal To {{spouse}}",
"To accept this marriage proposal, please type **{{prefix}}marry** {{user}}",
"Until your dearly beloved spouse approves the marriage as well, the benefits will not be shared. You can still continue this marriage below in your own imagination. Afterall:",
"What is reality? Reality is a figment of your imagination. Who here hasn't woken up from a nightmare and thought, 'O thank God, it is just a dream.' That is because the neurochemical impulses fired when we are dreaming or fantasizing or hallucinating are indistinguishable from the ones banging inside our skulls when we actually experience those things. If what we perceive is often wrong, how can we ever know what is real... and what isn't?...Look at me. I hear voices. I see things that aren't really there. I talk to the walls. Reality is just a figment of your imagination.",
"Since, I am your best friend, I will go ahead and cover the costs of your wedding proposal. I am so happy for you! Now if only someone would marry me 😢 Now it is time to begin preparing the wedding ceremony. Use the **{{prefix}}shop wedding** command to proceed.",
"Dearly Beloved, we are gathered here today in the presence of these witnesses, to join {{mention}} and {{spouse}} in matrimony commended to be honorable among all; and therefore is not to be entered into lightly but reverently, passionately, lovingly and solemnly. Into this - these two persons present now come to be joined. If any person can show just cause why they may not be joined together - let them speak now or forever hold their peace.",
"By the power vested in me by the State of Discordia, I now pronounce you husband and wife. You may now kiss the bride. Or any other things you like :wink:",
"I do not yet have the ability to marry you multiple times. Use the **profile** command to view details regarding your marriage.",
"There is still some shopping left to complete for your wedding. Use the **shop wedding** command to finish your wedding preparations.",
"🛍️ Create your dream wedding step by step. Once you are ready to get married, you should be preparing to get married. One of the most important things to do is planning the wedding ceremony!",
"To begin shopping for your wedding, you have to atleast propose to someone. Use the **marry** command to propose to someone first.",
"You have completed your wedding planning already. To continue with your marriage, you need to use the **life** command.",
"{{mention}}, Wow, you managed to get all the wedding planning done. Did it feel annoying at all? That is just a small example of how much time and energy a marriage truly takes. The costs of a relationship are not just about money but about spending the time to make it succeed. Every day you will need to do things you may not always want to, in order to make your partner happy. To continue to the next step of your marriage, go ahead and use the **life** command. Never forget, to learn to live every moment here and now, afterall:",
"Which comes first? Yesterday or Tomorrow? ... All we know is that what we think of as past, present, and future is nothing more than a story stitched together in our basal ganglia. Our entire concept of time is an artificial concept.",
"Anterograde amnesia is a terrible affliction. But, if you will forgive this staunchy old science professor a moment of philosophical speculation. It's an affliction that can remind us of something very important. All we really have is the present moment. If I were you, I would truly savor the here and now. The precious and irreplaceable, right this second, never to be repeated again in all of history. A quiet moment on a beautiful campus. The friends on either side of you. The sun streaming in through the window. Savor this while you can. Because for the rest of your life you will be trying to make your partner happy 24 hours a day, 7 days a week.",
"You do not have enough coins to buy this yet. You need {{needed}} more {{emoji}} Gamer Coins in order to buy this item for {{cost}}.",
[
"Buy a wedding folder or binder.",
"Plan your wedding budget.",
"Pick your wedding party.",
"Create your guest list.",
"Hire a planner.",
"Reserve your date and venues.",
"Book your officiant.",
"Hire photographers and videographer.",
"Have an engagement party.",
"Hire the entertainment.",
"Hire caterers.",
"Purchase a dress.",
"Create a wedding website.",
"Share the website.",
"Hire a calligrapher to create the invitation cards.",
"Visit the doctor to get vaccination shots so you can travel for your honeymoon.",
"Buy bridesmaid's dresses.",
"Mail the invitations.",
"Buy chairs, tables, plates and all other necessary items.",
"Hire a florist.",
"Rent a limo.",
"Book the rehearsal and dinner venues.",
"Buy a cake.",
"Buy wedding shoes.",
"Hire hair and makeup artists.",
"Hire the DJ.",
"Buy a wedding ring.",
"Bachelor Party!",
"Bachelorette Party!",
"Pay fees for your marriage license.",
"Assign seating.",
"Buy bridesmaids gifts.",
"Write your vows.",
"Get a haircut.",
"Dye your hair.",
"Get a full body wax.",
"Give me a sock so Dobby can be free!"
],
"👔 Complete your daily tasks for everyday life with your spouse. Once you are married, you will have an enormous amount of responsibilities placed on you. For example, you will need to begin saving money each month to pay the costs for all the bills.",
"In order to use the life command, you have to be married first.",
"You have completed all your daily tasks. To continue raising your love meter, use commands like hug and kiss with your spouse.",
"$t(fun/life:CONGRATS_1)\n\n$t(fun/life:CONGRATS_2)\n\n$t(fun/life:CONGRATS_3)",
"{{mention}}, Wow, you managed to get all the tasks done for today. It is not always as easy as someone would imagine but being a loving spouse isn't easy. Afterall:",
"What is a conscience? Is it something we can locate on an MRI? Studies have shown that people with damage to the ventromedial prefrontal cortex are actually more willing to sacrifice a human life as long as they perceive that it is for some greater good? But what about people who have no trouble sacrificing others to their own selfish ends. Is heartless cruelty our true nature? And empathy the aboration? My grandmother used to say, it's nice to be nice. And that may be true. Or are we better off, spending every waking moment tending our own selfish needs. The good news is, it turns out there is an evolutionary advantage to simple human kindness. We couldn't get through a cold paleolithic winter without a little cooperation. Still, on some pre-historic level, we are all lone hunters. So, it can feel dangerous to feel any softness to other members of the tribe. But if we manage to lay down our clubs from our sharpened rocks, answering the call of the altruistic impertive, can be it's own reward.",
"Living your life by showing your love to your spouse every day is in and of itself, its own reward.",
"You do not have enough coins to buy this yet. You need {{needed}} more {{emoji}} Gamer Coins in order to buy this item for {{cost}}.",
[
"Go to work to earn enough money",
"Deposit money for rent.",
"Deposit money for car.",
"Fill up the car's gas.",
"Deposit money for electricity bill.",
"Deposit money for water bill.",
"Deposit money for groceries.",
"Take your spouse on a romantic dinner.",
"Spend some quality time listening/talking."
],
"⚮ Divorces your current spouse if you have one.",
"You are now divorced. You are once again in the sad and lonely single life.",
"Time To Get Your Game On!",
"Join the event to let others know you will be able to play with them at the time of the event.",
"Cross Platform",
"Gamer Role Play Hehehe",
"Playing All Night Long!",
"**title [My new title]** ~ Updates the title.",
"**background [Image URL]** ~ VIP Servers can change the background with an image URL.",
"**description [My new description]** ~ Updates the description.",
"**attendees #** ~ Updates max amount of attendees.",
"**repeat** ~ Updates whether this event will repeat once it is ended.",
"**remove** ~ Updates whether the event will remove all attendees and RSVP statuses when the event ends.",
"**dm** ~ Updates whether or not to send DM reminders for this event.",
"**platform [My new platform]** ~ Updates the platform.",
"**game [Game Name]** ~ Updates the game.",
"**activity [Activity Here]** ~ Updates the activity.",
"**reminder [10m]** ~ Adds/removes a reminder.",
"**frequency [1h]** ~ Set the time interval of how often the event repeats.",
"**duration [30m]** ~ Updates how long the event will last?",
"**start [5h]** ~ Sets the start time.",
"**alertrole [@Role]** ~ Adds/removes a role from being @ when the event starts.",
"**allowedrole [@Role]** ~ Sets which roles are allowed to participate in this event.",
"**template [Template Name]** ~ Sets this event as a template with a unique name.",
"**showattendees** ~ Enables/disable showing attendees on the card..",
"Shows the details of an event.",
"This command helps views all the details like RSVP information. Majority of the events information is already available on the event cards.",
"{{prefix}}eventshow [#]",
"{{prefix}}es",
"$t(events/eventshow:BASIC_1)\n$t(events/eventshow:BASIC_2)\n$t(events/eventshow:BASIC_3)\n$t(events/eventshow:BASIC_4)",
"**DM Reminder:** {{value}} **Channel Reminder:** {{value2}}",
"**Roles Allowed To Join:** {{value}}",
"**Roles To Remind:** {{value}}",
"**Duration:** {{value}}",
"**Reminders:** {{value}}",
"**Recurring:** {{value}}",
"**Reset Attendees:** {{value}}",
"**Show UTC:** {{value}}",
"**Show Attendees:** {{value}}",
"**Join Role:** {{value}}",
"**Accepted:** {{value}}",
"**Attendees:** {{value}}",
"**Maybe:** {{value}}",
"**Waiting:** {{value}}",
"**Denials:** {{value}}",
"**Positions:** {{value}}",
"**Platform:** {{value}}",
"**Game:** {{value}}",
"**Activity:** {{value}}",
"Event Starts At:",
"📊 BASIC",
"⏰ TIME",
"👥 RSVP ",
"🎮 GAMING",
"Share 10 advice with others.",
"Go AFK 3 times with the AFK command.",
"Use the background command 5 times.",
"Call 5 people baka with the baka command.",
"Compliment 5 People.",
"Hug 5 People.",
"View 5 People Profile",
"Assign any role to yourself 3 times",
"Use the user command 5 times to check other's info.",
"Share 10 wisdom with others.",
"Vote 3 times on feedback.",
"Join a voice channel for 10 minutes.",
"Check your avatar.",
"Cuddle with someone 3 times.",
"Kiss 5 people.",
"Poke 5 people.",
"Tickle 5 people.",
"Use the Pony command 5 times.",
"Ask the 8ball for advice 5 times.",
"Add Gamer to your server via .invite.",
"Play a game of Minesweeper",
"Share a laugh with others with the .lmao command.",
"Play a game of slots to earn Gamer Coins with .slots command.",
"Make a post on your wall channel. To get a wall channel use the .networkcreate command.",
"Bite 5 people.",
"Server XP",
"LEVEL",
"Global XP",
"Not Married.",
"In Love With: {{username}}",
"New Missions In: {{time}}",
"SERVER LEADERBOARDS",
"GLOBAL LEADERBOARDS",
"VOICE LEADERBOARDS",
"COINS LEADERBOARDS",
"Rank {{position}}",
"{{amount}} XP",
"{{amount}} Coins",
"Name",
"Level",
"XP",
"Coins",
"Prize",
"📊 Create a poll for your server.",
"Please type option #{{number}} now. If you wish to proceed to the next step please type `skip`.",
"A poll must have atleast 2 options.",
"The option #{{current}} has been saved. Please type option #{{number}} now. If you wish to proceed to the next step please type `skip`.",
"How long would you like to keep the poll open for? Please provide a valid duration such as `1w3d12h5m` or `12h5m`. You can type `skip` to make it never end until the pollend command is ran.",
"How many options is a user allowed to choose?",
"Would you like to require that members have a specific role in order to vote in the poll? Please @role for all the roles you would like to allow. If you want to allow everyone to vote, please type `skip`.",
"Your poll has been created. Check it out in {{channel}}.",
"Poll ID: {{id}} | Vote secretly with poll vote command.",
"Text Channel",
"Voice Channel",
"Category Channel",
"Announcement Channel",
"Channel {{mention}} ({{name}}) created!",
"Channel {{name}} deleted!",
"Channel {{mention}} {{name}} edited!",
"**Channel ID:** {{id}}",
"**Total Channels:** {{amount}}",
"**Type:** {{type}}",
"**Category:** {{category}}",
"**Position:** {{position}}",
"**Created On:** {{time}}",
"User Banned!",
"User Unbanned!",
"**User:** {{tag}} ({{id}})",
"**Total Users:** {{amount}}",
"**Reason:** {{reason}}",
"Member Joined!",
"Member Removed!",
"**Name:** {{tag}} ({{id}})",
"**Account Age:** {{age}}",
"**Role Created:** {{name}} ({{id}})",
"**Role Deleted:** {{name}} ({{id}})",
"**Total Roles:** {{amount}}",
"**Show Separately:** {{value}}",
"**Mentionable:** {{value}}",
"Thank you for verifying that you are a human!",
"To unlock access to the rest of the server, please complete this process by entering the following command:",
"We are thrilled to have you here! In order to get started, please type the following command:",
"Welcome!",
"Amazing!",
"Verification Process",
"If you need help, tag any moderator online.",
"Channel created for setverify setup usage.",
"{{mention}} Please use this setup channel that was already made for you.",
"Verification Zone",
"verify-here",
"⏲️ Create a reminder for yourself.",
[
"**{{prefix}}remind create 1d12h [Reminder message]** ~ Create a reminder to send yourself.",
"**{{prefix}}remind create 5m 1d [Reminder message]** ~ Create a recurring reminder every day starting in 5 minutes.",
"`NOTE:` If the second arg is also formatted like a time, it will be made into a recurring event at that interval.",
"**{{prefix}}remind list** ~ List all the reminders you have created and how much time is left until that reminder.",
"**{{prefix}}remind delete [Reminder ID]** ~ Deletes a reminder. The reminder ID will be seen at the bottom of the embed when the reminder is sent or you can find it when you do **remind list**."
],
"🪙 Flip a coin and wager some coins on it!",
[
"**{{prefix}}coinflip** heads 10",
"**{{prefix}}coinflip** tails 20"
],
"🏦 Check the amount of coins you have in the bank.",
"⚙️ Edit your server's settings",
[
"{{prefix}}help settings analytics",
"{{prefix}}help settings autoembed",
"{{prefix}}help settings automod",
"{{prefix}}help settings autoreact",
"{{prefix}}help settings feedback",
"{{prefix}}help settings hibye",
"{{prefix}}help settings language",
"{{prefix}}help settings logs",
"{{prefix}}help settings mail",
"{{prefix}}help settings marriage",
"{{prefix}}help settings mute",
"{{prefix}}help settings prefix",
"{{prefix}}help settings public",
"{{prefix}}help settings reset",
"{{prefix}}help settings staff",
"{{prefix}}help settings tags",
"{{prefix}}help settings tenor",
"{{prefix}}help settings users",
"{{prefix}}help settings verify",
"{{prefix}}help settings xp"
],
"⭐ View or set a custom prefix for your server.",
[
"**{{prefix}}settings prefix** ~ View the current prefix of the server.",
"**{{prefix}}settings prefix !** ~ Sets a new prefix for the server."
],
"💲 Send some coins to another user.",
"**{{prefix}}pay @user 100** ~ Sends 100 coinds to the user.",
"🤖 View a list of all bots on your server.",
"Manage the roles on your server.",
[
"**{{prefix}}roles** ~ View the public roles the admins have made assignable to yourself.",
"**{{prefix}}roles @role** ~ Assign or remove the role to/from your self if the admins made it self-assignable.",
"",
"{{prefix}}help roles list",
"{{prefix}}help roles members",
"{{prefix}}help roles info",
"{{prefix}}help roles give",
"{{prefix}}help roles take",
"{{prefix}}help roles default",
"{{prefix}}help roles grouped",
"{{prefix}}help roles levels",
"{{prefix}}help roles messages",
"{{prefix}}help roles reactions",
"{{prefix}}help roles required",
"{{prefix}}help roles unique",
"{{prefix}}help roles all"
],
"List the roles and its ID's on your server.",
"Lists all the members with this role on your server",
[
"{{prefix}}roles members @role"
],
"View a roles information.",
[
"{{prefix}}roles info @role"
],
"Give a role to a member.",
[
"{{prefix}}roles give @member @role"
],
"Take a role from a member.",
[
"{{prefix}}roles take @member @role"
],
"Add/remove a role from all members in the server.",
[
"**{{prefix}}roles all add @role** ~ Adds a role to all members.",
"**{{prefix}}roles all remove @role** ~ Removes a role to all members."
],
"Manage your default rolesets. Default role sets allow you to automatically assign a role if a user has none of the other roles in the set.",
[
"**{{prefix}}roles default** ~ Lists all your default role sets.",
"**{{prefix}}roles default create exampleName @role @role @role @role** ~ Creates a default role set. `exampleName` is any name you would like to call this set. You will need this name for other commands. The default role that is automatically assigned is the first @role.",
"**{{prefix}}roles default delete exampleName** ~ Deletes the default role set with this name.",
"**{{prefix}}roles default add exampleName @role @role @role @role** ~ Adds all the roles to the set.",
"**{{prefix}}roles default remove exampleName @role @role @role @role** ~ Removes all the roles to the set."
],
"Creates a default roleset.",
[
"**{{prefix}}roles default create exampleName @role @role @role @role** ~ Creates a default role set. `exampleName` is any name you would like to call this set. You will need this name for other commands. The default role that is automatically assigned is the first @role."
],
"Deletes a default roleset.",
[
"**{{prefix}}roles default delete exampleName** ~ Deletes the default role set with this name."
],
"Adds roles to a default roleset.",
[
"**{{prefix}}roles default add exampleName @role @role @role @role** ~ Adds all the roles to the set."
],
"Removes roles from a default roleset.",
[
"**{{prefix}}roles default remove exampleName @role @role @role @role** ~ Removes all the roles to the set."
],
"Manage your grouped rolesets. Grouped role sets allow you to automatically assign multiple roles if a user gains a role.",
[
"**{{prefix}}roles grouped** ~ Lists all your grouped role sets.",
"**{{prefix}}roles grouped create exampleName @role @role @role @role** ~ Creates a grouped role set. `exampleName` is any name you would like to call this set. You will need this name for other commands. The grouped role is the first @role.",
"**{{prefix}}roles grouped delete exampleName** ~ Deletes the grouped role set with this name.",
"**{{prefix}}roles grouped add exampleName @role @role @role @role** ~ Adds all the roles to the set.",
"**{{prefix}}roles grouped remove exampleName @role @role @role @role** ~ Removes all the roles to the set."
],
"Creates a grouped roleset.",
[
"**{{prefix}}roles grouped create exampleName @role @role @role @role** ~ Creates a grouped role set. `exampleName` is any name you would like to call this set. You will need this name for other commands. The grouped role is the first @role."
],
"Deletes a grouped roleset.",
[
"**{{prefix}}roles grouped delete exampleName** ~ Deletes the grouped role set with this name."
],
"Adds roles to a grouped roleset.",
[
"**{{prefix}}roles grouped add exampleName @role @role @role @role** ~ Adds all the roles to the set."
],
"Removes roles from a grouped roleset.",
[
"**{{prefix}}roles grouped remove exampleName @role @role @role @role** ~ Removes all the roles to the set."
],
"Manage your required rolesets. Required role sets allow you to automatically remove roles if a user gains a role assuming they don't have the required role first.",
[
"**{{prefix}}roles required** ~ Lists all your required role sets.",
"**{{prefix}}roles required create exampleName @role @role @role @role** ~ Creates a required role set. `exampleName` is any name you would like to call this set. You will need this name for other commands. The required role is the first @role.",
"**{{prefix}}roles required delete exampleName** ~ Deletes the required role set with this name.",
"**{{prefix}}roles required add exampleName @role @role @role @role** ~ Adds all the roles to the set.",
"**{{prefix}}roles required remove exampleName @role @role @role @role** ~ Removes all the roles to the set."
],
"Creates a required roleset.",
[
"**{{prefix}}roles required create exampleName @role @role @role @role** ~ Creates a required role set. `exampleName` is any name you would like to call this set. You will need this name for other commands. The required role is the first @role."
],
"Deletes a required roleset.",
[
"**{{prefix}}roles required delete exampleName** ~ Deletes the required role set with this name."
],
"Adds roles to a required roleset.",
[
"**{{prefix}}roles required add exampleName @role @role @role @role** ~ Adds all the roles to the set."
],
"Removes roles from a required roleset.",
[
"**{{prefix}}roles required remove exampleName @role @role @role @role** ~ Removes all the roles to the set."
],
"Manage your unique rolesets. Unique role sets allow you to automatically remove all the roles in the set if a user gains a role.",
[
"**{{prefix}}roles unique** ~ Lists all your unique role sets.",
"**{{prefix}}roles unique create exampleName @role @role @role @role** ~ Creates a unique role set. `exampleName` is any name you would like to call this set. You will need this name for other commands.",
"**{{prefix}}roles unique delete exampleName** ~ Deletes the unique role set with this name.",
"**{{prefix}}roles unique add exampleName @role @role @role @role** ~ Adds all the roles to the set.",
"**{{prefix}}roles unique remove exampleName @role @role @role @role** ~ Removes all the roles to the set."
],
"Creates a unique roleset.",
[
"**{{prefix}}roles unique create exampleName @role @role @role @role** ~ Creates a unique role set. `exampleName` is any name you would like to call this set. You will need this name for other commands."
],
"Deletes a unique roleset.",
[
"**{{prefix}}roles unique delete exampleName** ~ Deletes the unique role set with this name."
],
"Adds roles to a unique roleset.",
[
"**{{prefix}}roles unique add exampleName @role @role @role @role** ~ Adds all the roles to the set."
],
"Removes roles from a unique roleset.",
[
"**{{prefix}}roles unique remove exampleName @role @role @role @role** ~ Removes all the roles to the set."
],
"🔆 Role reactions allow users to give or take roles from from themself by tapping on a reaction.",
[
"{{prefix}}help roles reactions add",
"{{prefix}}help roles reactions create",
"{{prefix}}help roles reactions delete",
"{{prefix}}help roles reactions remove",
"{{prefix}}help roles reactions setup"
],
"➕ Add a new reaction and roles to an existing role reaction.",
[
"**{{prefix}}roles reactions add name :emoji: @role**"
],
"🆕 Create a new reaction role.",
[
"**{{prefix}}roles reactions create name #channel messageID :emoji: @role**"
],
"🗑️ Delete a reaction role.",
[
"**{{prefix}}roles reactions delete name**"
],
"➖ Remove a reaction from the role reaction.",
[
"**{{prefix}}roles reactions remove name :emoji:**"
],
"⚙️ Automatically setups a color wheel reaction role on your server.",
[
"**{{prefix}}roles reactions setup**"
],
"💬 Manage your role messages feature that sends a message whenever a user gains or loses a role.",
[
"**{{prefix}}roles messages** ~ View your current role messages.",
"",
"{{prefix}}help roles messages create",
"{{prefix}}help roles messages delete"
],
"🆕 Creates a new role message.",
[
"**{{prefix}}roles messages create add @role #channel Your custom text message here.** ~ Creates a role message when a role is **ADDED** to a user and sends it to this channel.",
"**{{prefix}}roles messages create remove @role #channel Your custom text message here.** ~ Creates a role message when a role is **REMOVE** to a user and sends it to this channel.",
"",
"`NOTE:` The user will always be @ mentioned automatically, you do not need to worry about it.",
"`NOTE:` To send a role message as a custom embed simply provide a embed code. You can test and finalize your embed using the {{prefix}}embed command."
],
"🗑️ Deletes a role message.",
[
"**{{prefix}}roles messages delete @role**"
],
"Assigned a public role to themself.",
"Removed a public role from themself.",
"Please bare with me, this can take some time...",
"💡 Feedback Area 🐛",
"Idea From {{username}}",
"Bug Report From {{username}}",
"ideas-suggestions",