-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.json
More file actions
1334 lines (1334 loc) · 36.8 KB
/
Copy pathplugins.json
File metadata and controls
1334 lines (1334 loc) · 36.8 KB
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
[
{
"repo": "way-zer/ScriptAgent4MindustryExt",
"name": "ScriptAgent4MindustryExt",
"author": "WayZer",
"lastUpdated": "2024-06-02T04:23:14Z",
"stars": 88,
"hasJava": true,
"description": "More commands and features."
},
{
"repo": "Kieaer/Essentials",
"name": "Essentials",
"author": "Kieaer",
"lastUpdated": "2024-06-09T13:59:05Z",
"stars": 57,
"hasJava": true,
"description": "More commands and features."
},
{
"repo": "Anuken/HexedPlugin",
"name": "HexedPlugin",
"author": "Anuke",
"lastUpdated": "2024-04-15T16:57:13Z",
"stars": 35,
"hasJava": true,
"description": "A battle-royale-like gamemode."
},
{
"repo": "ZetaMap/moreCommands",
"name": "morecommands",
"author": "ZetaMap",
"lastUpdated": "2024-01-08T18:59:52Z",
"stars": 25,
"hasJava": true,
"description": "This mindustry plugin add more commands for admins and players."
},
{
"repo": "MindustryInside/JSEval",
"name": "JSEval",
"author": "Summet",
"lastUpdated": "2023-02-22T00:53:00Z",
"stars": 16,
"hasJava": true,
"description": "Allows admins to execute JavaScript code using a special command."
},
{
"repo": "KotMilkMeoWtwo/MeowLandPlugin",
"name": "meowland plugin",
"author": "KotMilkMeoW",
"lastUpdated": "2023-07-02T09:28:04Z",
"stars": 14,
"hasJava": true,
"description": "nya"
},
{
"repo": "xpdustry/distributor",
"name": "distributor",
"author": "xpdustry",
"lastUpdated": "2024-06-11T02:00:40Z",
"stars": 14,
"hasJava": true,
"description": "No description provided."
},
{
"repo": "Kycb42148/KycbPlugin",
"name": "KycbPlugin",
"author": "Kycb42148",
"lastUpdated": "2022-07-25T17:02:05Z",
"stars": 11,
"hasJava": true,
"description": "Plugin for my server"
},
{
"repo": "Darkdustry-Coders/DarkdustryPlugin",
"name": "Darkdustry Plugin",
"author": "Darkness & xzxADIxzx",
"lastUpdated": "2024-06-10T20:38:20Z",
"stars": 11,
"hasJava": true,
"description": "The main plugin for Darkdustry servers. Includes a lot of useful features."
},
{
"repo": "Pointifix/SectorizedPlugin",
"name": "SectorizedPlugin",
"author": "Pointifix",
"lastUpdated": "2023-01-15T17:56:34Z",
"stars": 10,
"hasJava": true,
"description": "Sectorized game mode"
},
{
"repo": "ObvilionNetwork/mindustry-hub-plugin",
"name": "mindustry-hub-plugin",
"author": "FatonnDev",
"lastUpdated": "2023-07-05T14:27:20Z",
"stars": 10,
"hasJava": true,
"description": "Hub plugin for Mindustry"
},
{
"repo": "osp54/BetterConsole",
"name": "BetterConsole",
"author": "OSPx",
"lastUpdated": "2023-02-09T08:55:03Z",
"stars": 9,
"hasJava": true,
"description": "The mindustry plugin that improves the input of console commands."
},
{
"repo": "MindustryInside/LightweightHub",
"name": "LightweightHub",
"author": "Mindustry Inside",
"lastUpdated": "2023-02-23T14:26:21Z",
"stars": 9,
"hasJava": true,
"description": "A lightweight hub plugin for servers."
},
{
"repo": "MindustryInside/PluginBrowser",
"name": "Plugin Browser",
"author": "Mindustry Inside",
"lastUpdated": "2021-07-30T15:12:21Z",
"stars": 8,
"hasJava": true,
"description": "Mindustry plugin/mod browser for Mindustry servers."
},
{
"repo": "Astro36/mindustry-pause-plugin",
"name": "Game Pause",
"author": "Seungjae Park",
"lastUpdated": "2021-07-31T05:34:49Z",
"stars": 7,
"hasJava": true,
"description": "Enable the Game Pause on the Multiplay Server"
},
{
"repo": "j-vds/DiscordPlugin",
"name": "DiscordPlugin",
"author": "Fishbuilder",
"lastUpdated": "2021-08-22T09:38:17Z",
"stars": 7,
"hasJava": true,
"description": "interaction with discord"
},
{
"repo": "Ilya246/crawler_arena",
"name": "crawler_arena",
"author": "[USMP]Ilya246 & Darkness6030",
"lastUpdated": "2024-05-21T08:58:51Z",
"stars": 7,
"hasJava": true,
"description": "Fight against hordes of crawlers"
},
{
"repo": "xpdustry/nohorny",
"name": "NoHorny",
"author": "Xpdustry",
"lastUpdated": "2024-06-06T16:14:10Z",
"stars": 7,
"hasJava": true,
"description": "NO HORNY IN MY SERVER!"
},
{
"repo": "Fatonndev/Matrix-plugin",
"name": "Matrix-plugin",
"author": "KeviTV",
"lastUpdated": "2020-05-25T18:35:52Z",
"stars": 6,
"hasJava": true,
"description": "A useful utility plug-in; Extension of the basic functionality, Integration with the shell server."
},
{
"repo": "Anuken/CurseFilterPlugin",
"name": "CurseFilterPlugin",
"author": "Anuke",
"lastUpdated": "2021-06-29T05:23:13Z",
"stars": 6,
"hasJava": true,
"description": "heck"
},
{
"repo": "mayli/RockTheVotePlugin",
"name": "RockTheVotePlugin",
"author": "mayli",
"lastUpdated": "2021-07-29T05:35:58Z",
"stars": 6,
"hasJava": true,
"description": "A plugin to change map by /rtv."
},
{
"repo": "Pointifix/HistoryPlugin",
"name": "HistoryPlugin",
"author": "Pointifix",
"lastUpdated": "2022-09-15T10:32:10Z",
"stars": 6,
"hasJava": true,
"description": "Adds a history command to display a tiles build/break history"
},
{
"repo": "skykatik/AfkPlugin",
"name": "AfkPlugin",
"author": "Skat",
"lastUpdated": "2021-05-11T11:05:24Z",
"stars": 5,
"hasJava": true,
"description": "Auto kick inactive players."
},
{
"repo": "MindustryInside/TheInspection",
"name": "TheInspection",
"author": "Mindustry Inside",
"lastUpdated": "2021-11-07T09:29:36Z",
"stars": 5,
"hasJava": true,
"description": "Extension for hub plugin. Allow to connect players with mods"
},
{
"repo": "Ilya246/assistBots",
"name": "assistBots",
"author": "[USMP]Ilya246",
"lastUpdated": "2022-11-04T09:53:10Z",
"stars": 5,
"hasJava": true,
"description": "Adds bots to assist players."
},
{
"repo": "TomtheCoder2/mainPlugin",
"name": "Phoenix Plugin",
"author": "Nautilus & Allen-B1",
"lastUpdated": "2024-03-17T09:09:53Z",
"stars": 5,
"hasJava": true,
"description": "No description provided."
},
{
"repo": "Anuken/RateLimitPlugin",
"name": "RateLimitPlugin",
"author": "Anuke",
"lastUpdated": "2020-05-15T19:34:01Z",
"stars": 4,
"hasJava": true,
"description": "Imposes a configuration rate limit."
},
{
"repo": "deng-rui/Command-Extension",
"name": "Command-Extension",
"author": "Dr",
"lastUpdated": "2020-06-13T06:11:52Z",
"stars": 4,
"hasJava": true,
"description": "Command extension"
},
{
"repo": "Slava0135/CargoPods",
"name": "CargoPods",
"author": "Slava0135",
"lastUpdated": "2021-07-28T08:57:42Z",
"stars": 4,
"hasJava": true,
"description": "Help from above"
},
{
"repo": "hezhenwei/MTDDirtyWordMask",
"name": "MTDDirtyWordMask",
"author": "Myke.H",
"lastUpdated": "2021-08-09T06:50:15Z",
"stars": 4,
"hasJava": true,
"description": "Mask dirty words."
},
{
"repo": "mindustry-antigrief/SteamServer",
"name": "SteamServer",
"author": "mindustry-antigrief",
"lastUpdated": "2021-10-19T02:04:14Z",
"stars": 4,
"hasJava": true,
"description": "Allows hosting proper servers on steam, you can even connect to them via the direct ip without steam."
},
{
"repo": "Tornado-Technology/mindustry-plugin-tech-hexed",
"name": "mindustry-plugin-tech-hexed",
"author": "TornadoTech",
"lastUpdated": "2022-07-10T13:39:25Z",
"stars": 4,
"hasJava": true,
"description": ""
},
{
"repo": "Fatonndev/MatrixHub-plugin",
"name": "MatrixHub-plugin",
"author": "KeviTV",
"lastUpdated": "2022-12-10T03:45:44Z",
"stars": 4,
"hasJava": true,
"description": "Better Hub plugin for servers"
},
{
"repo": "Kowkodivka/BetterConsole",
"name": "BetterConsole",
"author": "OSPx, lucin",
"lastUpdated": "2022-12-10T06:54:17Z",
"stars": 4,
"hasJava": true,
"description": "The mindustry plugin that improves the input of console commands."
},
{
"repo": "pisceskkk/Mindustry_ServerAutoPause",
"name": "Mindustry_ServerAutoPause",
"author": "pisceskkk",
"lastUpdated": "2023-01-11T10:17:42Z",
"stars": 4,
"hasJava": true,
"description": "A plugin to auto pause(resume) server when empty(or not)."
},
{
"repo": "Gee-aitcH/GHMP-NukeAlert",
"name": "GHMP-NukeAlert",
"author": "(G_H)",
"lastUpdated": "2019-10-19T18:35:20Z",
"stars": 3,
"hasJava": true,
"description": "Simple Nuke Alert plugin for server."
},
{
"repo": "deng-rui/plugins-mission",
"name": "plugins-mission",
"author": "Dr",
"lastUpdated": "2020-02-13T05:57:38Z",
"stars": 3,
"hasJava": true,
"description": "Plugins-mission"
},
{
"repo": "MindustryInside/NeutralPlugin",
"name": "NeutralPlugin",
"author": "Mindustry Inside",
"lastUpdated": "2021-07-09T08:20:26Z",
"stars": 3,
"hasJava": true,
"description": "Fork of the Pandorum.su plugin."
},
{
"repo": "j-vds/pvpStatsPlugin",
"name": "pvpStatsPlugin",
"author": "Fishbuilder",
"lastUpdated": "2021-09-13T15:28:20Z",
"stars": 3,
"hasJava": true,
"description": "Show the amount of games won by a player!"
},
{
"repo": "devlaq/Shard",
"name": "Shard",
"author": "devlaq",
"lastUpdated": "2022-04-08T14:07:19Z",
"stars": 3,
"hasJava": true,
"description": "Anti-grief, Vote kick/ban/map and, more"
},
{
"repo": "MindustryBR/MindustryBR-plugin",
"name": "MindustryBR-plugin",
"author": "King-BR",
"lastUpdated": "2022-09-10T18:24:43Z",
"stars": 3,
"hasJava": true,
"description": "Plugin made for the MindustryBR servers"
},
{
"repo": "mindustry-antigrief/mindustry-plugin",
"name": "mindustry-plugin",
"author": "buthed010203",
"lastUpdated": "2023-01-31T17:28:31Z",
"stars": 3,
"hasJava": true,
"description": "Plugin with various useful features that are mostly designed for use with Foo's client."
},
{
"repo": "L0615T1C5-216AC-9437/LogicUpdater",
"name": "LogicUpdater",
"author": "L0615T1C5.216AC#9437's cat",
"lastUpdated": "2023-03-22T19:56:47Z",
"stars": 3,
"hasJava": true,
"description": "Checks if logic can be updated"
},
{
"repo": "osp54/Lumus",
"name": "Lumus",
"author": "OSPx",
"lastUpdated": "2023-06-06T15:18:53Z",
"stars": 3,
"hasJava": true,
"description": "The mindustry plugin that loads plugins on lua"
},
{
"repo": "Agzam4/Mindustry-plugin",
"name": "Mindustry-plugin",
"author": "Agzam4",
"lastUpdated": "2023-06-21T21:23:06Z",
"stars": 3,
"hasJava": true,
"description": "New command, events, core protection from thorium reactors and more"
},
{
"repo": "KhanhLamVirual/TheBase",
"name": "Vndustry",
"author": "KhanhLamVirual",
"lastUpdated": "2023-09-07T14:05:50Z",
"stars": 3,
"hasJava": true,
"description": "No description provided."
},
{
"repo": "Anuken/EvalPlugin",
"name": "EvalPlugin",
"author": "Anuke",
"lastUpdated": "2019-09-08T19:00:06Z",
"stars": 2,
"hasJava": true,
"description": "A plugin to let admins evalulate arbitrary Java code on the server for debugging purposes."
},
{
"repo": "Loxoz/MindustryJSPlugin",
"name": "MindustryJSPlugin",
"author": "Loxoz",
"lastUpdated": "2019-11-10T04:38:00Z",
"stars": 2,
"hasJava": true,
"description": "A Mindustry Plugin to support Javascript scripts as sub-plugins"
},
{
"repo": "Quezler/mindustry__plugin--flatearth",
"name": "mindustry__plugin--flatearth",
"author": "Quezler",
"lastUpdated": "2020-01-19T18:14:37Z",
"stars": 2,
"hasJava": true,
"description": "A moment of silence for the solar panels."
},
{
"repo": "Quezler/mindustry__plugin--reclamation",
"name": "mindustry__plugin--reclamation",
"author": "Quezler",
"lastUpdated": "2020-01-20T09:18:42Z",
"stars": 2,
"hasJava": true,
"description": "Strengthens the foothold of the enemy as time goes on. (aka: spawns become larger ever wave)"
},
{
"repo": "Slava0135/Recapture",
"name": "Recapture",
"author": "Slava0135",
"lastUpdated": "2021-01-24T16:13:13Z",
"stars": 2,
"hasJava": true,
"description": "Allows teams to capture cores."
},
{
"repo": "MindustryInside/RankedPlugin",
"name": "RankedPlugin",
"author": "MindustryInside",
"lastUpdated": "2021-02-02T18:15:52Z",
"stars": 2,
"hasJava": true,
"description": "Base PvP ranked gamemode."
},
{
"repo": "Kieaer/Authme",
"name": "Authme",
"author": "Kieaer",
"lastUpdated": "2021-02-06T21:41:52Z",
"stars": 2,
"hasJava": true,
"description": "Simple login system"
},
{
"repo": "Slava0135/LuckyRouters",
"name": "LuckyRouters",
"author": "Slava0135",
"lastUpdated": "2021-07-28T13:51:00Z",
"stars": 2,
"hasJava": true,
"description": "Totally unfair mindustry experience"
},
{
"repo": "hezhenwei/MTDChatBot",
"name": "MTDChatBot",
"author": "Myke.H",
"lastUpdated": "2021-08-10T09:29:25Z",
"stars": 2,
"hasJava": true,
"description": "Mindustry Chat Bot."
},
{
"repo": "ObvilionNetwork/mindustry-ai-antigrief-plugin",
"name": "mindustry-ai-antigrief-plugin",
"author": "FatonnDev",
"lastUpdated": "2021-08-15T15:29:49Z",
"stars": 2,
"hasJava": true,
"description": "Based on AI antigrief plugin for Mindustry"
},
{
"repo": "ZetaMap/UnitsForAll-plugin",
"name": "UnitsForAll-plugin",
"author": "Susideur (map)",
"lastUpdated": "2021-10-15T19:58:50Z",
"stars": 2,
"hasJava": true,
"description": "(plugin only in French) Ce plugin mindustry donne la possibilité aux joueurs de faire spawn l'unité de leurs choix toute les 30 min (ou à définir)."
},
{
"repo": "L0615T1C5-216AC-9437/GlobalImageBan",
"name": "GlobalImageBan",
"author": "L0615T1C5.216AC:9437's cat",
"lastUpdated": "2022-11-15T23:43:22Z",
"stars": 2,
"hasJava": true,
"description": "Checks if logic image code is banned"
},
{
"repo": "pisceskkk/Mindustry_ServerAutoSave",
"name": "Mindustry_ServerAutoSave",
"author": "pisceskkk",
"lastUpdated": "2023-01-11T10:16:53Z",
"stars": 2,
"hasJava": true,
"description": "A plugin to auto save the game."
},
{
"repo": "Ilya246/mapChange",
"name": "mapChange",
"author": "[USMP]Ilya246",
"lastUpdated": "2023-02-22T00:55:20Z",
"stars": 2,
"hasJava": true,
"description": "Allows players to vote to override next map and vote to gameover. Contributors: [USMP]Даркнесс"
},
{
"repo": "xpdustry/NoPayloadConveyorCrash",
"name": "NoPayloadConveyorCrashPlugin",
"author": "Xpdustry",
"lastUpdated": "2023-03-01T18:51:24Z",
"stars": 2,
"hasJava": true,
"description": "No more payload conveyor crashes."
},
{
"repo": "Kowkodivka/PluginJNIExample",
"name": "PluginJNIExample",
"author": "kowkodivka",
"lastUpdated": "2023-09-03T01:54:01Z",
"stars": 2,
"hasJava": true,
"description": "..."
},
{
"repo": "TheRadioactiveBanana/BotEradicator",
"name": "BotEradicator",
"author": "TheRadioactiveBanana",
"lastUpdated": "2023-12-10T13:04:08Z",
"stars": 2,
"hasJava": true,
"description": "Utterly eradicate DDoS bots."
},
{
"repo": "King-BR/Mindustry-Discord-Chat",
"name": "Mindustry-Discord-Chat",
"author": "King-BR",
"lastUpdated": "2024-03-04T01:47:55Z",
"stars": 2,
"hasJava": true,
"description": "Link mindustry to discord chat"
},
{
"repo": "Quezler/mindustry__plugin--weepingangel",
"name": "mindustry__plugin--weepingangel",
"author": "Quezler",
"lastUpdated": "2020-01-22T18:09:11Z",
"stars": 1,
"hasJava": true,
"description": "!weepingangel"
},
{
"repo": "Jaskowicz1/Mindustry-Discord-Relay",
"name": "Mindustry-Discord-Relay",
"author": "ArchieJaskowicz",
"lastUpdated": "2020-02-02T13:41:36Z",
"stars": 1,
"hasJava": true,
"description": "A Mindustry plugin that allows users to send information to discord from Mindustry."
},
{
"repo": "Quezler/mindustry__plugin--blackbox",
"name": "mindustry__plugin--blackbox",
"author": "Quezler",
"lastUpdated": "2020-02-07T16:59:22Z",
"stars": 1,
"hasJava": true,
"description": "That just sounds like autosave with extra steps..."
},
{
"repo": "j-vds/mindustry__plugin--minduracing",
"name": "mindustry__plugin--minduracing",
"author": "Fishbuilder",
"lastUpdated": "2020-02-07T17:05:41Z",
"stars": 1,
"hasJava": true,
"description": "don't touch the brakes"
},
{
"repo": "Recessive/grayscale",
"name": "grayscale",
"author": "Recessive",
"lastUpdated": "2020-03-10T07:55:44Z",
"stars": 1,
"hasJava": true,
"description": "Removes individuality and makes for a very boring lobby."
},
{
"repo": "Pointifix/UniqueUsernamesPlugin",
"name": "UniqueUsernamesPlugin",
"author": "Pointifix",
"lastUpdated": "2020-04-24T21:37:19Z",
"stars": 1,
"hasJava": true,
"description": "Saves the username of each joined user and prohibits impersonations."
},
{
"repo": "MindustryParty/Plugin",
"name": "Plugin",
"author": "NoahvdAa",
"lastUpdated": "2020-05-30T16:47:03Z",
"stars": 1,
"hasJava": true,
"description": "Core plugin of the mindustry.party server."
},
{
"repo": "Quezler/mindustry__plugin--bomberman",
"name": "mindustry__plugin--bomberman",
"author": "Quezler, Fishbuilder",
"lastUpdated": "2020-07-03T08:37:14Z",
"stars": 1,
"hasJava": true,
"description": "<insert thorium here>"
},
{
"repo": "Volas171/AlexServerPlugin",
"name": "AlexServerPlugin",
"author": "Alex and VolasYouKnow",
"lastUpdated": "2020-12-31T17:43:44Z",
"stars": 1,
"hasJava": true,
"description": "A plugin to demonstrate some AlexServerPlugin features."
},
{
"repo": "B00M3000/Mindustry-Web-Dashboard-Plugin",
"name": "Mindustry-Web-Dashboard-Plugin",
"author": "MochaBoom",
"lastUpdated": "2021-01-11T14:41:38Z",
"stars": 1,
"hasJava": true,
"description": "A plugin to communicate with a dashboard web server."
},
{
"repo": "GaviTSRA/TSR-AntiLogicVirus",
"name": "TSR-AntiLogicVirus",
"author": "GaviTSRA",
"lastUpdated": "2021-04-05T19:41:35Z",
"stars": 1,
"hasJava": true,
"description": "The anti-virus plugin for mindustry."
},
{
"repo": "Gee-aitcH/GHMP-AdminChat",
"name": "GHMP-AdminChat",
"author": "(G_H)",
"lastUpdated": "2021-04-24T14:04:02Z",
"stars": 1,
"hasJava": true,
"description": "Admin Chat plugin for server."
},
{
"repo": "ObvilionNetwork/mindustry-recapture-plugin",
"name": "mindustry-recapture-plugin",
"author": "FatonnDev",
"lastUpdated": "2021-06-17T19:18:14Z",
"stars": 1,
"hasJava": true,
"description": "Recapture pvp minigame for Mindustry"
},
{
"repo": "j-vds/randomEnemySpawn",
"name": "randomEnemySpawn",
"author": "Fishbuilder",
"lastUpdated": "2021-06-27T17:54:44Z",
"stars": 1,
"hasJava": true,
"description": "Spawns enemies in a random location..."
},
{
"repo": "j-vds/TeamPlugin",
"name": "TeamPlugin",
"author": "Fishbuilder",
"lastUpdated": "2021-07-01T12:43:15Z",
"stars": 1,
"hasJava": true,
"description": "A plugin that lets a player change teams."
},
{
"repo": "shugen002/MDTSteamLobbyPlugin",
"name": "MDTSteamLobbyPlugin",
"author": "Shugen002 (MDTSteamLobbyPlugin@shugen.space)",
"lastUpdated": "2021-07-17T01:10:28Z",
"stars": 1,
"hasJava": true,
"description": "A plugin to demonstrate some basic features."
},
{
"repo": "Volas171/UnitSpawn",
"name": "UnitSpawn",
"author": "VolasYouknow",
"lastUpdated": "2021-07-18T02:27:22Z",
"stars": 1,
"hasJava": true,
"description": "A plugin for spawn units."
},
{
"repo": "MindustryParty/PluginV2",
"name": "PluginV2",
"author": "NoahvdAa",
"lastUpdated": "2021-11-13T16:57:26Z",
"stars": 1,
"hasJava": true,
"description": "The new plugin that powers Mindustry.Party. "
},
{
"repo": "ThePotatoChronicler/potato-mindustry-plugin",
"name": "potato-mindustry-plugin",
"author": "Potato Chronicler",
"lastUpdated": "2022-04-20T08:24:24Z",
"stars": 1,
"hasJava": true,
"description": "Potato plugin to do potato specific things"
},
{
"repo": "deltanedas/MatrixBridge",
"name": "MatrixBridge",
"author": "deltanedas",
"lastUpdated": "2022-05-28T00:21:28Z",
"stars": 1,
"hasJava": true,
"description": "Bridges mindustry server chat with matrix."
},
{
"repo": "Ilya246/teamChange",
"name": "teamChange",
"author": "[USMP]Ilya246",
"lastUpdated": "2023-02-22T00:55:03Z",
"stars": 1,
"hasJava": true,
"description": "Allows players to change team."
},
{
"repo": "quantum-brokengrammar/kogtech_commands_plugin",
"name": "kogtech_commands_plugin",
"author": "quantum-brokengrammar",
"lastUpdated": "2023-05-31T04:21:15Z",
"stars": 1,
"hasJava": true,
"description": "A plugin for commands for the server."
},
{
"repo": "byzp/chatgpt-mindustry-plugin",
"name": "chatgpt-mindustry-plugin",
"author": "byzp",
"lastUpdated": "2023-07-04T10:40:27Z",
"stars": 1,
"hasJava": true,
"description": "chat. Use command /c."
},
{
"repo": "550W-HOST/the-mindustry-server-plugin",
"name": "the-mindustry-server-plugin",
"author": "PaperCube",
"lastUpdated": "2023-10-28T20:03:20Z",
"stars": 1,
"hasJava": true,
"description": "Provides the following commands: /pause, /p, /tp, /here, /back"
},
{
"repo": "Kowkodivka/AntiBot",
"name": "AntiBot",
"author": "kwokodivka",
"lastUpdated": "2023-11-01T16:26:04Z",
"stars": 1,
"hasJava": true,
"description": "..."
},
{
"repo": "gerdoe-jr/Discustry",
"name": "Discustry",
"author": "gerdoe",
"lastUpdated": "2023-12-21T13:45:13Z",
"stars": 1,
"hasJava": true,
"description": "Simple as fuck Discord-Mindustry bridge plugin."
},
{
"repo": "Redstonneur1256/Bot-Remover",
"name": "Bot-Remover",
"author": "Redstonneur1256",
"lastUpdated": "2024-01-28T23:56:40Z",
"stars": 1,
"hasJava": true,
"description": "No description provided."
},
{
"repo": "Atomic-Laboratory/Radon",
"name": "Radon (A HQL Client)",
"author": "Atomic Laboratories",
"lastUpdated": "2024-04-16T05:01:30Z",
"stars": 1,
"hasJava": true,
"description": "A Mindustry HQL library. Interact with a SQL database"
},
{
"repo": "Atomic-Laboratory/Argon",
"name": "Argon (A RabbitMQ Client)",
"author": "Atomic Laboratories",
"lastUpdated": "2024-04-19T02:23:46Z",
"stars": 1,
"hasJava": true,
"description": "A Mindustry RabbitMQ library. Send Mindustry-like events across servers! Achieve peak integration."
},
{
"repo": "thedimasNetwork/StellarPlugin",
"name": "StellarPlugin",
"author": "thedimas & Ahsoka-501 & skykatik",
"lastUpdated": "2024-04-27T14:37:49Z",
"stars": 1,
"hasJava": true,
"description": "Plugin for thedimas' servers."
},
{
"repo": "Atomic-Laboratory/ChatTag",
"name": "Chat Tag",
"author": "Atomic Laboratories",
"lastUpdated": "2024-05-09T04:46:51Z",
"stars": 1,
"hasJava": true,
"description": "Adds a tag to a players name in chat"
},
{
"repo": "ericchase/java--mindustry-plugin",
"name": "java--mindustry-plugin",
"author": "Anuke",
"lastUpdated": "2024-05-16T10:35:37Z",
"stars": 1,
"hasJava": true,
"description": "A plugin to demonstrate some basic features."
},
{
"repo": "xpdustry/Simple-Blacklist",
"name": "Simple Blacklist",
"author": "ZetaMap",
"lastUpdated": "2024-05-19T15:30:18Z",
"stars": 1,
"hasJava": true,
"description": "Allows to prohibit nicknames with a blacklist, all nicknames containing one from the list, or matches with one regex, will be banned or kicked"
},
{
"repo": "xpdustry/Router",
"name": "RouterPlugin",
"author": "Xpdustry",
"lastUpdated": "2024-05-23T08:56:52Z",
"stars": 1,
"hasJava": true,
"description": "A Reddit-like server for sharing schematics."
},
{
"repo": "GaviTSRA/TSR-Core",
"name": "TSR-Core",
"author": "GaviTSRA",
"lastUpdated": "2024-05-30T22:23:15Z",
"stars": 1,
"hasJava": true,
"description": "TSR Core Library Plugin"
},
{
"repo": "xpdustry/kotlin-runtime",
"name": "KotlinRuntime",
"author": "Xpdustry",
"lastUpdated": "2024-06-07T05:11:16Z",
"stars": 1,
"hasJava": true,
"description": "A companion plugin for Kotlin based plugins."
},
{
"repo": "Iapetus-11/Xenon-Mindustry-Plugin",
"name": "Xenon-Mindustry-Plugin",
"author": "Iapetus11",
"lastUpdated": "2020-02-03T18:57:34Z",
"stars": 0,
"hasJava": true,
"description": "idk"
},
{
"repo": "Neba-MD/The-worst-mindustry-plugin",
"name": "The-worst-mindustry-plugin",
"author": "Mlokis",
"lastUpdated": "2020-03-28T14:39:31Z",
"stars": 0,
"hasJava": true,
"description": "A plugin for the worst server ewer."
},
{
"repo": "Recessive/MindustryFFA",
"name": "MindustryFFA",
"author": "Recessive",
"lastUpdated": "2020-04-16T01:13:14Z",
"stars": 0,
"hasJava": true,
"description": "epic mindustry battle royale"
},
{
"repo": "Blockzilla101/linker",
"name": "linker",
"author": "Blockzilla",
"lastUpdated": "2020-05-09T13:19:59Z",
"stars": 0,
"hasJava": true,
"description": "A plugin to tie player admin status with a discord role"
},
{
"repo": "jakubDoka/TWS-plugin",
"name": "TWS-plugin",
"author": "Mlokis",
"lastUpdated": "2020-06-06T18:15:22Z",
"stars": 0,
"hasJava": true,
"description": "A plugin to demonstrate some basic features."
},
{
"repo": "j-vds/BuilderGame",
"name": "BuilderGame",
"author": "Fishbuilder",
"lastUpdated": "2020-09-04T09:32:52Z",
"stars": 0,
"hasJava": true,
"description": "A new gamemode for mindustry."
},
{
"repo": "Vortetty/SimpleUtilsPlugin",
"name": "SimpleUtilsPlugin",
"author": "Anuke",
"lastUpdated": "2020-09-28T03:46:40Z",
"stars": 0,
"hasJava": true,
"description": "A plugin to demonstrate some basic features."
},
{
"repo": "Patryk434/spawnUnit",
"name": "spawnUnit",
"author": "Nipple",
"lastUpdated": "2020-09-29T17:16:36Z",
"stars": 0,
"hasJava": false,
"description": "A plugin for spawn units."
},
{
"repo": "Kickbut101/MultiplayerPausePlugin",
"name": "MultiplayerPausePlugin",
"author": "Andy",
"lastUpdated": "2020-12-20T22:11:19Z",
"stars": 0,
"hasJava": true,
"description": "Compatible with Mindustry 6.0 - A super simple plugin to pause serverstate when players leave"
},
{
"repo": "deltanedas/JSEval",
"name": "JSEval",
"author": "Summet, DeltaNedas",
"lastUpdated": "2021-01-11T11:22:08Z",
"stars": 0,
"hasJava": false,
"description": "Allows admins to execute JavaScript code using a special command, /js."
},
{
"repo": "fuzzbuck/io-global-bans",
"name": "io-global-bans",
"author": "fuzzbuck",
"lastUpdated": "2021-01-26T23:57:12Z",
"stars": 0,
"hasJava": true,
"description": "A plugin that disallows players that are banned on the io server network from joining your server."
},