This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.py
1365 lines (1340 loc) · 57.4 KB
/
constants.py
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
from typing import Text, Dict
from db_handler.schemas import *
TOKEN: Text = ""
VOTELINK: Text = "https://top.gg/bot/1016198853306884126/vote"
COLORS: Dict[str, str] = {"red": "\033[31m", "green": "\033[32m", "yellow": "\033[33m", "blue": "\033[34m", "default": "\033[37m"}
NEXTCORD_PERM_LABELS = ['Create Instant Invite', 'Kick Members', 'Ban Members', 'Administrator', 'Manage Channels', 'Manage Guild', 'Add Reactions', 'View Audit Log', 'Priority Speaker', 'Stream', 'Read Messages', 'Send Messages', 'Send Tts Messages', 'Manage Messages', 'Embed Links', 'Attach Files', 'Read Message History', 'Mention Everyone', 'External Emojis', 'View Guild Insights', 'Connect', 'Speak', 'Mute Members', 'Deafen Members', 'Move Members', 'Use Voice Activation', 'Change Nickname', 'Manage Nicknames', 'Manage Roles', 'Manage Webhooks', 'Manage Emojis', 'Use Slash Commands', 'Request To Speak', 'Manage Events', 'Manage Threads', 'Create Public Threads', 'Create Private Threads', 'External Stickers', 'Send Messages In Threads', 'Start Embedded Activities', 'Moderate Members']
NEXTCORD_PERM_VALUES = ['create_instant_invite', 'kick_members', 'ban_members', 'administrator', 'manage_channels', 'manage_guild', 'add_reactions', 'view_audit_log', 'priority_speaker', 'stream', 'read_messages', 'send_messages', 'send_tts_messages', 'manage_messages', 'embed_links', 'attach_files', 'read_message_history', 'mention_everyone', 'external_emojis', 'view_guild_insights', 'connect', 'speak', 'mute_members', 'deafen_members', 'move_members', 'use_voice_activation', 'change_nickname', 'manage_nicknames', 'manage_roles', 'manage_webhooks', 'manage_emojis', 'use_slash_commands', 'request_to_speak', 'manage_events', 'manage_threads', 'create_public_threads', 'create_private_threads', 'external_stickers', 'send_messages_in_threads', 'start_embedded_activities', 'moderate_members']
RPS_CHOICES = ["Rock", "Paper", "Scissors"]
LOGGING_TYPES_LABELS = ["Message Logs", "Role Logs", "Member Logs", "Voice Logs", "Channel Logs", "Invite Logs", "User Logs"]
LOGGING_TYPES_VALUES = ["message", "role", "member", "voice", "channel", "invite", "user"]
LOGGING_TYPE_DBID = {
"message":1,
"role":2,
"member":3,
"voice":4,
"channel":5,
"invite":6,
"user":7
}
COLOUR_MAIN = 0x43a1e8
COLOUR_GOOD = 0x03C04A
COLOUR_NEUTRAL = 0xFCAE1E
COLOUR_BAD = 0x900D09
BACKSLASH = '\n'
COOKIE = "🍪"
DBENDPOINT = ""
DBUSER = ""
DBPASS = ""
DBNAME = ""
DBPORT = 3306
DB_API_KEY = ""
NAME_TO_SCHEMA = {
"guild_main": ("/guild/main/", GuildMain),
"serverstats": ("/guild/stats/", ServerstatsMain),
"guild_mod": ("/guild/mod/logs/", GuildMod),
"logging": ("/guild/logging/", LoggingMain),
"economy": ("/economy/", EconomyMain),
"economy_user_settings": ("/economy/settings/", EconomyUserSettings),
"tickets": ("/support/tickets", CurrentTickets),
"autothread": ("/auto_threads/", AutoThreadMain),
"sticky": ("/sticky_messages/", StickyMain),
"support": ("/support/config", SupportMain),
"ticket_blacklist": ("support/blacklists/", TicketBlacklists),
"voice": ("/private_voice/channels", VoiceChannels),
"voice_config": ("/private_voice/config", VoiceChannelsMain),
"giveaway": ("/giveaway/", GiveawayMain),
"giveaway_blocked": ("/giveaway/blocked/", GiveawayBlocked),
"giveaway_booster": ("/giveaway/booster/", GiveawayBoosters),
"suggestions": ("/suggestions/", SuggestionsMain),
"suggestions_info": ("/suggestions/info/", SuggestionsInfo),
"nickname_config": ("/nickname/config/", NicknameMain),
"nickname_requests": ("/nickname/request/", NicknameRequests),
"reaction_roles": ("/reaction_roles/", ReactionMain),
"level_main": ("/levels/config/", LevelMain),
"level_users": ("/levels/user/", LevelUsers),
"level_roles": ("/levels/roles/", LevelRoles),
"level_bonus_roles": ("/levels/boosts/roles/",LevelBonusRoles),
"level_bonus_channels": ("/levels/boosts/channels/",LevelBonusChannels),
"application_questions": ("/applications/application/", ApplicationQuestions),
"application_responses": ("/applications/responses/", ApplicationAnswers),
"autopublish": ("/autopublish/", Autopublish),
"reminders": ("/reminders/", RemindersBase),
"moderation_main": ("/guild/mod/main/", ModerationMain),
"giveaway_temp_boosters": ("/giveaway/temp_booster/", GiveawayTempBoosterBase),
"user_statistics": ("/user_statistics/", UserStatisticsBase)
}
ECONOMY_TIPS = [
"**Tip:** Hunting Rifles, Hunting Spears, Fishing Rods, Spades. Drills, and computers have a chance of breaking when using their specific commands!",
"**Tip:** You can use poison and bait to boost your chances of catching something in the hunt and fish commands",
"**Tip:** A minion will generate 1 cookie every 10 seconds but it costs 100,000 cookies to buy!",
"**Tip:** The permanent +0.01 boost will increase in price every time you buy a new one",
"**Tip:** You can use </task all:1060300525138083920> to go through all money making commands more easily",
"**Tip:** You can share cookies with friends using </share:1060300367780397136>",
"**Tip:** You can invite me to your own server [here](<https://nomindustries.com/bigbot/invite>)"
]
POSSIBLEITEMS = ["spear", "rifle", "comp", "p_trophy", "r_trophy", "sr_trophy", "smr_trophy", "simr_trophy", "rod", "norm_boost", "bait", "minion", "yeast", "pedestal", "energy", "poison", "spade", "drill"]
POSSIBLEITEMSINFO = {
"spear": {"db_id":6, "id":"spear", "max":50, "name":"Hunting Spear", "cost": 1000, "description":"Allows you to use the hunt command with a 50% success rate"},
"rifle": {"db_id":7,"id":"rifle", "max":50, "name":"Hunting Rifle", "cost": 2500, "description":"Allows you to use the hunt command with an 80% success rate"},
"comp": {"db_id":18,"id":"comp", "max":25, "name":"Computer", "cost": 5600, "description":"Gives you access to the invest command and the postvideo command"},
"spade": {"db_id":28, "id":"spade", "max":50, "name":"Spade", "cost":1000, "description":"Gives you access to 4 mines in the dig command"},
"drill": {"db_id":29, "id":"drill", "max":50, "name":"Drill", "cost":5000, "description":"Gives you access to 8 mins in the dig command"},
"p_trophy": {"db_id":12,"id":"p_trophy", "max":1, "name":"Poor Trophy", "cost": 1, "description":"Shows that you're... well... poor"},
"r_trophy": {"db_id":13,"id":"r_trophy", "max":1, "name":"Rich Trophy", "cost": 100000, "description":"Allows you to flex that you are rich"},
"sr_trophy": {"db_id":14,"id":"sr_trophy", "max":1, "name":"Super Rich Trophy", "cost": 1000000, "description":"Allows you to flex that you are super rich"},
"smr_trophy": {"db_id":15,"id":"smr_trophy", "max":1, "name":"Super Mega Rich Trophy", "cost": 10000000, "description":"Allows you to flex that you are super mega rich"},
"simr_trophy": {"db_id":16,"id":"simr_trophy", "max":1, "name":"Super Insanely Mega Rich Trophy", "cost": 100000000, "description":"Allows you to flex that you are super insanely mega rich"},
"rod": {"db_id":17,"id":"rod", "max":50, "name":"Fishing Rod", "cost":1200, "description":"Allows you to use the fish command with a 50% success rate"},
"norm_boost": {"db_id":19,"id":"norm_boost", "max":100, "name":"Permanent +0.01 boost", "cost":None, "description":"Boosts the income you get on some commands by +0.01"},
"bait": {"db_id":21,"id":"bait", "max":1000, "name":"Bait", "cost":5, "description":"Boosts your chance of catching a fish when doing the fish command to 80%. Used up when you use the fish command"},
"minion": {"db_id":8, "id":"minion", "max":1, "name":"Minion", "cost":100000, "description":"Collects 1 🍪 per minute that you can claim using minion commands"},
"yeast": {"db_id":24, "id":"yeast", "max":1000, "name":"Yeast", "cost":5, "description":"Allows you to get more 🍪's from the nom command! Used up on nom command usage."},
"pedestal":{"db_id":25, "id":"pedestal", "max":50, "name":"Praying Pedestal", "cost":3000, "description":"Boosts your income from the pray command."},
"energy":{"db_id":26, "id":"energy", "max":500, "name":"Energy Drink", "cost":25, "description":"Increases the income from using the work command."},
"poison":{"db_id":27, "id":"poison", "max":750, "name":"Poison", "cost":10, "description":"Increase the income from using the hunt command and decrease the chance of not catching anything when using the hunt command. Used up on use"}
}
SHOPITEMS = ["spear", "rifle", "comp", "p_trophy", "r_trophy", "sr_trophy", "smr_trophy", "simr_trophy", "rod", "norm_boost", "bait", "minion", "yeast", "pedestal", "energy", "poison", "spade", "drill"]
SHOPITEMINFO = {
"spear": {"db_id":6, "id":"spear", "max":50, "name":"Hunting Spear", "cost": 1000},
"rifle": {"db_id":7,"id":"rifle", "max":50, "name":"Hunting Rifle", "cost": 2500},
"comp": {"db_id":18,"id":"comp", "max":25, "name":"Computer", "cost": 5600},
"spade": {"db_id":28, "id":"spade", "max":50, "name":"Spade", "cost":1000},
"drill": {"db_id":29, "id":"drill", "max":50, "name":"Drill", "cost":5000},
"p_trophy": {"db_id":12,"id":"p_trophy", "max":1, "name":"Poor Trophy", "cost": 1},
"r_trophy": {"db_id":13,"id":"r_trophy", "max":1, "name":"Rich Trophy", "cost": 100000},
"sr_trophy": {"db_id":14,"id":"sr_trophy", "max":1, "name":"Super Rich Trophy", "cost": 1000000},
"smr_trophy": {"db_id":15,"id":"smr_trophy", "max":1, "name":"Super Mega Rich Trophy", "cost": 10000000},
"simr_trophy": {"db_id":16,"id":"simr_trophy", "max":1, "name":"Super Insanely Mega Rich Trophy", "cost": 100000000},
"rod": {"db_id":17,"id":"rod", "max":50, "name":"Fishing Rod", "cost":1200},
"norm_boost": {"db_id":19,"id":"norm_boost", "max":100, "name":"Permanent +0.01 boost", "cost":None},
"bait": {"db_id":21,"id":"bait", "max":1000, "name":"Bait", "cost":5},
"minion": {"db_id":8, "id":"minion", "max":1, "name":"Minion", "cost":100000},
"yeast": {"db_id":24, "id":"yeast", "max":1000, "name":"Yeast", "cost":5},
"pedestal":{"db_id":25, "id":"pedestal", "max":50, "name":"Praying Pedestal", "cost":3000},
"energy":{"db_id":26, "id":"energy", "max":500, "name":"Energy Drink", "cost":25},
"poison":{"db_id":27, "id":"poison", "max":750, "name":"Poison", "cost":10}
}
WELCOME_MESSAGES = ["{user} joined!", "{user} hopped into the server!", "{user} has entered the server!", "{user} is now here!", "Welcome, {user}!", "{user} has appeared!", "We've been expecting you {user}..."]
DIGCHANCES = {
"Indium": 100,
"Silver": 80,
"Osmium": 60,
"Platinum":35,
"Gold": 90,
"Rhenium": 75,
"Palladium": 50,
"Rhodium": 20
}
DIGPROFIT = {
"Indium": 40,
"Silver": 60,
"Osmium": 80,
"Platinum": 105,
"Gold": 80,
"Rhenium": 130,
"Palladium": 180,
"Rhodium": 230
}
HUNTWINITEMS = ["duck", "chicken", "beaver", "deer", "weasel", "blue tit", "owl", "salmon", "trout"]
HUNTWINOPTIONS = {
"duck": {
"name":"Duck",
"amount":50,
"messages":
[
"You went hunting and found a duck! A duck breeder bought it off you for",
f"You found and killed a duck on your hunt! You managed to sell it at the market for",
f"On your adventure you found a duck and just about managed to capture it. On the way back a kind man offered to buy it off you for"
]
},
"chicken": {
"name":"Chicken",
"amount":15,
"messages":
[
"You found a chicken on your hunt! Unfortunately, chicken prices are down at the moment and you could only sell it for",
"You found a chicken on your adventure but just as you were about to capture it, it managed to escape! Luckily on your depressing walk back you found a wallet lying on the floor with",
f"While hunting in the woods you came across a chicken and you were able to sell it to the local breeder for"
]
},
"beaver": {
"name":"Beaver",
"amount":63,
"messages":[
"On your hunt you found a beaver chilling in behind a tree. You rudely interrupted its peaceful afternoon and sold it to the highest bidder for",
"While you were sneakily rummaging through the woods for any animal you came across an innocent little beaver but as you were sneaking up on it the beaver suddenly heard you and started running. This provoked the race of the century which ended 10 seconds later with you tripping over a tree log. Luckily for you, you face planted right into a ring that must have been dropped earlier on. You went to the local jeweler and after a few minutes of negotiating you managed to sell it for",
"After hours of hunting you decided it was time to go back home empty handed but luckily on your way back from the woods you found a clueless beaver and you took your only opportunity of the day and pounced! Unfortunately, since it was late, you only managed to sell the beaver in the market for"
]
},
"deer": {
"name":"Deer",
"amount": 130,
"messages":[
"While you were walking through the woods, crushing leaves beneath your feet, you spotted a deer about 40 yards away. You wanted to make sure you got as close as possible to ensure you didn't miss your shot. After about 20 more feet of walking you were ready! You lined up your shot and fired, narrowly missing a tree trunk on the way to the deer. After collecting the deer you sold it to some travelers for",
"On your hunt you found a deer and sold it for",
"You went on a hunt in the woods and managed to capture a deer! You sold it for"
]
},
"weasel": {
"name":"Weasel",
"amount":35, "messages":[
"On your journey through the wilderness, you stumble upon an early waking weasel and start to walk towards it quietly, as to not scare it away. You just about manage to catch it and after bringing it back to the market, you are able to sell it for",
"You captured a weasel in one of your traps! You sold it to a friend for",
"You found and captured a weasel in the forest. You sold it to a breeder for"
]
},
"blue tit": {
"name":"Blue tit",
"amount":20,
"messages":[
"You just about managed to hit a blue tit out of the sky and sold it in the market for",
"On your hunt you found a blue tit that had fallen out of the sky and was injured. You took it to the vet and once it was all fixed up you sold it to a breeder for",
"You were about to leave the forest after a bad day of hunting but on the very edge of the forest you saw and captured a blue tit. You sold it to a neighbour for"
]
},
"owl": {
"name":"Owl",
"amount": 50,
"messages":[
"You found an injured owl on your journey and sold it to a pet store for",
"On your hunt you spotted an owl and just about managed to catch it. You sold it at the market for",
"While strolling through the forest you managed to find a baby owl and sold to a breeder for"
]
},
"salmon": {
"name":"Salmon",
"amount":75,
"messages":[
"You found a lake during your hunt and managed to catch a salmon. You sold it at the market for",
"On your adventure in the forest you cam across a pond and managed to catch a salmon from it. You sold it to a breeder for",
"You stumbled upon a river in the forest and managed to kill a salmon. You sold it for"
]
},
"trout": {
"name":"Trout",
"amount":30,
"messages":[
"You came across a small lake and managed to catch a trout. You sold it for",
"You found a pond in the woods and caught a trout in it. You sold it at the local market for",
"You managed to catch a trout in a little river and sold it to a breeder for"
]
}
}
FISHWINITEMS = ["cod", "brill", "crab", "crayfish", "eel", "haddock", "salmon"]
FISHINGWINOPTIONS ={
"cod": {
"name":"Cod",
"amount":30,
"messages":[
"You caught a cod during your fish and sold it for",
"During your fish you managed to catch a cod! You gave it to the aquarium who were somehow running low on them for",
"You managed to catch a cod in a little river in the wood and sold it at the market for"
]
},
"brill":{
"name":"Brill",
"amount":20,
"messages":[
"You caught a small brill and sold it for a measly",
"You managed to catch a small Brill and sold it to a breeder for",
"During your fish you caught a brill in a pond and sold it at the market for"
]
},
"crab":{
"name":"Crab",
"amount":75,
"messages":[
"You found a crab on the outskirts of your usual fishing pond and sold it to a traveler for",
"You caught a crab during your fish and sold it to a breeder for",
"You managed to catch a crab and sold it in the market for"
]
},
"crayfish":{
"name":"Crayfish",
"amount":100,
"messages":[
"You caught a crayfish during your fish and sold it for",
"You just about managed to catch the crayfish before you lost it! You sold it in the market for",
"Your lucky pond never fails you! You found a crayfish and sold it to a breeder for"
]
},
"eel":{
"name":"Eel",
"amount":60,
"messages":[
"You caught a slimy little eel and sold it in the market for",
"You managed to catch an eel during your fish and sold it to a random man you found in the woods for",
"During your fish you managed to catch an eel and sell it for"
]
},
"haddock":{
"name":"Haddock",
"amount":40,
"messages":[
"You managed to catch a small haddock and sold it to the local breeder for",
"You caught a haddock in a river and sold it at the market for",
"You caught a haddock and the man fishing next to you offered to buy it for"
]
},
"tuna":{
"name":"Tuna",
"amount":80,
"messages":[
"A violent tuna bit on your rod and you just about managed to kill it before it bit your fingers off. You sold it at the market for",
"You caught a tuna and sold it to a breeder for",
"You managed to catch a tuna and sold it for"
]
},
"salmon":{
"name":"Salmon",
"amount":67,
"messages":[
"You managed to catch a salmon at a nearby lake and sold it for",
"Your lucky pond never fails you! You caught a salmon at your lucky pond and sold it at the market for",
"You caught a salmon and sold it to a breeder for"
]
}
}
HELP_COMMAND_USER = {
"Server":
[
{
"name": "</serverinfo:1057397467752189962>",
"command_name": "serverinfo",
"description": "Gives information about the server",
"usage": "/serverinfo "
},
{
"name": "</membercount:1057397471728373881>",
"command_name": "membercount",
"description": "Find out the member count",
"usage": "/membercount "
}
],
"Role":
[
{
"name": "</role id:1057397465847967904>",
"command_name": "role id",
"description": "Gives you the ID of a role",
"usage": "/role id <role> "
},
{
"name": "</role info:1057397465847967904>",
"command_name": "role info",
"description": "Shows role info",
"usage": "/role info <role> "
},
],
"Nickname":
[
{
"name": "</nickname request submit:1057399221986263191>",
"command_name": "nickname request submit",
"description": "Submit a nickname change request",
"usage": "/nickname request submit <nickname> "
}
],
"Misc":
[
{
"name": "</botinfo:1057399053064863875>",
"command_name": "botinfo",
"description": "Information about the bot",
"usage": "/botinfo "
},
{
"name": "</ping:1057399054285406410>",
"command_name": "ping",
"description": "Get the bot's ping",
"usage": "/ping "
}
],
"Games":
[
{
"name": "</coinflip:1057399225282990180>",
"command_name": "coinflip",
"description": "Do a coin flip",
"usage": "/coinflip "
},
{
"name": "</rps:1057399226851659796>",
"command_name": "rps",
"description": "Play rock paper scissors",
"usage": "/rps [choice] "
},
{
"name": "</tictactoe:1057399227849916585>",
"command_name": "tictactoe",
"description": "Play tictactoe against an opponent",
"usage": "/tictactoe <opponent> "
}
],
"Timers":
[
{
"name": "</reminder create:1057399225282990180>",
"command_name": "reminder new",
"description": "Create a new reminder",
"usage": "/reminder new <duration> [message] "
},
{
"name": "</reminder list:1057399226851659796>",
"command_name": "reminder list",
"description": "List all your current reminders.",
"usage": "/reminder list "
},
{
"name": "</reminder remove:1057399227849916585>",
"command_name": "reminder remove",
"description": "Remove a reminder",
"usage": "/reminder remove <reminder-id> "
}
],
"Economy":
[
{
"name": "</inventory:1067927099211522088>",
"command_name": "inventory",
"description": "View your inventory items",
"usage": "/inventory [user] "
},
{
"name": "</work:1067927104185962648>",
"command_name": "work",
"description": "Work to nom some cookies",
"usage": "/work "
},
{
"name": "</nom:1067927107533021255>",
"command_name": "nom",
"description": "Nom some cookies",
"usage": "/nom "
},
{
"name": "</balance:1067927110972362864>",
"command_name": "balance",
"description": "View your or another user's cookie balance",
"usage": "/balance [member] "
},
{
"name": "</daily:1067927185496748112>",
"command_name": "daily",
"description": "Get your daily cookies",
"usage": "/daily "
},
{
"name": "</weekly:1067927188655054858>",
"command_name": "weekly",
"description": "Get your weekly cookies",
"usage": "/weekly "
},
{
"name": "</monthly:1067927191326818396>",
"command_name": "monthly",
"description": "Get your monthly cookies",
"usage": "/monthly "
},
{
"name": "</pray:1067927196758450307>",
"command_name": "pray",
"description": "Pray to the nom Gods for some more cookies",
"usage": "/pray "
},
{
"name": "</higher-or-lower:1074437831956639825>",
"command_name": "higher-or-lower",
"description": "Play higher or lower for cookies",
"usage": "/higher-or-lower "
},
{
"name": "</shop:1067927199447007363>",
"command_name": "shop",
"description": "Open the shop",
"usage": "/shop "
},
{
"name": "</item:1067927271882633366>",
"command_name": "item",
"description": "Check the information of an item",
"usage": "/item <item> "
},
{
"name": "</buy:1067927277272313917>",
"command_name": "buy",
"description": "Buy an item from the shop",
"usage": "/buy <item> "
},
{
"name": "</leaderboard economy:1067927280564830258>",
"command_name": "leaderboard economy",
"description": "View the global leaderboard",
"usage": "/leaderboard economy "
},
{
"name": "</share:1067927283651858462>",
"command_name": "share",
"description": "Share some of your cookies with another member",
"usage": "/share <member> <cookies> "
},
{
"name": "</hunt:1067927289570013284>",
"command_name": "hunt",
"description": "Hunt in the scary woods to find some cookies",
"usage": "/hunt "
},
{
"name": "</fish:1067927292325670972>",
"command_name": "fish",
"description": "Go fishing to find some treasures",
"usage": "/fish "
},
{
"name": "</postvideo:1067927381236535307>",
"command_name": "postvideo",
"description": "Post a video and hope it does well",
"usage": "/postvideo "
},
{
"name":"</dig:1067927375200923678>",
"command_name":"dig",
"description":"Dig for hidden treasure",
"usage":"/dig "
},
{
"name": "</minion view:1067927384713592882>",
"command_name": "minion view",
"description": "View your minions information",
"usage": "/minion view "
},
{
"name": "</minion empty:1067927384713592882>",
"command_name": "minion empty",
"description": "Empty the cookies in your minion",
"usage": "/minion empty "
},
{
"name":"</task all:1067927387356012676>",
"command_name": "task all",
"description":"Do all money making commands",
"usage": "/task all "
}
],
"Levels":
[
{
"name": "</level:1086786876419084410>",
"command_name": "level",
"description": "View yours or another users level",
"usage": "/level [user] "
},
{
"name": "</leaderboard level:1067927280564830258>",
"command_name": "leaderboard level",
"description": "View the level leaderboard",
"usage": "/leaderboard level "
},
{
"name": "</levels config user:1086786886460248176>",
"command_name": "levels config user",
"description": "Manage your personal levels settings",
"usage": "/levels config user "
}
],
"Private VC":
[
{
"name": "</privatevc invite:1057399306979659917>",
"command_name": "privatevc invite",
"description": "Invite a user to your voice channel",
"usage": "/privatevc invite <member> "
},
{
"name": "</privatevc block:1057399306979659917>",
"command_name": "privatevc block",
"description": "Block a user from your voice channel",
"usage": "/privatevc block <member> "
},
{
"name": "</privatevc public:1057399306979659917>",
"command_name": "privatevc public",
"description": "Creates a 'request to join' channel for other members",
"usage": "/privatevc public "
},
{
"name": "</privatevc transfer:1057399306979659917>",
"command_name": "privatevc transfer",
"description": "Transfer your voice channel to someone else",
"usage": "/privatevc transfer <member> "
}
],
"Applications":
[
{
"name": "</application submit:1095808577442173088>",
"command_name": "application submit",
"description": "Submit an application",
"usage":"/application submit"
}
],
"Music":
[
{
"name": "</lyrics:1057397239724650616>",
"command_name": "lyrics",
"description": "Get the lyrics to a song",
"usage": "/lyrics <song> "
}
],
"User":
[
{
"name": "</user id:1057397462366699541>",
"command_name": "user id",
"description": "Get the ID of a user",
"usage": "/user id <user> "
},
{
"name": "</user info:1057397462366699541>",
"command_name": "user info",
"description": "Shows user info",
"usage": "/user info [user] "
},
{
"name": "</user avatar:1057397462366699541>",
"command_name": "user avatar",
"description": "Shows a users avatar",
"usage": "/user avatar [member] "
}
],
"Fun":
[
{
"name": "</snipe:1057397548903563315>",
"command_name": "snipe",
"description": "Get the content of the last message deleted in a channel",
"usage": "/snipe "
},
{
"name": "</fun trivia:1057397550883283086>",
"command_name": "fun trivia",
"description": "Get a trivia question",
"usage": "/fun trivia [topic] [difficulty] "
},
{
"name": "</fun animal cat:1057397550883283086>",
"command_name": "fun animal cat",
"description": "Get an image of a cat with a fun fact",
"usage": "/fun animal cat "
},
{
"name": "</fun animal dog:1057397550883283086>",
"command_name": "fun animal dog",
"description": "Get an image of a dog with a fun fact",
"usage": "/fun animal dog "
},
{
"name": "</fun animal bird:1057397550883283086>",
"command_name": "fun animal bird",
"description": "Get an image of a bird with a fun fact",
"usage": "/fun animal bird "
},
{
"name": "</fun animal fox:1057397550883283086>",
"command_name": "fun animal fox",
"description": "Get an image of a fox with a fun fact",
"usage": "/fun animal fox "
},
{
"name": "</fun animal kangaroo:1057397550883283086>",
"command_name": "fun animal kangaroo",
"description": "Get an image of a kangaroo with a fun fact",
"usage": "/fun animal kangaroo "
},
{
"name": "</fun animal koala:1057397550883283086>",
"command_name": "fun animal koala",
"description": "Get an image of a koala with a fun fact",
"usage": "/fun animal koala "
},
{
"name": "</fun animal panda:1057397550883283086>",
"command_name": "fun animal panda",
"description": "Get an image of a panda with a fun fact",
"usage": "/fun animal panda "
},
{
"name": "</fun filter blue:1057397550883283086>",
"command_name": "fun filter blue",
"description": "Blue filter",
"usage": "/fun filter blue [member] "
},
{
"name": "</fun filter green:1057397550883283086>",
"command_name": "fun filter green",
"description": "Green filter",
"usage": "/fun filter green [member] "
},
{
"name": "</fun filter greyscale:1057397550883283086>",
"command_name": "fun filter greyscale",
"description": "Greyscale filter",
"usage": "/fun filter greyscale [member] "
},
{
"name": "</fun filter red:1057397550883283086>",
"command_name": "fun filter red",
"description": "Red filter",
"usage": "/fun filter red [member] "
},
{
"name": "</fun filter blurple:1057397550883283086>",
"command_name": "fun filter blurple",
"description": "Blurple filter",
"usage": "/fun filter blurple [member] "
},
{
"name": "</fun filter sepia:1057397550883283086>",
"command_name": "fun filter sepia",
"description": "Sepia filter",
"usage": "/fun filter sepia [member] "
},
{
"name": "</fun filter blur:1057397550883283086>",
"command_name": "fun filter blur",
"description": "Blur filter",
"usage": "/fun filter blur [member] "
},
{
"name": "</fun filter brighten:1057397550883283086>",
"command_name": "fun filter brighten",
"description": "Brighten filter",
"usage": "/fun filter brighten [member] [brightness] "
},
{
"name": "</fun tweet:1057397550883283086>",
"command_name": "fun tweet",
"description": "Generate a fake tweet",
"usage": "/fun tweet <message> [member] [replies] [likes] [retweets] [theme] "
},
{
"name": "</fun youtube:1057397550883283086>",
"command_name": "fun youtube",
"description": "Generate fake youtube comment",
"usage": "/fun youtube <comment> [member] "
},
{
"name": "</fun joke:1057397550883283086>",
"command_name": "fun joke",
"description": "Get a random joke",
"usage": "/fun joke "
}
],
"Internet":
[
{
"name": "</wikipedia:1057398491321741362>",
"command_name": "wikipedia",
"description": "Get information about a query",
"usage": "/wikipedia <query> "
},
{
"name": "</weather:1122956562475008140>",
"command_name": "weather",
"description": "Get the weather in a specific location",
"usage": "/weather <place> "
}
]
}
HELP_COMMAND_MOD = {
"Moderation":
[
{
"name": "</purge:1057398578718453820>",
"command_name": "purge",
"description": "clear some messages from the chat",
"usage": "/purge <amount> "
},
{
"name": "</lock:1057398580182253689>",
"command_name": "lock",
"description": "lock a channel",
"usage": "/lock <channel> "
},
{
"name": "</unlock:1057398581222449172>",
"command_name": "unlock",
"description": "unlock a channel",
"usage": "/unlock <channel> "
},
{
"name": "</slowmode:1066371855201599579>",
"command_name": "slowmode",
"description": "Set a channels slowmode",
"usage": "/slowmode [channel] [time]"
},
{
"name": "</timeout:1057399056898461819>",
"command_name": "timeout",
"description": "Timeout a user",
"usage": "/timeout <member> [reason] [duration] "
},
{
"name": "</untimeout:1057399136527339570>",
"command_name": "untimeout",
"description": "Remove the timeout from a user",
"usage": "/untimeout <member> [reason] "
},
{
"name": "</warn:1057399140465782814>",
"command_name": "warn",
"description": "Warn a member",
"usage": "/warn <member> [reason] "
},
{
"name": "</kick:1057399141719888003>",
"command_name": "kick",
"description": "Kick a member",
"usage": "/kick <member> [reason] "
},
{
"name": "</ban:1066344835163901952>",
"command_name": "ban",
"description": "Ban a member from the server",
"usage": "/ban <member> [reason] [duration]"
},
{
"name": "</unban:1066344836178915370>",
"command_name": "unban",
"description": "Unban a member",
"usage": "/unban <memberid> [reason]"
},
{
"name": "</modlogs:1057399143238221876>",
"command_name": "modlogs",
"description": "Get the moderation history for a member",
"usage": "/modlogs <member> "
},
{
"name": "</warnings:1057399143238221876>",
"command_name": "warnings",
"description": "Get the warning history for a member",
"usage": "/warnings <member> "
},
{
"name": "</punishment info:1057399146354577538>",
"command_name": "punishment info",
"description": "Get the information on a specific punishment",
"usage": "/punishment info <punishment-id> "
},
{
"name": "</punishment edit:1057399146354577538>",
"command_name": "punishment edit",
"description": "Edit the information of a punishment",
"usage": "/punishment edit <punishment-id> "
},
{
"name": "</nickname request accept:1057399221986263191>",
"command_name": "nickname request accept",
"description": "Accept a nickname request",
"usage": "/nickname request accept <member> "
},
{
"name": "</nickname request deny:1057399221986263191>",
"command_name": "nickname request deny",
"description": "Deny a nickname request",
"usage": "/nickname request deny <member> "
},
{
"name": "</setnick:1079409890692431872>",
"command_name": "setnick",
"description": "Set a users nickname",
"usage": "/setnick <user> <nickname> "
},
],
"Support":
[
{
"name": "</add:1057398496669478922>",
"command_name": "add",
"description": "Add a member to a ticket",
"usage": "/add <member> "
},
{
"name": "</ticket-blacklist:1057398576268988526>",
"command_name": "ticket-blacklist",
"description": "Blacklist a user from creating any new tickets in the server",
"usage": "/ticket-blacklist <member> [reason] "
},
{
"name": "</ticket-unblacklist:1057398577334337606>",
"command_name": "ticket-unblacklist",
"description": "Remove a blacklist from a user, allowing them to create new tickets in the server",
"usage": "/ticket-unblacklist <member> "
}
],
"Role":
[
{
"name": "</role add:1057397465847967904>",
"command_name": "role add",
"description": "Adds role to user",
"usage": "/role add <role> [member] "
},
{
"name": "</role remove:1057397465847967904>",
"command_name": "role remove",
"description": "Removes role from user",
"usage": "/role remove <role> [member] "
}
]
}
HELP_COMMAND_ADMIN = {
"Moderation":
[
{
"name": "</moderation config:1108815760480010270>",
"command_name": "moderation config",
"description": "Configure your servers moderation settings",
"usage": "/moderation config "
},
{
"name": "</purge:1057398578718453820>",
"command_name": "purge",
"description": "clear some messages from the chat",
"usage": "/purge <amount> "
},
{
"name": "</lock:1057398580182253689>",
"command_name": "lock",
"description": "lock a channel",
"usage": "/lock <channel> "
},
{
"name": "</unlock:1057398581222449172>",
"command_name": "unlock",
"description": "unlock a channel",
"usage": "/unlock <channel> "
},
{
"name": "</slowmode:1066371855201599579>",
"command_name": "slowmode",
"description": "Set a channels slowmode",
"usage": "/slowmode [channel] [time]"
},
{
"name": "</timeout:1057399056898461819>",
"command_name": "timeout",
"description": "Timeout a user",
"usage": "/timeout <member> [reason] [duration] "
},
{
"name": "</untimeout:1057399136527339570>",
"command_name": "untimeout",
"description": "Remove the timeout from a user",
"usage": "/untimeout <member> [reason] "
},
{
"name": "</warn:1057399140465782814>",
"command_name": "warn",
"description": "Warn a member",
"usage": "/warn <member> [reason] "
},
{
"name": "</kick:1057399141719888003>",
"command_name": "kick",
"description": "Kick a member",
"usage": "/kick <member> [reason] "
},
{
"name": "</ban:1066344835163901952>",
"command_name": "ban",
"description": "Ban a member from the server",
"usage": "/ban <member> [reason] [duration]"
},
{
"name": "</unban:1066344836178915370>",
"command_name": "unban",
"description": "Unban a member",
"usage": "/unban <memberid> [reason]"
},
{
"name": "</modlogs:1057399143238221876>",
"command_name": "modlogs",
"description": "Get the moderation history for a member",
"usage": "/modlogs <member> "
},
{
"name": "</warnings:1057399143238221876>",
"command_name": "warnings",
"description": "Get the warning history for a member",
"usage": "/warnings <member> "
},
{