-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmotd.json
1393 lines (1393 loc) · 68.4 KB
/
motd.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
{
"fightcadevids": "Submit your replays for video encoding: https://fightcadevids.com/submit\n",
"games": [
{
"gameid": "ssf2xjr1",
"motd": "You can select stage using Coin button over character in Character Select Screen\n\nGoukiPedia: http://www.goukipedia.com\nST Revival: https://www.strevival.com\nSRK Wiki: https://wiki.supercombo.gg/w/Super_Street_Fighter_2_Turbo\nF101: https://fighter101.com/main/super-street-fighter-2-turbo-guide\nHitboxes Tool: https://toufadev.github.io/ssf2st/\nRanked Stats: https://stats.ssf2t.com/\n\nBrazilian Discord: https://discord.gg/UMXzgXd6AM\nFrench Discord: https://discord.gg/YHdDM6z\nSpain Discord: https://discord.gg/dp4RjVk\nJapanese Discord: https://discord.gg/pFafAyVamA\nMexico Discord: https://discord.gg/nmRHtYRCRG\nLatin Discord: https://discord.gg/jHpUH7WZyt\nArgentine Community: https://www.facebook.com/groups/196732984444362\nArgentina website: https://www.superturboargentina.com.ar/\nGlobal Discord: https://discord.gg/NTmXb3Fumd\n\n"
},
{
"gameid": "ssf2tnl",
"motd": "*Super Street Fighter II Turbo - New Legacy - Latest version: v0.9 (04/april/2024)*\nA rebalance of Super Turbo that also has many quality of life changes!\n\nYou can select stage using the START button over character in Character Select Screen (*NOT* the Coin button).\nTo pick the OLD version of a character, first pick the character with any P/K button, and confirm the character color with START.\nIf you're getting *DESYNCS* while playing online, please make sure that you and your opponent are both using the latest rom version.\n\nOfficial Site (English): https://newlegacy.fr\nDiscord: https://discord.gg/f6HYxyKMmR\nBrazilian Discord: https://discord.gg/UMXzgXd6AM\n"
},
{
"gameid": "sf",
"motd": "Street Fighter Discord Server: https://discord.gg/e7W46dkURp\n"
},
{
"gameid": "sf2mix",
"motd": "*Street Fighter II - Mix*\n\nOfficial Site (English): https://sf2mix.github.io\n\n*Please make sure you and your opponent have the same revision!!*\n"
},
{
"gameid": "hsf2",
"motd": "Wiki: https://wiki.supercombo.gg/w/Hyper_Street_Fighter_2\n"
},
{
"gameid": "sfa",
"motd": "To pick a Secret Character Go to player-side random box and enter start. For player 2 assume left is right.\nAKUMA/GOUKI: Down, Down, Down, Left, Left, Left then press LP+HP or LK+HK\nVEGA/M.BISON: Down, Down, Left, Left, Down, Left then press LP+HP or LK+HK\nDAN: enter LP, LK, MK, HK, HP, MP or enter HP, HK, MK, LK, LP, MP\n\nBrazilian Discord: https://discord.gg/cV8NW3jnpy\nEnglish Discord: https://discord.gg/yVxNpKw4T9\nWiki: https://wiki.supercombo.gg/w/Street_Fighter_Alpha\n"
},
{
"gameid": "sfa2u",
"motd": "Wiki: https://wiki.supercombo.gg/w/Street_Fighter_Alpha_2\nDiscord: https://discord.gg/bb3rf28MMA\nBrazilian Discord: https://discord.gg/vG7sUdJTUW\nFacebook: https://tinyurl.com/ya7spcom\nThe Haunted Arcade: https://discord.gg/UCAbRXPMvr\nTraining Mode: https://www.mediafire.com/file/ic2p4ok2fm16nu9/fc2_a2_training_fix.zip/file\n"
},
{
"gameid": "sfa3",
"motd": "You can select stage using Coin button over character in Character Select Screen\n\n*How to play Dramatic Battle co-op mode*:\n1) Do not use F3 for reset, instead press F2 and then select \"Exit\".\n2) Press and hold the three kicks (KKK) at the title screen, then press start. P1 should pick first.\n\nBrazilian Discord: https://discord.gg/vG7sUdJTUW\nEnglish Discord: http://discord.gg/Ut863vnW47\nThe Haunted Arcade: https://discord.gg/UCAbRXPMvr\nFrench-Euro Discord: http://discord.gg/T2hYWAd2JK\nWiki/Resources: https://wiki.supercombo.gg/w/Street_Fighter_Alpha_3\n"
},
{
"gameid": "sfa3fp",
"motd": "Power bars always at maximum.\n"
},
{
"gameid": "sfz2apl",
"motd": "Power bars always at maximum.\n"
},
{
"gameid": "sfiii",
"motd": "Discord: https://discord.gg/AXkCFrduJ8\n"
},
{
"gameid": "sfiii2",
"motd": "Discord: https://discord.gg/jK8XAAmPjn\n"
},
{
"gameid": "sfiii3nr1",
"motd": "Discord: https://discord.gg/8hWg5GF\nBrazilian Discord: https://discord.io/Instituto-Masters\nColombian Discord: https://discord.gg/RhpzGyMzsJ\nRussian and CIS Community: https://discord.gg/hSrMGTUtUG\nChilean Discord: https://discord.gg/Ak6S3bd\nOceanic Discord: https://discord.gg/kgbwZxhNy8\nDR Discord: https://discord.gg/8fhbUzTWzG\nTelegram: https://sfiii3.t.me/\nTraining Mode: https://github.com/Grouflon/3rd_training_lua\nGame Resources: https://wiki.supercombo.gg/w/Street_Fighter_3:_3rd_Strike\n"
},
{
"gameid": "sfiiibh",
"motd": "Discord: https://discord.gg/AXkCFrduJ8\nHold Start Button to Select Gill\n"
},
{
"gameid": "sfiii2bh",
"motd": "Discord: https://discord.gg/jK8XAAmPjn\nPut cursor on Akuma and Press Left to select Gill\nPut cursor on Akuma and Press Right to select Shin Akuma\n"
},
{
"gameid": "sfiii3bh",
"motd": "Discord: https://discord.gg/8hWg5GF\nGill is below Alex\nShin Akuma is above Ryu\n"
},
{
"gameid": "sfiii4fs",
"motd": "Balance Changes: https://rvnnotd.wixsite.com/streetfighter/changes\nDiscord: https://discord.gg/nrS6UCRx\n"
},
{
"gameid": "sfiii4n",
"motd": "Balance Changes: https://docs.google.com/document/u/0/d/1EGXvHFP1UeWxFW348FUQgtrjp-FSBXj_oap_V0BZBvQ/mobilebasic\nDiscord: https://discord.gg/wtMHbdrwc3\nGrouflon's Training Lua: https://github.com/Grouflon/3rd_training_lua\n"
},
{
"gameid": "sfz3mix",
"motd": "Official Site: https://sfz3mix.github.io\nBrazilian Discord: https://discord.gg/vG7sUdJTUW\n"
},
{
"gameid": "sfz3mix13",
"motd": "Official Site: https://sfz3mix.github.io\nBrazilian Discord: https://discord.gg/vG7sUdJTUW\n"
},
{
"gameid": "jojobanr1",
"motd": "Wiki: https://wiki.supercombo.gg/w/JoJo's_Bizarre_Adventure:_Heritage_for_the_Future\nDiscord: https://discord.gg/EFZyyJm\nLatam Discord: https://discord.gg/5UGSTUHUCs\nRussian Discord: https://discord.gg/NgcgPHm\nBrazilian Discord: https://discord.gg/R5k3qWt\nHFTF Asia: https://discord.gg/5SWas9pwts\nFrench Discord : https://discord.gg/rXKwpkTkKy\nHFTF Awakened: https://discord.gg/GnDQ9eaGQB\nStand Off official: https://discord.gg/5qAvdKEm33\nTournament of 'Power' Discord: https://discord.gg/vGyArR83GY\n"
},
{
"gameid": "jojo",
"motd": "Venture Discord: https://discord.gg/zxWPnyyvEW\n"
},
{
"gameid": "turfmast",
"motd": "Discord: https://discord.gg/X4NZPxJ\n"
},
{
"gameid": "trstar",
"motd": "Discord: https://discord.gg/5aeYVv52mj\n"
},
{
"gameid": "garou",
"motd": "Play as Grant: Highlight Dong Hwan, hold Start and press \u2191 \u2191 \u2193 \u2193 \u2191 \u2193\nPlay as Kain: Highlight Jae Hoon, hold Start and press \u2193 \u2193 \u2191 \u2191 \u2193 \u2191\n\nWiki: https://wiki.supercombo.gg/w/Garou:_Mark_of_the_Wolves\nDiscord: https://discord.gg/zcpbgDS\nDiscord Brasileiro: https://discord.gg/uaz85NNH9D\nInternational Discord: https://discord.gg/fBuZz26FGA\nInternational Tournaments Discord: https://discord.gg/EjHE5pW\nLatam Discord: https://discord.gg/SjjMD2w83t\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GOeVtP0WAc81s2U4ubVJBb_\n"
},
{
"gameid": "jchan",
"motd": "Discord: https://discord.gg/f5Rkf9qcxC\n"
},
{
"gameid": "jchan2",
"motd": "FAQ/Move List: https://gamefaqs.gamespot.com/arcade/228860-jackie-chan-in-fists-of-fire/faqs/75479\nFists of Fire Mizuumi Wiki: https://wiki.gbl.gg/w/Jackie_Chan_in_Fists_of_Fire\nOfficial Discord: https://discord.gg/f5Rkf9qcxC\n"
},
{
"gameid": "survarts",
"motd": "Discord: https://discord.gg/KUC5xFdzXQ\n"
},
{
"gameid": "xmcota",
"motd": "Wiki: https://wiki.supercombo.gg/w/X-Men:_Children_of_the_Atom\nDiscord: https://discord.gg/e2pQFFj\n"
},
{
"gameid": "matrim",
"motd": "Wiki: https://wiki.gbl.gg/w/Matrimelee\nDiscord: https://discord.gg/8KFWwEHcAU\n"
},
{
"gameid": "mk",
"motd": "Game Resources: https://wiki.supercombo.gg/w/Mortal_Kombat_(Game)\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GN0xG1c3stpTLOUgQ6zAOAH\n"
},
{
"gameid": "mk2",
"motd": "Comunidad Retromancos: https://www.facebook.com/retromancos\nGame Resources: https://wiki.supercombo.gg/w/Mortal_Kombat_II\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GN77BlvtxoVYCyMGJP17WJ9\n"
},
{
"gameid": "umk3",
"motd": "Game Resources: https://wiki.supercombo.gg/w/Ultimate_Mortal_Kombat_3\n"
},
{
"gameid": "sftm",
"motd": "Street Fighter The Movie The Game The Discord: http://streetfighterthemovie.com/\nWiki: https://wiki.gbl.gg/w/Street_Fighter:_The_Movie\n"
},
{
"gameid": "vsavj",
"motd": "Mizuumi Wiki: https://wiki.gbl.gg/w/Vampire_Savior\nSeesaa Wiki: https://seesaawiki.jp/vswiki\nInternational Discord: https://discord.gg/5fwSewN33p\nFrench Discord: https://discord.gg/N6TGH6p\nJapanese Discord: https://discord.gg/AYxPt9P\nBrazilian Discord: https://discord.gg/YGBrAnbvRw\nLatam Discord: https://discord.com/invite/eZ3yZmVNUS\nSpanish server: https://discord.com/invite/NHShB2X\nThe Haunted Arcade: https://discord.gg/UCAbRXPMvr\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GNl6kZ2L4IBDpg7hS2UhobC\nTraining Mode: https://github.com/BornPosthumous/VSAV_Training\n"
},
{
"gameid": "vampjbh",
"motd": "Fightcade Romhacks: https://discord.gg/tFA75Cwx5x\n"
},
{
"gameid": "vhuntjr2",
"motd": "Brazilian Discord: https://discord.gg/b7Q7kW5z9y\nThe Haunted Arcade: https://discord.gg/UCAbRXPMvr\nEnglish Discord: https://discord.gg/5fwSewN33p\nWiki: https://wiki.supercombo.gg/w/Night_Warriors:_Darkstalkers%27_Revenge\nJP Wiki: https://yppts.adam.ne.jp/hunter\n"
},
{
"gameid": "kof97",
"motd": "Discord: discord:https://discord.gg/f2bKbxfP5N\nSuperCombo Wiki: https://wiki.supercombo.gg/w/The_King_of_Fighters_'97\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GNrvl5eaOFhcqxkDS3pdsGA\n"
},
{
"gameid": "kof98",
"motd": "Discord Brasileiro: https://discord.gg/jsJ4tdB\nDiscord Sehab Lmrok https://discord.gg/Ewdt8Z9CV8\nDiscord KOF98EasyBoys: https://discord.gg/cuK2NU8vBB\nSuperCombo Wiki: https://wiki.supercombo.gg/w/The_King_of_Fighters_'98\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GNREYIEIBNA7kxHuHL5bt4D\n"
},
{
"gameid": "kof99",
"motd": "Discord: https://discord.gg/E6njZwVetB\n"
},
{
"gameid": "kof99ae",
"motd": "Discord: https://discord.gg/E6njZwVetB\n"
},
{
"gameid": "kof2000",
"motd": "Discord: https://discord.gg/BQs7VbquaP\n"
},
{
"gameid": "kof2001",
"motd": "Discord: https://discord.gg/x2Zx9hxm94\n"
},
{
"gameid": "kof2002",
"motd": "Wiki: https://wiki.supercombo.gg/w/The_King_of_Fighters_2002\n"
},
{
"gameid": "kof2003",
"motd": "Discord: https://discord.gg/JGQ6XFGDVZ\nWiki: https://wiki.supercombo.gg/w/The_King_of_Fighters_2003\n"
},
{
"gameid": "kof97bng",
"motd": "A recolored version of KOF97. Bosses unlocked. Allows you to choose the same character more than once for the team.\nAt the start of the fight, the player in Advanced mode already has 3 Power Bars.\nIn Extra mode you can instantly fill the power bar the first three times you press LP+LK+HP.\n"
},
{
"gameid": "kof97spw",
"motd": "A version of KOF97 with another balance. Bosses unlocked. Allows you to choose the same character more than once for the team. The Power bar is infinite.\n"
},
{
"gameid": "kof97ubp",
"motd": "A version of KOF97 with another balance. The characters have new moves. Bosses unlocked.\nThe Power bar is infinite. Iori Yagami wears Another Iori's outfit.\n"
},
{
"gameid": "kof97ywb",
"motd": "The characters have new moves. Bosses unlocked. Kyo Kusanagi wears his Nests Saga outfit.\n"
},
{
"gameid": "kof98mp",
"motd": "Infinite power bar. Just hit or take a hit to fill it in Advanced mode, or press LP+LK+HP to fill it in Extra mode.\nCharacters change color between matches. Hold START in the middle of match to change your character.\n"
},
{
"gameid": "kof99bc",
"motd": "Bosses unlocked. Krizalid is below the roulette wheel.\nHighlight Krizalid and hold Start + any attack button to select him without a coat.\n"
},
{
"gameid": "kf2k1pkz",
"motd": "Bosses unlocked: Krizalid, Zero and Igniz. Ron and Glugan can be used as Strikers.\n"
},
{
"gameid": "samsh5sp",
"motd": "Wiki: https://wiki.gbl.gg/w/Samurai_Shodown_V_Special\nDiscord: https://discord.gg/bBs4TAr\nBrazilian Discord: https://discord.io/specialshodown\nLatam Discord: https://discord.gg/HFmcPxTJNg\nLiga SamSho 5 Special (Dojo eSports): https://discord.gg/4K6bATSsWP\n"
},
{
"gameid": "samsho",
"motd": "Discord: https://discord.gg/bBs4TAr\nJapanese atwiki: https://w.atwiki.jp/samurai1\nJapanese Seesaa Wiki: https://seesaawiki.jp/kakugesouko/d/%bd%e9%a5%b5%a5%e0/%a5%e1%a5%e2\nHitboxes, Frame Data, Japanese Events: http://samurai.mania.cx/ss/index.html\n"
},
{
"gameid": "samsho2",
"motd": "Discord: https://discord.gg/bBs4TAr\nJapanese Wiki: http://shinjin.starfree.jp/SinSamurai_Main.htm\n"
},
{
"gameid": "samsho2pe",
"motd": "*Latest version: 2.2 (2024-07-12)*\n"
},
{
"gameid": "samsho3",
"motd": "Wiki: https://wiki.gbl.gg/w/Samurai_Shodown_3\nJapanese Wiki: https://w.atwiki.jp/zankuroumusouken/pages/1.html\nDiscord: https://discord.gg/bBs4TAr\nBeginner's Guide Video: https://youtu.be/_huHz02GFLw\n"
},
{
"gameid": "samsho4",
"motd": "Discord: https://discord.gg/bBs4TAr\nEnglish Wiki: https://dreamcancel.com/wiki/Samurai_Shodown_IV\nJapanese Wiki: http://www5b.biglobe.ne.jp/~hitokiri/amakusa.htm\n"
},
{
"gameid": "samsho5",
"motd": "Discord: https://discord.gg/bBs4TAr\nJapanese Wiki: http://www5b.biglobe.ne.jp/~hitokiri/z_index.htm\n"
},
{
"gameid": "rbff1",
"motd": "Discord: https://discord.gg/7Qvv7K4\n"
},
{
"gameid": "rbff2h",
"motd": "Discord: https://discord.gg/7Qvv7K4\nhttps://dreamcancel.com/wiki/index.php/Real_Bout_Fatal_Fury_2\n"
},
{
"gameid": "rbffspec",
"motd": "Discord: https://discord.gg/7Qvv7K4\n"
},
{
"gameid": "fatfury1",
"motd": "Discord: https://discord.gg/7Qvv7K4\nWiki: https://wiki.supercombo.gg/w/Fatal_Fury_1\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GNkFr4KGyiwx25ob6u7dC88\n"
},
{
"gameid": "fatfury2",
"motd": "Discord: https://discord.gg/7Qvv7K4\n"
},
{
"gameid": "fatfury3",
"motd": "Discord: https://discord.gg/7Qvv7K4\nDiscord Brasileiro: https://discord.gg/AY5p2EYrMS\n"
},
{
"gameid": "fatfursp",
"motd": "Guide: https://drive.google.com/file/d/1H_3aVeT34YUNnj946I6xgtweU1o7czbH/view\nJapanese Wiki: https://seesaawiki.jp/garosp\nDiscord: https://discord.gg/7Qvv7K4\nFrench Discord: https://discord.gg/Pyq7eJA5kw\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GO5TX8EU9_YGnPHacyiDQXc\n"
},
{
"gameid": "rotd",
"motd": "Discord: https://discord.gg/7rnf6Wvu9Z\nWiki: https://wiki.supercombo.gg/w/Rage_of_The_Dragons\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GNAINJDhsHulv6iEEJRfZvb\n"
},
{
"gameid": "mslug",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug4",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "flycast_mslug6",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugx",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugdg",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2dg",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3g",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug4dg",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5g",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2t",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2ct",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2fm",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2r",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3c",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3eb",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug4c",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5c",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5mg",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5x",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug4lw",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxc2",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxeb",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxlb",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxsrf",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2ct",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2fm",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2r",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3c",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3eb",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug4c",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5c",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5mg",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5x",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxc2",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxeb",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxlb",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxsrf",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxsrf",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugdqy",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugdyf1",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugfc1",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugfc2",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug2p",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3cq",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3cqi",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3gw",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3se",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3sd",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug3zh",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug4lwq",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug4q",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug4ammor",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5boss",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5esr",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5dbj",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5ext",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5es",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5f",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5cq",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5sg",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5zh",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslug5ct",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugx2reb",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugx2r",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxc1",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxdg",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxsc",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mslugxcqi",
"motd": "Community: https://www.facebook.com/MetalSlugUnity\nDiscord: https://discord.gg/rxjcur9mTT\n"
},
{
"gameid": "mwarr",
"motd": "Discord: https://discord.gg/KBeHaw5dVt\n"
},
{
"gameid": "rabbit",
"motd": "Discord: https://discord.gg/2dU34T54ST\nDiscord: https://discord.gg/M6M9QYMAcR\n"
},
{
"gameid": "cybots",
"motd": "Discord: https://discord.gg/4tgXDBYbuN\nSupercombo Wiki: https://wiki.supercombo.gg/w/Cyberbots:_Fullmetal_Madness\nMizuumi Wiki: https://wiki.gbl.gg/w/Cyberbots\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GN0ZRw-T1CfzIFWu62A2zDm\nTraining Mode Lua: https://cdn.discordapp.com/attachments/185372964181508096/948124178559688724/cybots.lua\n"
},
{
"gameid": "cybotsam",
"motd": "Hack Description: https://pastebin.com/kZnfcPct\nDiscord: https://discord.gg/4tgXDBYbuN\nSupercombo Wiki: https://wiki.supercombo.gg/w/Cyberbots:_Fullmetal_Madness\nMizuumi Wiki: https://wiki.gbl.gg/w/Cyberbots\nTraining Mode Lua: https://cdn.discordapp.com/attachments/185372964181508096/948124178559688724/cybots.lua\n"
},
{
"gameid": "nes_hackmatch",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n\n\n*Support indie developers! Game ROM available for purchase:* https://zachtronics.itch.io/hackmatch-for-the-nes\n"
},
{
"gameid": "landmakr",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n"
},
{
"gameid": "miexchng",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\nMoney Puzzle Exchanger: https://discord.gg/jqAWdaswnm\n"
},
{
"gameid": "galaxyfg",
"motd": "Discord: https://discord.gg/r5baDfxC5f\nGalaxy Fight SRK Wiki: https://wiki.supercombo.gg/w/Galaxy_Fight:_Universal_Warriors\n"
},
{
"gameid": "lastbld2",
"motd": "Wiki: https://dreamcancel.com/wiki/The_Last_Blade_2\nDiscord: https://discord.gg/c2ZTKtTuVE\n"
},
{
"gameid": "wakuwak7",
"motd": "Waku Waku 7 SRK Wiki: https://wiki.supercombo.gg/w/Waku_Waku_7\nDiscord: https://discord.gg/ZyF9GFfYBp\n"
},
{
"gameid": "wakuwak7bh",
"motd": "Discord: https://discord.gg/SR5FZZU4Tv\n"
},
{
"gameid": "mvsc",
"motd": "Wiki: https://wiki.supercombo.gg/w/Marvel_vs_Capcom\nDiscord: https://discord.gg/NFGqcXD\n"
},
{
"gameid": "asurabus",
"motd": "SRK Wiki: https://wiki.supercombo.gg/w/Asura_Buster:_Eternal_Warriors\nDiscord: https://discord.gg/uqvRzaEqg7\n"
},
{
"gameid": "redearth",
"motd": "Wiki: https://wiki.gbl.gg/w/Red_Earth/War-Zard\nDiscord: https://discord.gg/7eNk7pm\nPassword Notation:\n1, 2, 3 - LP, MP, HP\n4, 5, 6 - LK, MK, HK\nDelete - Left Button\nMax LVL Tessa & Moveset: 46321 23544 https://youtu.be/tBFjG-WiwrA\nMax LVL Leo & Moveset: 41344 34153 https://youtu.be/JVlu57s04B4\nMax LVL Mai-Ling & Moveset: 13126 44354 https://youtu.be/PisJuB_BBEI\nMax LVL Kenji & Moveset: 63141 24524 https://youtu.be/NgpWM0PnCOM\nIf you load up the game for the first time and you get an error that says NO CD-ROM DRIVE, go to \"Input\", select \"Map game inputs\", and change region to 0x53\n"
},
{
"gameid": "redearthep",
"motd": "Wiki: https://wiki.gbl.gg/w/Red_Earth/War-Zard\nDiscord: https://discord.gg/7eNk7pm\nPassword Notation:\n1, 2, 3 - LP, MP, HP\n4, 5, 6 - LK, MK, HK\nDelete - Left Button\nROMHACK CHANGES:\n- All Stages Unlocked (+ 3 Final Stages added to VS Mode)\n- Removed Timer from a Password Input Window\n- Password System was Significantly Simplified:\n- JUST INPUT 11111 11111 FOR MAX LVL\n- For more information, Visit: https://archive.org/details/RedearthMaxLVLRomhack\nTessa's Moveset: https://youtu.be/tBFjG-WiwrA\nLeo' Moveset: https://youtu.be/JVlu57s04B4\nMai-Ling's Moveset: https://youtu.be/PisJuB_BBEI\nKenji's Moveset: https://youtu.be/NgpWM0PnCOM\nIf you load up the game for the first time and you get an error that says SET REGION TO 0x53, go to \"Input\", select \"Map game inputs\", and change region to 0x53\n"
},
{
"gameid": "svg",
"motd": "Beginner's Guide Video: https://youtu.be/8CBt4qNQ5uE\nDiscord: https://discord.gg/Puaat9F9hz\nWiki: https://wiki.gbl.gg/w/Spectral_vs_Generation\n"
},
{
"gameid": "svc",
"motd": "Wiki: https://wiki.supercombo.gg/w/SvC_Chaos:_SNK_Vs_Capcom\nDiscord: https://discord.gg/u3FvwKC\nBeginner's Guide Video: https://youtu.be/QMqwVuWbKRY\n"
},
{
"gameid": "svcsplus",
"motd": "Wiki: https://wiki.supercombo.gg/w/SvC_Chaos:_SNK_Vs_Capcom\nDiscord: https://discord.gg/u3FvwKC\nDiscord BR: https://discord.gg/xk62aPfQm6\nBeginner's Guide Video: https://youtu.be/QMqwVuWbKRY\n"
},
{
"gameid": "magdrop2",
"motd": "*Community Discords:*\nFrench/English: https://discord.gg/sdfUGuCuBz\nLatAm: https://discord.gg/BhU4njT\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n"
},
{
"gameid": "magdrop3",
"motd": "*Community Discords:*\nFrench/English: https://discord.gg/sdfUGuCuBz\nLatAm: https://discord.gg/BhU4njT\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n"
},
{
"gameid": "sf2ce",
"motd": "Discord Peru: https://discord.gg/ShGmjmfhAh\nYouTube Retromancos: https://www.youtube.com/channel/UC84wAqkNFKIlQA9UWLq0XOw\nComunidad Retromancos: https://www.facebook.com/retromancos\nYouTube Fighter Latino: https://youtube.com/@fighterlatinos\nComunidad Fighter Latino sf2: https://www.facebook.com/Errenoob\nTraining mode: https://www.youtube.com/watch?v=yRxIDOZjGyU\nWiki: https://wiki.supercombo.gg/w/Street_Fighter_2:_Champion_Edition\n"
},
{
"gameid": "sf2hf",
"motd": "Discord: https://discord.gg/Zq7aS6mDUe\n"
},
{
"gameid": "ringdest",
"motd": "Wiki: https://wiki.gbl.gg/w/Ring_of_Destruction:_Slam_Masters_II\nDiscord: https://discord.gg/8YJ8ztg\n"
},
{
"gameid": "kizuna",
"motd": "Discord: https://discord.gg/NxPXbDR\nSpanish server: https://discord.com/invite/NHShB2X\nWiki: https://wiki.gbl.gg/w/Kizuna_Encounter\n"
},
{
"gameid": "aof",
"motd": "Art of Fighting Series Discord: https://discord.gg/wgkg4Yq\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GOrVs5i0SwEwHSxFAQfD_q_\n"
},
{
"gameid": "aof2",
"motd": "Art of Fighting Series Discord: https://discord.gg/wgkg4Yq\n"
},
{
"gameid": "aof3",
"motd": "Wiki: https://wiki.gbl.gg/w/Art_of_Fighting_3\nArt of Fighting Series Discord: https://discord.gg/wgkg4Yq\nBeginner's Guide Video: https://youtu.be/LE9z9owlbf8\nAdvanced Mechanics Guide Video: https://youtu.be/2-6NY1lneFU\n"
},
{
"gameid": "twinspri",
"motd": "Discord: https://discord.gg/dTNfRxa\nVersus guide on how to play: https://gamefaqs.gamespot.com/neo/565709-twinkle-star-sprites/faqs/56584\nTraining Mode + Hitbox Lua: https://docs.google.com/document/d/1k8kBUJfGd1g5rbcCqS_6qCtkzSk2FGAixgWwtmbfAgs/view\nFormation overview: https://youtube.com/playlist?list=PL8sVQl20XthGpAa8XLqzSj1rbVG55jmQ_\nFormation explanation: https://youtu.be/kfzepPv59O8\n"
},
{
"gameid": "martmast",
"motd": "Wiki: https://wiki.supercombo.gg/w/Martial_Masters\nDiscord: https://discord.gg/aFJkDw4\n"
},
{
"gameid": "marmatcp",
"motd": "Wiki: https://wiki.supercombo.gg/w/Martial_Masters\nDiscord: https://discord.gg/aFJkDw4\n"
},
{
"gameid": "wjammers",
"motd": "Discord: https://discord.gg/gcD7G86\nLatam: https://discord.gg/xyqwWXcdUy\n"
},
{
"gameid": "sgemf",
"motd": "Discord: https://discord.gg/PAbX53nNfU\nGemini (Training Mode): https://github.com/FlabCaptain/Gemini\n"
},
{
"gameid": "esckidsj",
"motd": "Discord: https://discord.gg/xRftjZG\n"
},
{
"gameid": "dankuga",
"motd": "Wiki: https://wiki.gbl.gg/w/Dan-Ku-Ga\nDiscord: https://discord.gg/gnPkzQr\n"
},
{
"gameid": "breakrev",
"motd": "Wiki: https://wiki.supercombo.gg/w/Breakers_Revenge\nDiscord: https://discord.gg/u5e6cuF\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GPxm62dwqWT_giZ4AGbRelw\n"
},
{
"gameid": "brkrevext",
"motd": "Wiki: https://wiki.supercombo.gg/w/Breakers_Revenge/EXTRA\nDiscord: https://discord.gg/u5e6cuF\n"
},
{
"gameid": "karnovr",
"motd": "Discord: https://discord.gg/CWPf7SX\n"
},
{
"gameid": "karnovre",
"motd": "*Latest version: 0.2 (2024-07-06)*\n\nOfficial Site: https://gamehackfan.github.io/karnovre\nNeeds original game (karnovr.zip) to obtain romhack.\n*Please make sure you and your opponent have the same revision!!*\n\nDiscord: https://discord.gg/CWPf7SX\n"
},
{
"gameid": "avengrgs",
"motd": "Discord: https://discord.gg/X7sxAYCdhq\nWiki: https://wiki.gbl.gg/w/Avengers_in_Galactic_Storm\n"
},
{
"gameid": "xmvsf",
"motd": "Wiki: https://wiki.supercombo.gg/w/X-Men_vs_Street_Fighter\nMoves: https://strategywiki.org/wiki/X-Men_vs._Street_Fighter/Moves\nDiscord: https://discord.gg/hGJk6bvG8t\n"
},
{
"gameid": "xmvsfu",
"motd": "Wiki: https://wiki.supercombo.gg/w/X-Men_vs_Street_Fighter\nMoves: https://strategywiki.org/wiki/X-Men_vs._Street_Fighter/Moves\nDiscord: https://discord.gg/hGJk6bvG8t\n"
},
{
"gameid": "xmvsfjr3",
"motd": "Wiki: https://wiki.supercombo.gg/w/X-Men_vs_Street_Fighter\nMoves: https://strategywiki.org/wiki/X-Men_vs._Street_Fighter/Moves\nDiscord: https://discord.gg/hGJk6bvG8t\n"
},
{
"gameid": "ninjamas",
"motd": "Wiki: https://wiki.supercombo.gg/w/Ninja_Masters\nWorld Heroes + ADK Games Discord: https://discord.gg/QeEC68jRme\n"
},
{
"gameid": "wh1",
"motd": "World Heroes + ADK Games Discord: https://discord.gg/QeEC68jRme\nWorld Heroes + Aggressors of Dark Kombat: https://discord.gg/thetYH4XCs\n"
},
{
"gameid": "wh2",
"motd": "*Warning: Ranked mode available only to \"Normal game\" mode.*\n\nWorld Heroes + ADK Games Discord: https://discord.gg/QeEC68jRme\n"
},
{
"gameid": "wh2j",
"motd": "World Heroes + ADK Games Discord: https://discord.gg/QeEC68jRme\n"
},
{
"gameid": "whp",
"motd": "World Heroes + ADK Games Discord: https://discord.gg/QeEC68jRme\nWorld Heroes + Aggressors of Dark Kombat: https://discord.gg/thetYH4XCs\n"
},
{
"gameid": "aodk",
"motd": "World Heroes + ADK Games Discord: https://discord.gg/QeEC68jRme\n"
},
{
"gameid": "kabukikl",
"motd": "Discord: https://discord.gg/qNJKnuGvjM\n"
},
{
"gameid": "doubledr",
"motd": "SuperCombo Wiki: https://wiki.supercombo.gg/w/Double_Dragon\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GNOjS75ZFGhSmVzEEJKlls8\n"
},
{
"gameid": "savagere",
"motd": "King Lion Palace - Kizuna Encounter (and Savage Reign) Discord Channel: https://discord.gg/NxPXbDR\n"
},
{
"gameid": "msh",
"motd": "Wiki: https://wiki.supercombo.gg/w/Marvel_Super_Heroes\nDiscord: https://discord.gg/VTjmYcu7B7\n"
},
{
"gameid": "mshvsf",
"motd": "Wiki: https://wiki.supercombo.gg/w/Marvel_Super_Heroes_vs_Street_Fighter\nMoves: https://strategywiki.org/wiki/Marvel_Super_Heroes_vs._Street_Fighter/Moves\nDiscord: https://discord.gg/VVAYAAaqxj\n"
},
{
"gameid": "gundamex",
"motd": "Discord: https://discord.gg/TaFYrDcCZk\nGuide and Move List: https://gamefaqs.gamespot.com/arcade/568294-mobile-suit-gundam-ex-revue/faqs/79989\nWiki: https://wiki.gbl.gg/w/Mobile_Suit_Gundam:_Ex_Revue\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GPwvcbSWnn6PqXY-k420l5Z\n"
},
{
"gameid": "tgm2p",
"motd": "*Strategy Guide:* https://tetris.wiki/TGM_Versus_Mode_Guide\n*Tetris The Absolute Grand Master PLUS 2 (TAP) official Discord:* https://discord.gg/z3YnUTN\n*Tetris Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "finalttr",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "neotet",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "gowcaiet",
"motd": "A balanced version of Gowcaizer. Bosses unlocked, press right or left on the characters at the ends of the screen to find them.\n"
},
{
"gameid": "gg_stetris",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "snes_stetris2a",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "snes_stetris2g",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "sms_fatetris",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "snes_stetris3",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "tetrisse",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "md_tetris",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "tetris",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "nes_tetris",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "tetrbx",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "snes_tetrisdru",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\nDr. Mario Championship: https://discord.gg/dGQyFbvUQn\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n*Community Guides:*\nDr. Mario wiki: https://wiki.drmar.io/\n"
},
{
"gameid": "nes_tetris2",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n"
},
{
"gameid": "snes_tetris2ua",
"motd": "*Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n"
},
{
"gameid": "nes_tetri2bom",
"motd": "*Tetris Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n"
},
{
"gameid": "snes_tetrisbt",
"motd": "*Tetris Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "snes_tetrisfl",
"motd": "*Tetris Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "tetrisp2",
"motd": "*Tetris Community Discords:*\nTetris Netplay: https://discord.gg/XW4xEjkCsP\nServidor Latino'Facción Tetris': https://discord.gg/znKjRDWMZu\nHard Drop: https://discord.gg/harddrop\n"
},
{
"gameid": "flycast_sgtetris",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n\n\nFor common issues, check out the Flycast Dojo FAQ: https://dojo-project.gitbook.io/flycast-dojo/overview/frequently-asked-questions\n"
},
{
"gameid": "nes_joymechfight",
"motd": "Discord: https://discord.gg/ewjeffJ\n"
},
{
"gameid": "snes_gndmwend",
"motd": "Wiki: https://newchallenger.net/w/index.php?title=Gundam_Wing:_Endless_Duel\nDiscord: https://discord.gg/gvaMAq9\nSpanish server: https://discord.com/invite/NHShB2X\n"
},
{
"gameid": "snes_tmnttfce",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Teenage_Mutant_Ninja_Turtles_Tournament_Fighters\nDiscord: https://discord.io/SNESFGC\nSpanish server: https://discord.com/invite/NHShB2X\n"
},
{
"gameid": "snes_sailorsf",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Sailor_Moon_Fighter_S\nDiscord: http://moonlightfight.com\n"
},
{
"gameid": "snes_sailorsj",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Sailor_Moon_S\nDiscord: http://moonlightfight.com\n"
},
{
"gameid": "snes_sailorsbze",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Sailor_Moon_S\nDiscord: http://moonlightfight.com\n"
},
{
"gameid": "snes_mmprfeu",
"motd": "Play as Ivan Ooze: Hold X+Y and press Start when choosing any character\n\nGame Info: https://newchallenger.net/w/index.php?title=Mighty_Morphin_Power_Rangers:_The_Fighting_Edition\nDiscord: https://discord.io/SNESFGC\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GOhMJaB7ZpG7_9m-1jtrbWv\n"
},
{
"gameid": "snes_ranmahb2",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Ranma_1/2:_Chougi_Ranbu_Hen\nDiscord: https://discord.gg/SwHeevbYyn\n"
},
{
"gameid": "snes_weaponldu",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Weaponlord\nDiscord: https://discord.io/SNESFGC\n"
},
{
"gameid": "snes_clayfgte",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=ClayFighter_Tournament_Edition\nDiscord: https://discord.io/SNESFGC\n"
},
{
"gameid": "snes_clayfgt2u",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=ClayFighter_2:_Judgement_Clay\nDiscord: https://discord.io/SNESFGC\n"
},
{
"gameid": "snes_godzilla",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Godzilla_Kaijuu_Daikessen\nDiscord: https://discord.io/SNESFGC\n"
},
{
"gameid": "snes_svgeo",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Super_Variable_Geo\nDiscord: https://discord.io/SNESFGC\n"
},
{
"gameid": "snes_dbzhypdj",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Dragonball_Z_Hyper_Dimension\nDiscord (SNESFGC): https://discord.io/SNESFGC\nDiscord (DBZHYPD Masters): https://discord.gg/WfVW92p\n"
},
{
"gameid": "snes_powermov",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Power_Moves\nDiscord: https://discord.io/SNESFGC\n"
},
{
"gameid": "snes_fghthist",
"motd": "Game Info: https://newchallenger.net/w/index.php?title=Fighter%27s_History:_Mizoguchi_Kiki_Ippatsu\nDiscord: https://discord.io/SNESFGC\n"
},
{
"gameid": "md_yuyumt",
"motd": "Discord: https://discord.gg/8fnXmx52za\nTreasure Fighters Wiki: treasure.newchallenger.net\nThere is now an English Translation channel available under yuyumte!\n"
},
{
"gameid": "md_yuyusf",
"motd": "Discord: https://discord.gg/8fnXmx52za\nServidor Brasileiro: https://discord.gg/hqerHt3vCp\nTreasure Fighters Wiki: treasure.newchallenger.net\n"
},
{
"gameid": "md_yuyumte",
"motd": "Discord: https://discord.gg/8fnXmx52za\nTreasure Fighters Wiki: treasure.newchallenger.net"
},
{
"gameid": "flycast_ausfache",
"motd": "Wiki: https://wiki.gbl.gg/w/Akatsuki_Blitzkampf\nGlobal Discord: https://discord.gg/HH2K73K99s\nBrazilian Discord: https://discord.gg/pr9CkgqkDd\nArgentinian Discord: https://discord.gg/WUUTB6TWGV\n\nFor common issues, check out the Flycast Dojo FAQ: https://dojo-project.gitbook.io/flycast-dojo/overview/frequently-asked-questions\n\nExperiencing dropped inputs? Fix it with this: https://www.youtube.com/watch?v=MnAlYVtbYBA\n"
},
{
"gameid": "flycast_pjustic",
"motd": "Wiki: https://wiki.supercombo.gg/w/Project_Justice\nDiscord: https://discord.gg/PPq7WRe\n"
},
{
"gameid": "flycast_doa2m",
"motd": "Wiki: https://www.freestepdodge.com/wiki/dead-or-alive-2\nDiscord: https://discord.gg/JvNgawv\n"
},
{
"gameid": "flycast_vtennis2",
"motd": "Discord Latam: https://discord.gg/UAThjumakb\n\nFor common issues, check out the Flycast Dojo FAQ: https://dojo-project.gitbook.io/flycast-dojo/overview/frequently-asked-questions\n"
},
{
"gameid": "flycast_cvs2",
"motd": "Wiki (being updated!): https://wiki.supercombo.gg/w/Capcom_vs_SNK_2\nCvS2 Bible (Scans): http://tinyurl.com/CvS2Bible\nCvS2 GameFAQs: https://gamefaqs.gamespot.com/arcade/562704-capcom-vs-snk-2/faqs\nCvS2 Community Discord: http://tinyurl.com/CvS2Discord\nTrue Love Makin Academy (Latin America): https://discord.gg/VqMhyUhKjm\nFull setup guide, download help, and training mode info is available here: https://wiki.supercombo.gg/w/Capcom_vs_SNK_2/Emulation_and_Netplay\nHitbox Images (c/o RagingStormX): https://drive.google.com/drive/folders/1h9xdMlUGkNlZsErASrsRZzvmd9tnKEF6\nMove List Showcase: https://www.youtube.com/playlist?list=PLOO2o6Kew2GOtZlSu5q4SfZavjWuw5eBq\n\n\n\nFor common issues, check out the Flycast Dojo FAQ: https://dojo-project.gitbook.io/flycast-dojo/overview/frequently-asked-questions\n\nExperiencing dropped inputs? Fix it with this: https://www.youtube.com/watch?v=MnAlYVtbYBA\n"
},
{
"gameid": "flycast_dc_plasmasword",
"motd": "Discord: https://discord.gg/KQZwCSJECS\nWiki: https://wiki.supercombo.gg/w/Plasma_Sword\n"
},
{
"gameid": "flycast_senkosp",
"motd": "Discord: https://discord.gg/N7VjZ8E\n"
},
{
"gameid": "flycast_dc_pf2012",
"motd": "Discord (日本語 and Worldwide!): https://discord.gg/gqCXEU69kx\nMizuumi Wiki: https://wiki.gbl.gg/w/Psychic_Force_2012\n日本wiki: https://pf.swiki.jp/\n\nDefault Controller Layout (For Arcade Stick Users):\nA: Guard (G)\nB: None\nX: Light Attack (L)\nY: Strong Attack (S)\nL: Charge (G+L+S)\nR: Dash (L+S)\n\nDefault Arcade Layout\n(L) (S) (x)\n(G) (x) (x)'\n"
},
{
"gameid": "flycast_dc_vonot",
"motd": "Discord (Virtual On Community): https://discord.gg/akrgGx9\nDiscord (VO-MCs VO-Dojo): https://discord.gg/6WvTPuHkCR\nMake sure LEFT THUMBSTICK is set to FULL. Settings > Netplay > GGPO > Left Thumbstick > Full\n"
},
{
"gameid": "flycast_vonot",
"motd": "Discord: https://discord.gg/akrgGx9\nNAOMI version DON'T have online multiplayer\nCurrently ONLY DREAMCAST version allows online multiplayer\n"
},
{
"gameid": "nes_yoshiscookie",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n*Community resources:*\nStrategy guide: http://zoomboingding.com/yoshis_cookie/singles_tutorial/\nYoCoBot: https://meatfighter.com/yoshiscookiebot/\n"
},
{
"gameid": "snes_yoshicoku",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n*Community resources:*\nStrategy guide: http://zoomboingding.com/yoshis_cookie/singles_tutorial/\nYoCoBot: https://github.com/mint-cookie/Yocobot\n"
},
{
"gameid": "nes_drmario",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\nDr. Mario Championship: https://discord.gg/dGQyFbvUQn\n*Community Guides:*\nDr. Mario wiki: https://wiki.drmar.io/\n"
},
{
"gameid": "snes_drmario",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\nDr. Mario Championship: https://discord.gg/dGQyFbvUQn\n*Community Guides:*\nDr. Mario wiki: https://wiki.drmar.io/\n"
},
{
"gameid": "nes_warioswoods",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n"
},
{
"gameid": "snes_wariowodu",
"motd": "*Community Discords:*\nPuzzle Wednesday: https://discord.gg/KEyvGwbDCc\n"
},
{