-
Notifications
You must be signed in to change notification settings - Fork 0
/
bots.json
15530 lines (15530 loc) · 813 KB
/
bots.json
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
{
"ok": true,
"data": [
{
"authors": [
"139871249567318017"
],
"cachedImages": {
"avatar": "/appdata/7f4147e6f09191fa077f2b530cce4a0579b1eb310e4131c758689c8a7016afa8.png",
"cover": null,
"preview": []
},
"category": "fun",
"contents": [
{
"description": "Games, Trivia and image manipulation! We have a meme Generator, text generator and more",
"locale": "en-GB",
"name": "OcelotBOT",
"page": "<h1>OcelotBOT is a general purpose tool and meme bot.</h1><h3>You can find the command list below, or in discord using !help</h3><table><tr><td>Command Name</td><td>Usage (Without the brackets)</td></tr><tr><td>Magic 8-ball</td><td>!8ball <question></td></tr><tr><td>Achievement Get!</td><td>!achievement <text></td></tr><tr><td>Wise Advice</td><td>!advice</td></tr><tr><td>Artifical Intelligence</td><td>!ai <message></td></tr><tr><td>Apex Stats</td><td>!apex [platform] <player></td></tr><tr><td>User Avatar</td><td>!avatar <@User></td></tr><tr><td>B-ify</td><td>!b <url></td></tr><tr><td>Band Name Generator</td><td>!bandname</td></tr><tr><td>Barcode Generator</td><td>!barcode <text></td></tr><tr><td>So Sad Meme</td><td>!beatmywife [url]</td></tr><tr><td>Bernie Meme</td><td>!bernie <text></td></tr><tr><td>Big Text Generator</td><td>!bigtext <text></td></tr><tr><td>Bulge Image</td><td>!bulge [url]</td></tr><tr><td>Calculator</td><td>!calc [sum]</td></tr><tr><td>Chess</td><td>!chess start <@player>/<move></td></tr><tr><td>Chinese Text</td><td>!chinese <text></td></tr><tr><td>Christmas Countdown</td><td>!christmas</td></tr><tr><td>Clap Text</td><td>!clap <text></td></tr><tr><td>Command Count</td><td>!commandcount</td></tr><tr><td>Compliment <code title='May provide NSFW results. Can be restricted/disabled with !settings.'>NSFW</code></td><td>!compliment <person></td></tr><tr><td>Crop Image</td><td>!crop [URL]</td></tr><tr><td>Crush</td><td>!crush <user or url></td></tr><tr><td>Curse Image</td><td>!curse [url]</td></tr><tr><td>Deepdream Image</td><td>!deepdream [url]</td></tr><tr><td>Deepfry</td><td>!deepfry [url]</td></tr><tr><td>Dictionary Lookup</td><td>!define <word></td></tr><tr><td>Urban Dictionary</td><td>!defineud <word></td></tr><tr><td>Dictator Meme</td><td>!dictator <user or url></td></tr><tr><td>Doot Doot</td><td>!doot</td></tr><tr><td>Edgy Text</td><td>!edgy <text></td></tr><tr><td>Emoji Search</td><td>!emoji <term></td></tr><tr><td>Enhance Image</td><td>!enhance [url]</td></tr><tr><td>This is epic meme</td><td>!epic [url]</td></tr><tr><td>Error Message Generator</td><td>!error <message></td></tr><tr><td>Expand</td><td>!expand <word></td></tr><tr><td>Red Eyes</td><td>!eyes [url or @user]</td></tr><tr><td>Face Recognition</td><td>!face [url] or embed</td></tr><tr><td>Leave Feedback</td><td>!feedback [message]</td></tr><tr><td>Ocelot Premium</td><td>!premium</td></tr><tr><td>Fire Text Generator</td><td>!firetext <text></td></tr><tr><td>Coin Flip</td><td>!flip</td></tr><tr><td>Fortnite Stats</td><td>!fortnite [platform] <player></td></tr><tr><td>Halloween Countdown</td><td>!halloween</td></tr><tr><td>Handicapped Meme</td><td>!handicap <text></td></tr><tr><td>Harry Potter Text Generator</td><td>!potter <text></td></tr><tr><td>Help Command</td><td>!help [command]</td></tr><tr><td>Patient Says</td><td>!patient <text></td></tr><tr><td>Ice Text Generator</td><td>!icetext <text></td></tr><tr><td>Identify Image</td><td>!identify [URL]</td></tr><tr><td>Google Image Search</td><td>!image <text></td></tr><tr><td>Imitate User</td><td>!imitate <@user> <message></td></tr><tr><td>Implode Image</td><td>!implode [url]</td></tr><tr><td>Insult Generator</td><td>!insult <person></td></tr><tr><td>Bot Invite Link</td><td>!invite</td></tr><tr><td>IP Info</td><td>!ipinfo <ip></td></tr><tr><td>Jesus Meme</td><td>!jesus <text></td></tr><tr><td>JPEG-ify</td><td>!jpeg [url]</td></tr><tr><td>Available Languages</td><td>!languages</td></tr><tr><td>Last Crash</td><td>!lastcrash</td></tr><tr><td>Love Text Generator</td><td>!lovetext <text></td></tr><tr><td>Mafia Boss</td><td>!mafia <@user1> <@user2></td></tr><tr><td>Maxi Code Generator</td><td>!maxi <text></td></tr><tr><td>Meme</td><td>!meme help</td></tr><tr><td>Monochrome Image</td><td>!monochrome [url]</td></tr><tr><td>Morse Code Generator</td><td>!morse <text></td></tr><tr><td>New Nickname Generator</td><td>!newnick</td></tr><tr><td>Noot Noot</td><td>!noot</td></tr><tr><td>Number Fact</td><td>!numberfact <number></td></tr><tr><td>Opinion on <code title='May provide NSFW results. Can be restricted/disabled with !settings.'>NSFW</code></td><td>!opinion <person></td></tr><tr><td>Strong Opinions Meme</td><td>!opinions <text></td></tr><tr><td>Oil Painting</td><td>!pain [url]</td></tr><tr><td>Ping Address</td><td>!ping <address> [timeout]</td></tr><tr><td>Playing stats</td><td>!playing <game></td></tr><tr><td>Porn Suggest <code title='May provide NSFW results. Can be restricted/disabled with !settings.'>NSFW</code></td><td>!pornsuggest [country] [gay/straight/tranny]</td></tr><tr><td>User Profile</td><td>!profile help</td></tr><tr><td>QR Code Generator</td><td>!qr <text></td></tr><tr><td>Rate</td><td>!rate <thing></td></tr><tr><td>Recolour Image</td><td>!recolour [url]</td></tr><tr><td>Reminders</td><td>!remind <in> \"<message>\"</td></tr><tr><td>Remove Background</td><td>!removebg [URL]</td></tr><tr><td>It's Rewind Time</td><td>!rewind [url]</td></tr><tr><td>Ronald Says</td><td>!ronald <text></td></tr><tr><td>Rotate Image</td><td>!rotate [url] [deg]</td></tr><tr><td>Rule34 Search <code title='May provide NSFW results. Can be restricted/disabled with !settings.'>NSFW</code></td><td>!rule34 <search></td></tr><tr><td>Screenshot Website</td><td>!screenshot <URL></td></tr><tr><td>Source Server Info</td><td>!serverinfo <ip:port></td></tr><tr><td>Bot Settings</td><td>!settings help/set/list/enableCommand/disableCommand</td></tr><tr><td>Sexy Dice <code title='May provide NSFW results. Can be restricted/disabled with !settings.'>NSFW</code></td><td>!sexydice</td></tr><tr><td>Sexy Singles</td><td>!sexysingle <user or url></td></tr><tr><td>Sharpen Image</td><td>!sharpen [url]</td></tr><tr><td>Ship Generator</td><td>!ship <@user1> <@user2> ...</td></tr><tr><td>Shy Meme</td><td>!shy <text></td></tr><tr><td>Auto-Smile</td><td>!smile [URL]</td></tr><tr><td>Snapchat Text</td><td>!snapchat [url] [text]</td></tr><tr><td>Snapcode Generator</td><td>!snapcode <username></td></tr><tr><td>We live in a society meme</td><td>!society [url]</td></tr><tr><td>Guess The Song</td><td>!guess [stop/stats]</td></tr><tr><td>Spell with Reactions</td><td>!spell [^] <send></td></tr><tr><td>Spoilerise Text</td><td>!spoiler <text></td></tr><tr><td>Spongebob</td><td>!spongebob [text]</td></tr><tr><td>Stats</td><td>!stats</td></tr><tr><td>Swirl Image</td><td>!swirl [url]</td></tr><tr><td>Tic Tac Toe</td><td>!tictactoe start <@player>/<grid position></td></tr><tr><td>Time</td><td>!time [timezone]</td></tr><tr><td>Trivia</td><td>!trivia leaderboard monthly</td></tr><tr><td>User Info</td><td>!user <@User></td></tr><tr><td>User Settings</td><td>!usersettings help/set/list/enableCommand/disableCommand</td></tr><tr><td>User Stats</td><td>!userstats <user></td></tr><tr><td>VirusTotal Scan</td><td>!virustotal <URL></td></tr><tr><td>Vote For OcelotBOT</td><td>!vote</td></tr><tr><td>Wave Image</td><td>!wave [url]</td></tr><tr><td>Weather</td><td>!weather <place></td></tr><tr><td>Wikipedia Search</td><td>!wiki <term></td></tr><tr><td>Zalgo Text</td><td>!zalgo <text></td></tr></table>"
}
],
"count": null,
"created": 1547495946245,
"edited": 1557003366386,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": "Ocelotworks",
"repo": "OcelotBOTV5"
},
"hide": false,
"id": "146293573422284800",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/146293573422284800/9453e8e5b0394839542074338bb5c0f4.png",
"cover": null,
"preview": []
},
"invite": "https://ocelot.xyz/invite?source=terminal",
"nsfw": false,
"oauth": null,
"random": 10.436985149879582,
"state": "approved",
"support": "https://discord.gg/7YNHpfF",
"trigger": {
"customisable": true,
"mentionable": false,
"prefix": [
"!"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": "https://ocelot.xyz"
},
{
"authors": [
"166179284266778624"
],
"cachedImages": {
"avatar": "/appdata/558811a47a1aaebef21f5fde9678cd084084edd03b0bb864b4de04f2e31eb43a.png",
"cover": null,
"preview": []
},
"category": "music",
"contents": [
{
"description": "Rythm is a feature-rich, easy to use Discord music bot",
"locale": "en-GB",
"name": "Rythm",
"page": "<!--\r\n aaaaaaaaaaaaaaaaaaa\r\n-->"
}
],
"count": null,
"created": 1542569433000,
"edited": 1546553739971,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "235088799074484224",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/235088799074484224/16c197c4c3f0eb808f9bceb6e1075e71.png",
"cover": null,
"preview": []
},
"invite": "https://rythmbot.co/invite",
"legacy": true,
"nsfw": false,
"oauth": null,
"random": 10.297840232807875,
"state": "approved",
"support": null,
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"rm!"
]
},
"type": "bots",
"videos": {},
"website": null
},
{
"authors": [
"158049329150427136"
],
"cachedImages": {
"avatar": "/appdata/a941286a9ff59cc6cf2768748f634615a16a9aae703264a7a3aa35979acd020e.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "A random service that provides information on various things",
"locale": "en-GB",
"name": "BotBoy",
"page": "<!-- this is not useful for me -->"
}
],
"count": null,
"created": 1542569433000,
"edited": 1559145270245,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": "Snazzah",
"repo": "BotBoy"
},
"hide": false,
"id": "168238624775602176",
"images": {
"avatar": "https://images.discordapp.net/avatars/168238624775602176/49d33043901ac93ef15e144d2713bc32.png",
"cover": null,
"preview": []
},
"invite": "https://bot.discord.io/botboy",
"nsfw": false,
"oauth": null,
"random": 10.281385475277096,
"state": "approved",
"support": null,
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"^"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": null
},
{
"authors": [
"158049329150427136"
],
"cachedImages": {
"avatar": "/appdata/d2ac1cfea1ebc4785942cbce161af2cbf024228924bac63b4323f6e55b7b5999.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "Manage Trello Boards right from your Discord!",
"locale": "en-GB",
"name": "Trello",
"page": "<!-- no description yet -->"
}
],
"count": null,
"created": 1542569433000,
"edited": 1559145372210,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "202930020396564480",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/202930020396564480/ee3a0442f46b039e6318218df3f85fcd.png",
"cover": null,
"preview": []
},
"invite": "https://bot.discord.io/trello",
"nsfw": false,
"oauth": null,
"random": 10.346947833238891,
"state": "approved",
"support": null,
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"T!"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": null
},
{
"authors": [
"115134128717955080"
],
"cachedImages": {
"avatar": "/appdata/3b1c2da9cb3e00c15602461ad77de15e4ab731b27a385f9010c1e6823d4c301c.png",
"cover": null,
"preview": []
},
"category": "utility",
"contents": [
{
"description": "An elite Discord toolbox specializing in custom commands",
"locale": "en-GB",
"name": "Arraybot",
"page": "<!--\r\n Please fill this out asap.\r\n-->"
}
],
"count": null,
"created": 1542569433000,
"edited": 1546457772120,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": "Arraying",
"repo": "Arraybot"
},
"hide": false,
"id": "177735619668213760",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/177735619668213760/54a8bd97752cff38269325cc31007b45.webp",
"cover": null,
"preview": []
},
"invite": "https://discordapp.com/oauth2/authorize?client_id=177735533064093696&scope=bot&permissions=268528647",
"legacy": true,
"nsfw": false,
"oauth": null,
"random": 10.436560320567416,
"state": "approved",
"support": null,
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"//"
]
},
"type": "bots",
"videos": {},
"website": null
},
{
"authors": [],
"cachedImages": {
"avatar": "/appdata/72b4eb96c6c3b3d4268db972d038dd2454cebfb8cc02c4471da9cbb0e500c0cc.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "Customizable music and fun bot with games, currency, and a lot to offer!",
"locale": "en-GB",
"name": "Mantaro",
"page": " <link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>\n<style>\n body {\n font-family: 'Roboto', sans-serif;\n }\n\t\t.doublelist {\n\t\t\tlist-style-type: none;\n\t\t\tlist-style-position: inside;\n\t\t\tcolumns: 2;\n\t\t\t-webkit-columns: 2;\n\t\t\t-moz-columns: 2;\n\t\t}\n\n\t\tcode {\n\t\t\tbackground-color: #\nf9f9f9 !important;\n\t\t\tcolor: #222 !important;\n\t\t\tborder-radius: 5px;\n\t\t}\n\t\t\n\t\ta:link, a:visited, a:hover {\n\t\t\n\t\t}\n</style>\n\t<center>\n\t<h3>Currency, Anime, Music, Moderation, Games, osu! and everything you might want in a customizable and stable Discord™️ bot</h3>\n\t\t<h3>Customizable welcome messages, 100% clear music, Action (emotion) commands and a wholesome currency system with Items, Achievements, Mining and way more!</h3>\n\t<br>\n\t<h2>Main Features</h2>\n\t<div>\n\t\t<ul style=\"list-style-type: none;\">\n\t\t\t<li style = \"margin: 10px;\">Make your chat funnier with <code>~>greet</code>, <code>~>pat</code> or <code>~>hug</code>!</li>\n\t\t\t<li style = \"margin: 10px;\">Play Music! (<code>~>play</code>, <code>~>queue</code>, <code>~>np</code>)</li>\n<li style = \"margin: 10px;\">Play games!\n (<code>~>game pokemon</code>, <code>~>game number</code>, <code>~>trivia</code>, <code>~>game character</code> and more!)</li>\n\t\t\t<li style = \"margin: 10px;\">Check <b>osu!</b> player scores and informations about a player using <code>~>osustats</code>!</li>\n\t\t\t<li style = \"margin: 10px;\">Create your own Custom Commands with <code>~>custom</code>!</li>\n\t\t\t<li style = \"margin: 10px;\">Check the Weather from everywhere with the <code>~>weather</code> command.</li>\n\t\t\t<li style = \"margin: 10px;\">Play a simulated Currency system with the Currency commands! (Use <code>~>profile</code> to start)</li>\n\t\t\t<li style = \"margin: 10px;\">Don't forget the birthdays! Use the <code>~>birthday</code> and I'll remind! (If the server owner configures the birthday announcr)</li>\n\t\t\t<li style = \"margin: 10px;\">Configure my +55 options with <code>~>opts</code>.</li>\n\t\t\t<li style = \"margin: 10px;\">Search the Urban Dictionary!(<code>~>urban</code>)</li>\n\t\t</ul>\n\t</div>\n\t<hr>\n\t<h2>Some more features (with more to discover!)</h2>\n\t<div>\n\t\t<ul class=\"doublelist\" style=\"list-style-type: none;\">\n\t\t\t<li style = \"margin: 10px;\"><b>Action Commands (<code>bite bloodsuck cuddle facedesk greet highfive hug kiss lewd meow nom nuzzle pat poke pout slap smile stare teehee tickle tsundere</code>):</b><br>Add anime GIF actions to your conversation and make them funnier!</li>\n\t\t\t<li style = \"margin: 10px;\"><b>Music Commands (<code>play queue np skip shuffle repeat volume removetracforceplay forceskip move np pause play queue removetrack repeat restartsong rewind shuffle skip skipahead stop volume</code>):</b><br>First class music with no delay or loss!</li>\n\t\t\t<li style = \"margin: 10px;\"><b>Custom Commands (<code>custom</code>):</b><br>Use your creativity to the limit!</li>\n\t\t\t<li style = \"margin: 10px;\"><b>Anime Commands (<code>anime character</code>):</b><br>Find information about your favorite animes and characters.</li>\n\t\t\t<li style = \"margin: 10px;\"><b>Currency Commands (<code>badges balance daily gamble inventory itemtransfer leaderboard loot market mine opencrate profile rep slots transfer</code>):</b><br>A simulated currency system in Mantaro. Be one of the richest people in the global position and enjoy mining, looting and achievements!</li>\n\t\t\t<li style = \"margin: 10px;\"><b>Other Commands :</b><br><code>8ball game trivia about avatar ban remindme birthday dice</code><br><code>dictionary guildinfo help kick konachan math misc</code><br><code>opts osustats ping iam iamnot prune coinflip choose quote randomfact stats</code><br><code>time translate urban userinfo weather yandere danbooru rule34 mute unmute dictionary</code><br><b>With many more to discover!</b></li>\n\t\t</ul>\n\t</div>\n\t<hr>\n<!--\nThis data was imported from ls.terminal.ink\n-->\n"
}
],
"created": 1527811200000,
"edited": 1527811200000,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "213466096718708737",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/213466096718708737/1dbce9ca83454e761bdb6a482354f8c0.jpg",
"cover": null,
"preview": []
},
"invite": "https://is.gd/mantaro",
"legacy": true,
"oauth": null,
"random": 10.028579942107738,
"state": "approved",
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"~>"
]
},
"type": "bots",
"videos": {},
"website": null
},
{
"authors": [],
"cachedImages": {
"avatar": "/appdata/93090759183cc579e3644e4de71523e601ff220d8077c4a7ee81bed631ce858d.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "Primary purpose is to serve as a Japanese language learning tool, but there are fun commands as well",
"locale": "en-GB",
"name": "HawkBot",
"page": "# HawkBot\n\nPrimary purpose is to serve as a Japanese language learning tool, but there are fun commands as well.\n\nThe bot has a dictionary lookup and kanji information. Kanji stroke orders soon:tm:\n"
}
],
"created": 1542569433000,
"edited": 1542569433000,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": "CyberHawkSoftware",
"repo": "HawkBot"
},
"hide": false,
"id": "193403332046487552",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/193403332046487552/38a30b75bf7b1cf3642e58bc0e14d71d.webp",
"cover": null,
"preview": []
},
"invite": "https://discordapp.com/oauth2/authorize?client_id=193403294419255297&scope=bot&permissions=0",
"legacy": true,
"nsfw": false,
"oauth": null,
"random": 10.532016875645489,
"state": "approved",
"trigger": {
"customisable": true,
"mentionable": false,
"prefix": [
"<"
]
},
"type": "bots",
"videos": {},
"website": null
},
{
"authors": [
"103347843934212096"
],
"cachedImages": {
"avatar": "/appdata/7ab102093a22031edfda6fb709f0ff8dfb7294dfd7afe6bbfa7b5335494d3a48.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "A multipurpose discord bot - Moderation and Fun!",
"locale": "en-GB",
"name": "blargbot",
"page": "<iframe src=\"https://blargbot.xyz/\" class=\"ls-iframe\"></iframe>\r\n<!--\r\nThis data was imported from ls.terminal.ink\r\n-->\r\n"
}
],
"count": null,
"created": 1527811200000,
"edited": 1556752160635,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "134133271750639616",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/134133271750639616/fabafe460a672e878ca13494c8753955.png",
"cover": null,
"preview": []
},
"invite": "https://invite.blargbot.xyz",
"nsfw": false,
"oauth": null,
"random": 10.530211686551354,
"state": "approved",
"support": null,
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"b!"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": null
},
{
"authors": [
"141610251299454976"
],
"cachedImages": {
"avatar": "/appdata/545349632438970c46c017980aa6681386c663da8f951726723b7e3c85e6e651.png",
"cover": "/appdata/c082f6f5bbac7d570025d216fcb7a03c65b982b90c33578d50ab10cbfd0d86fd.png",
"preview": []
},
"category": "games",
"contents": [
{
"description": "Fun boiled to the basics",
"locale": "en-GB",
"name": "Discord RPG",
"page": "# What is Discord Dungeons?\r\n\r\nIt's a trap!\r\n\r\nJust kidding.\r\nIt’s not a trap, it’s a Discord bot!\r\n\r\n\"Like a robot?\" Kind of. It’s a code controlled user, that listens for commands and posts information based on those commands. DiscordRPG is a popular way of bringing your own Roleplaying Adventure to your discord server. Join a guild, go on adventures, and even fight alongside friends, or against your enemies! Plus, you will never have to worry about losing your progress. DiscordRPG stores all your character info centrally, so no matter what server you are on, you can keep playing from where you left off!\r\n\r\n## Our Features\r\n\r\n### Play Online\r\nAs Discord Dungeons runs on Discord, you can play it from anywhere! In your browser, on your desktop, even on your mobile devices! Just add the bot to your Discord and you're ready to start playing!\r\n\r\n### Regular Updates\r\nWith tons of content, Discord Dungeons offers hours upon hours of gameplay! And with more content being added regularly, the fun will never stop!\r\n\r\n### Secure\r\nAs Discord Dungeons runs as a Discord bot, you never have to worry about losing any progress. Everything's saved to secure databases with backups the moment your progress updates.\r\n\r\n### Play with friends!\r\nAlthough Discord Dungeons is mostly a singleplayer experience, that shouldn't stop you from enjoying it with others. DRPG lets you compete against, and trade with, your fellow server members and friends. Anything is possible when you work together.\r\n\r\n### Gameplay\r\nUse Skills like woodcutting, mining, fishing, and foraging. Craft items, tools and weapons to progress. Purchase a new set of adventuring gear, or buy and sell items on the global market. Explore DRPG with a compass and pet by your side! Anything is possible when your man smells like Ol- er... anything is possible.\r\n\r\n### Customizable Settings\r\nDon’t like the way commands work on your server? Change the prefix! The default prefix is #! but you can change it to whatever you want. You can also give the bot a new nickname if DiscordRPG isn’t hardcore enough for you."
}
],
"count": 71665,
"created": 1555430103008,
"edited": 1556750539295,
"flags": {
"adverts": false,
"inAppPurchases": true,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "170915256833540097",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/170915625722576896/6f73c8670624d78bdbfea882332b393d.webp",
"cover": "https://discorddungeons.me/img/main-bg.jpg",
"preview": []
},
"invite": "https://discordapp.com/oauth2/authorize?&client_id=170915256833540097&scope=bot&permissions=24640",
"nsfw": false,
"oauth": null,
"random": 10.152975661723243,
"state": "approved",
"support": "https://discordapp.com/invite/xy3UbVb",
"trigger": {
"customisable": true,
"mentionable": true,
"prefix": [
"#!"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": "https://discorddungeons.me"
},
{
"authors": [
"193060889111298048"
],
"cachedImages": {
"avatar": "/appdata/b61851f9ab6d5c2303762ad6a853bfc901868ced86d0ee9a41d4a218a974e2c9.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "A Discord guild ambient life simulation!",
"locale": "en-GB",
"name": "DisWorld",
"page": "# [DisWorld](https://botz.mattcowley.co.uk/disworld/)\r\n\r\n>> A Discord guild ambient life simulation! <<\r\n\r\n### Links\r\n\r\n [Invite DisWorld](https://botz.mattcowley.co.uk/disworld/invite) |\r\n [DisWorld website](https://botz.mattcowley.co.uk/disworld/) |\r\n [DisWorld support](https://botz.mattcowley.co.uk/disworld/support)\r\n"
}
],
"created": 1542569433000,
"edited": 1543315238339,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "325634360210620422",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/325634360210620422/cca393e4b910c02d9d9e49755109103c.png",
"cover": null,
"preview": []
},
"invite": "https://botz.mattcowley.co.uk/disworld/invite",
"legacy": true,
"nsfw": false,
"oauth": null,
"random": 10.065857202377716,
"state": "denied",
"support": null,
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"<edit pls>"
]
},
"type": "bots",
"videos": {},
"website": null
},
{
"authors": [
"138481382794985472"
],
"cachedImages": {
"avatar": "/appdata/95cea8b1e6dc6b2313bc650e8d8e41c84ca346cb74baf4ac3fff3f9471cbc6fd.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "The music bot themed for toxic meme lords",
"locale": "en-GB",
"name": "Best meme bot",
"page": "<iframe src=\"https://gnarbot.xyz/\" class=\"ls-iframe\">\r\n<!--\r\nThis data was imported from ls.terminal.ink\r\n-->\r\n"
}
],
"count": null,
"created": 1527811200000,
"edited": 1556751614791,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "201503408652419073",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/201503408652419073/93d0cb4e9e1fde688cc90d211662d1df.png",
"cover": null,
"preview": []
},
"invite": "https://discordapp.com/oauth2/authorize?client_id=201492375653056512&scope=bot&permissions=8",
"nsfw": false,
"oauth": null,
"random": 10.600234530857344,
"state": "approved",
"support": null,
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"_"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": null
},
{
"authors": [],
"cachedImages": {
"avatar": "/appdata/3c306858885b970ab45f89d5dac0073f79f3facbd8886e5b4e8a4b17de5a4d47.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "An anime bot that includes a ton of weeb stuff and multiple moderation, music, and fun features for improving your Discord experience",
"locale": "en-GB",
"name": "Senpai",
"page": "Bot has 24/7 hosting and should be up most of the time if its down it get an update/bugfix and should be up again in some hours.\n<!--\nThis data was imported from ls.terminal.ink\n-->\n"
}
],
"created": 1527811200000,
"edited": 1527811200000,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "206955935229280256",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/206955935229280256/cbb18ac8da28b3c8d186096dc538088e",
"cover": null,
"preview": []
},
"invite": "https://discordapp.com/oauth2/authorize/?scope=bot&client_id=206955239985774593",
"legacy": true,
"oauth": null,
"random": 10.561587692103288,
"state": "approved",
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"%",
"@Senpai",
"Custom"
]
},
"type": "bots",
"videos": {},
"website": null
},
{
"authors": [
"261912303132344320"
],
"cachedImages": {
"avatar": "/appdata/96da93a196c26b7bde478a71d30beda18bb4ba53bd6b5b697c76b2b45a44afbe.png",
"cover": null,
"preview": []
},
"category": "other",
"contents": [
{
"description": "Oliver is a modbot and a music bot as well ",
"locale": "en-GB",
"name": "Oliver",
"page": "# Oliver\r\n\r\nOliver is a music bot and can be used for a modbot.\r\n\r\nFor moderating your server, you can use modlogs which are logs of actions done by moderators. \r\nYou can add members logs, everytime someone joins your server it will be logged in a channel of your choice. It also logs the number of leaves and joins by members.\r\n\r\n\r\n<!--\r\n Stan LOONA\r\n Stan Talent\r\n-->\r\n"
}
],
"created": 1542569433000,
"edited": 1543069338903,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "261912303132344320",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/307653150515658753/74a76b62c096d2836c9c748cc3a8da78.png",
"cover": null,
"preview": []
},
"invite": "https://lepeli.fr/invite/discordfork",
"legacy": true,
"nsfw": false,
"oauth": null,
"random": 10.608323524895725,
"state": "denied",
"support": null,
"trigger": {
"customisable": false,
"mentionable": false,
"prefix": [
"l?",
"L?",
"lepeli"
]
},
"type": "bots",
"videos": {},
"website": null
},
{
"authors": [
"86477779717066752"
],
"cachedImages": {
"avatar": "/appdata/25066484d4477be75bdc796c9549abaa4255ee428d779ad51d0c6b2b90e59957.png",
"cover": null,
"preview": []
},
"category": "utility",
"contents": [
{
"description": "A powerful bot for your discord server.",
"locale": "en-GB",
"name": "xelA",
"page": "To invite **xelA** to your server, you will need a server which meets **some** of the requirements:\r\n\r\n- Active server\r\n- Non-abusive members (aka. people who will spam bots)\r\n- Over 1000 members (doesn't count bots)\r\n- Server with intention of growing\r\n\r\nIf you want to take further contact, visit my Discord server by clicking [here](https://discord.gg/DpxkY3x), then talk to me at AlexFlipnote#0001\r\n\r\nAlso remember, the settings are in JSON format, so I hope you have some experience with it.\r\n"
}
],
"count": null,
"created": 1542569433000,
"edited": 1554645241672,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": "AlexFlipnote",
"repo": "discord_bot.py"
},
"hide": false,
"id": "267941509272174592",
"images": {
"avatar": "https://docs.xela.dev/assets/images/profile-128.png",
"cover": null,
"preview": []
},
"invite": "https://xela.dev/invite",
"legacy": true,
"nsfw": false,
"oauth": null,
"random": 10.380318384829343,
"state": "approved",
"support": "https://discord.gg/DpxkY3x",
"trigger": {
"customisable": true,
"mentionable": true,
"prefix": [
"/",
"xela"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": "https://xela.dev/"
},
{
"authors": [
"154497072148643840"
],
"cachedImages": {
"avatar": "/appdata/383e322c42fe8e516db75097746f702e91978dbcaee673d683b22a372de7ed82.png",
"cover": null,
"preview": []
},
"category": "music",
"contents": [
{
"description": "A bot for music, games, and moderation",
"locale": "en-GB",
"name": "cat-bot",
"page": "Looking for a well-rounded bot that can do almost anything? Cat may be able to fulfill your needs.\r\n\r\nSome of the features included:\r\n\r\n* High-quality audio player with a custom playlist system (YouTube, SoundCloud, Spotify, Twitch, Shoutcast/Icy/http streams, Mixer, Vimeo, Bandcamp...)\r\n* Level based system with user-customizable profile cards, also has level-based role application and removal\r\n* RPG-style Adventure game\r\n* Casino games with a global economy system\r\n* Mod tools\r\n* Starboard\r\n* Custom image-based welcome messages for new members\r\n* A watching system for your server that reports when anything changes (server joins, leaves, role changes, message deletions or edits)\r\n* Reaction-based raffle/giveaway\r\n* NSFW image commands\r\n* and much more as new commands are added frequently...\r\n\r\nCat is based on Red-DiscordBot's new rewrite. I welcome feedback as I am the dev for the audio module. Requests for new features are also welcomed (but will take a back seat to new audio improvements being written first).\r\n\r\nCat will never cost money to use and will have as close to a 100% uptime as possible.\r\n\r\nUse c!help to get started once you've invited him. You can also set your own prefix for the bot with the c!set serverprefix command."
}
],
"count": null,
"created": 1558984509138,
"edited": 1558984509138,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": null,
"repo": null
},
"hide": false,
"id": "246917294461157376",
"images": {
"avatar": "https://cdn.discordapp.com/avatars/246917294461157376/ef01dfc8849339d8c4fec39cb776abaf.png",
"cover": null,
"preview": []
},
"invite": "https://discordapp.com/oauth2/authorize?client_id=246917294461157376&scope=bot&permissions=536210519",
"nsfw": false,
"oauth": null,
"random": 10.558376638408117,
"state": "approved",
"support": "https://discord.gg/th6eS3T",
"trigger": {
"customisable": true,
"mentionable": false,
"prefix": [
"c!"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": "https://cat3890.tumblr.com/"
},
{
"authors": [
"151916651988647936"
],
"cachedImages": {
"avatar": "/appdata/04ef223991df4c5f20c845615e6ca0b76ec0ac31e444db41f775c46c73ec38f3.png",
"cover": "/appdata/6c2b3be0f940953d3ec2f27374d0cfb71fd6453c01d49a582237e9065f57696a.png",
"preview": [
"/appdata/8fa09c43b93ba97343b7077c2654dabf16fc095b1a1cde8338e279b107207962.png",
"/appdata/fc9458b3471a1cb4fe46bdfada30d52eafee86c85cc72f7757ce4e6a4eeba718.png",
"/appdata/e57dc0da2cb862428246692bd2e48c79937bf0c2c75e46c6736c70c43e8d54c4.png",
"/appdata/4eee32eeeb5200e0f4aa7010d0cd1ff404ec745a6f75d01242e151ecd6f3a677.png",
"/appdata/f654d12eaa37a0421a5660160572680a75f90c92d7f5a312f82cdae2ed4bd271.png",
"/appdata/029b9ff501a800eff6d4885e9edbfb446548c2ca06fbf5a4ee17f2661fed4cb5.png",
"/appdata/903084c931e3eb28c2de22d15d0a440ed095f646c9cf407738eae9389d8a996f.png"
]
},
"category": "fun",
"contents": [
{
"description": "PikaGirl is a bot with various features such as cleverbot, image generators, an economy and more!",
"locale": "en-GB",
"name": "PikaGirl",
"page": "### [Click me to visit my full website!](https://pikagirl.me)\r\nPikaGirl is an advanced Discord Bot with a wide variety of features to fulfill everyone's needs. PikaGirl's commands range from random fun commands, utility commands, GIF searching, a global economy, NSFW commands, lookup commands for Overwatch, Minecraft, and Osu, meme generators, and so much more!"
}
],
"count": null,
"created": 1542569433000,
"edited": 1553430213017,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": "PikaDude",
"repo": "/"
},
"hide": false,
"id": "169678500893163520",
"images": {
"avatar": "https://cdn.pikagirl.me/img/S1.png?a",
"cover": "https://cdn.pikagirl.me/img/B1.png",
"preview": [
"https://pikagirl.me/assets/img/screenshots/cleverbot.png",
"https://pikagirl.me/assets/img/screenshots/image-gen.gif",
"https://pikagirl.me/assets/img/screenshots/booru.png",
"https://pikagirl.me/assets/img/screenshots/game.gif",
"https://pikagirl.me/assets/img/screenshots/economy.png",
"https://pikagirl.me/assets/img/screenshots/objection.gif",
"https://pikagirl.me/assets/img/screenshots/gif.gif"
]
},
"invite": "https://pikagirl.me/invite?ref=terminal",
"legacy": true,
"nsfw": false,
"oauth": "169678426360381451",
"random": 10.782518184155089,
"state": "approved",
"support": "https://discordapp.com/invite/012P7BEh4fzkryZ6P",
"trigger": {
"customisable": true,
"mentionable": false,
"prefix": [
">"
]
},
"type": "bots",
"videos": {
"youku": null,
"youtube": null
},
"website": "https://pikagirl.me/"
},
{
"authors": [
"210898009242861568"
],
"cachedImages": {
"avatar": "/appdata/ac7c7677d8c117c5cce19c09a1fef4ecf50cc120f7f60632a5048cdd5b54068b.png",
"cover": "/appdata/d83e0cf40f138b632e8db9c610b7cf0edb5a069f09b8bd3aba67bfa60a4b215d.png",
"preview": []
},
"category": "fun",
"contents": [
{
"description": "Provides commands surrounding The Simpsons, Futurama and Rick and Morty. 24/7 Uptime! ",
"locale": "en-GB",
"name": "FlandersBOT",
"page": "# FlandersBOT\r\n## A bot for sharing your favourite references! \r\n\r\nA discord bot with commands surrounding The Simpsons, Futurama and Rick and Morty *with 24/7 uptime!.*\r\n\r\nFlandersBOT provides commands for The Simpsons, Futurama and Rick and Morty quoting/searching/content. FlandersBOT uses Frinkiac, Morbotron and Master of All Science to provide commands for both random and searchable Simpsons, Futurama and Rick and Morty images/gifs with their appropriate quotes embedded.\r\nThis means that you're always just one message away from sharing your favourite moments!\r\n\r\n## Add FlandersBOT to your Discord Server\r\nTo invite FlandersBOT to your own discord server and start using it now, click the invite button above!\r\n\r\n## Usage\r\nThe bot commands can be executed using several different methods/prefixes, to minimise clashing with other discord bots. Any command can be prefixed with an @mention, ned or diddly/doodly when you really want to flaunt those Flanders-isms.\r\n\r\nIf you're not a fan of any of these prefixes, you can add a new prefix to your server using the setprefix command.\r\n\r\n### Usage Examples:\r\n\r\n@FlandersBOT#0680 info\r\n\r\nned info \r\n\r\ndiddly info \r\n\r\ndoodly info \r\n\r\ndiddly-info \r\n\r\ndoodly-info \r\n \r\n*All examples above are valid methods of executing any command below.*\r\n\r\n## Commands\r\n*All commands must start with one of the command prefixes or @FlandersBOT#0680*\r\n\r\n### General\r\n\r\n**help** - Will send this list of commands. \r\n\r\n**info** - Will send a personal message with more information about me. \r\n\r\n**prefix** - Will post the prefixes I respond to on your server. \r\n\r\n**setprefix** [prefix] - Sets a prefix I will respond to on your server. \r\n\r\n**feedback** [message] - Send a feedback message or suggestions. \r\n\r\n**invite** - Will post an invite link for me to join your server. \r\n\r\n**vote** - Will post the benefits of voting for me and a link to vote. \r\n\r\n**update** - Will post the highlights of my last major update. \r\n\r\n**stats** - Will post some of my statist-diddly-istics. \r\n\r\n\r\n### TV Shows\r\n\r\n**simpsons** - Will post a random Simpsons gif with caption. \r\n\r\n**simpsons [quote]** - Searches for a Simpsons gif using the quote. \r\n\r\n**simpsonstrivia** - Starts a game of trivia using 100+ Simpsons questions. \r\n\r\n\r\n**futurama** - Will post a random Futurama gif with caption. \r\n\r\n**futurama [quote]** - Searches for a Futurama gif using the quote. \r\n\r\n**futuramatrivia** - Starts a game of trivia using 100+ Futurama questions. \r\n\r\n\r\n**rickandmorty** - Will post a random Rick and Morty gif with caption. \r\n\r\n**rickandmorty** [quote] - Searches for a Rick and Morty gif using the quote. \r\n\r\n\r\n**epinfo** - Will post episode information on the last post made in the channel. \r\n\r\nFor Example: ned info, diddly help, doodly-simpsons\r\n\r\n## Support Server\r\n\r\nIf you need any help with FlandersBOT, would like to provide feedback, suggestions or have any other questions regarding FlandersBOT, join the FlandersBOT Support Server on discord using the \r\nlink above!"
}
],
"count": null,
"created": 1544532891709,
"edited": 1544701675543,
"flags": {
"adverts": false,
"inAppPurchases": false,
"linux": null,
"mac": null,
"win": null
},
"github": {
"owner": "MitchellAW",
"repo": "FlandersBOT"
},
"hide": false,
"id": "221609683562135553",
"images": {
"avatar": "https://images.discordapp.net/avatars/221609683562135553/f7f24ffd61d71ea66be1f063ab11a43c.png?size=512",
"cover": "https://github.com/MitchellAW/MitchellAW.github.io/blob/master/images/flanders-bannerBOT.png?raw=true",
"preview": []
},
"invite": "https://discordapp.com/oauth2/authorize?client_id=221609683562135553&scope=bot&permissions=19456",
"legacy": false,
"nsfw": false,
"oauth": "221609683562135553",
"random": 10.478767306198971,
"state": "approved",
"support": "https://discord.gg/xMmxMYg",
"trigger": {
"customisable": true,
"mentionable": true,
"prefix": [
"Ned",
"diddly",
"doodly"
]
},
"type": "bots",
"videos": {},
"website": "https://github.com/MitchellAW/FlandersBOT"
},
{