-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.json
1999 lines (1999 loc) · 76.4 KB
/
index.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
{
"modules": [
{
"name": "Advanced coordinates",
"description": "Coordinates with some more information",
"file": "advancedCoordinates.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/advancedCoordinates.lua",
"libs": [],
"commands": [],
"hash": "e36c159fcfa6950a1034c544da3d2ce1",
"lastUpdated": "2024-03-16T00:10:04.823Z"
},
{
"name": "Among UI",
"description": "gives you a sus UI",
"file": "susUI.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/susUI.lua",
"libs": [],
"commands": [],
"hash": "60444bc0ca34c63640f2f73be06e0568",
"lastUpdated": "2022-12-06T14:28:39.000Z"
},
{
"name": "AreaSearcherExemple",
"description": "an exemple for the area searcher",
"file": "AreaSearcherExemple.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/AreaSearcherExemple.lua",
"libs": [
"AreaSearcher"
],
"commands": [
"search"
],
"hash": "f195e75bbdceb3a93b22401eaa988282",
"lastUpdated": "2023-09-05T22:17:05.159Z"
},
{
"name": "Armor Damage Reduction Viewer",
"description": "View some interesting details of your armor like: Enchantment level | Damage reduced | Armor durability",
"file": "Armoria.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/Armoria.lua",
"libs": [],
"commands": [],
"hash": "1f8e743da334f50376214566deed734d",
"lastUpdated": "2022-12-06T14:28:39.000Z"
},
{
"name": "Arraylist",
"description": "Shows what module is enabled",
"file": "arraylist.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/arraylist.lua",
"libs": [],
"commands": [],
"hash": "7645226e44840ab830319bbb5c9b7b5e",
"lastUpdated": "2024-04-28T02:29:11.584Z"
},
{
"name": "Arrow Trajectory",
"description": "Shows where your arrow will hit",
"file": "arrowTrail.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/arrowTrail.lua",
"libs": [
"renderthreeD"
],
"commands": [],
"hash": "3312072c14e30930b87630e2e233a0a8",
"lastUpdated": "2023-10-30T15:43:22.057Z"
},
{
"name": "AutoParty",
"description": "Automatically accepts party invite from added players",
"file": "AutoParty.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/AutoParty.lua",
"libs": [
"fileUtility"
],
"commands": [
"addparty",
"removeparty",
"listparty",
"clearparty"
],
"hash": "60a8ae0578ca72d6d6814d0b9e41707c",
"lastUpdated": "2023-12-17T13:39:59.054Z"
},
{
"name": "Beacon Range",
"description": "Shows the range of beacon",
"file": "BeaconRange.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/BeaconRange.lua",
"libs": [],
"commands": [],
"hash": "708d1669f36f97b488e96eab77e58109",
"lastUpdated": "2023-08-20T12:16:08.285Z"
},
{
"name": "Better Camera",
"description": "Overhauls the camera!",
"file": "BetterCamera.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/BetterCamera.lua",
"libs": [],
"commands": [],
"hash": "e478db97fb393a1614bc3c3f6bcb10cb",
"lastUpdated": "2024-02-06T23:43:56.760Z"
},
{
"name": "Better Coordinates",
"description": "A customizable coordinates module",
"file": "coords.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/coords.lua",
"libs": [],
"commands": [],
"hash": "997537bff0710ca501576cbf94f427b4",
"lastUpdated": "2024-03-16T15:57:32.829Z"
},
{
"name": "Better Hunger Bar",
"description": "a script similar to appleskin mod in java",
"file": "BetterHungerBar.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/BetterHungerBar.lua",
"libs": [],
"commands": [],
"hash": "1c898b551f3ea6ed3959a81c9c9aade8",
"lastUpdated": "2024-05-01T13:57:42.505Z"
},
{
"name": "Birds",
"description": "Adds birds that fly around in your world.",
"file": "birds.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/birds.lua",
"libs": [
"vectors",
"anetwork"
],
"commands": [],
"hash": "e6650dfe39ea19ee364e50aaf2273a40",
"lastUpdated": "2024-08-13T14:21:06.659Z"
},
{
"name": "Block Finder",
"description": "Shows blocks in the world",
"file": "showBlocks.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/showBlocks.lua",
"libs": [
"renderthreeD"
],
"commands": [
"findBlock"
],
"hash": "9e6a9985e1f6a86134ede2115175e3a5",
"lastUpdated": "2024-03-18T00:04:30.698Z"
},
{
"name": "Breadcrumbs",
"description": "Adds a breadcrumb trail behind you.",
"file": "Breadcrumbs.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/Breadcrumbs.lua",
"libs": [],
"commands": [],
"hash": "fc4e17ae46e20d02b7bceb1fb15b4168",
"lastUpdated": "2023-06-21T13:52:13.000Z"
},
{
"name": "Camera Animations",
"description": "A camera animation system, only works in creative mode and is still buggy.",
"file": "cameraAnimations.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/cameraAnimations.lua",
"libs": [
"freecamHelper"
],
"commands": [],
"hash": "9c138fd938e9d7d98bd6e4dd635a997d",
"lastUpdated": "2024-09-21T18:15:27.186Z"
},
{
"name": "Camera Effects",
"description": "Adds auto exposure and lens flares to the game.",
"file": "cameraEffects.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/cameraEffects.lua",
"libs": [
"vectors",
"scripting-repo"
],
"commands": [],
"hash": "a4379973be897d7657265acb32004502",
"lastUpdated": "2024-01-20T03:00:01.492Z"
},
{
"name": "Cape Switcher",
"description": "Lets you swap and manage your capes, directly from inside the game! (Doesn't apply on join).",
"file": "CapeSwitcher.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/CapeSwitcher.lua",
"libs": [],
"commands": [],
"hash": "69bdf6618aedaf4cbc6c551f23d5bb59",
"lastUpdated": "2024-05-15T20:28:06.791Z"
},
{
"name": "Cat Switcher",
"description": "xJqms's favorite module!",
"file": "CatSwitcher.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/CatSwitcher.lua",
"libs": [],
"commands": [],
"hash": "ca3327767cbbc3618f3752fb1d10d5d5",
"lastUpdated": "2023-06-12T23:42:40.000Z"
},
{
"name": "Chat Debugger",
"description": "Shows every chat info in chat",
"file": "ChatDebugger.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/ChatDebugger.lua",
"libs": [],
"commands": [
"copy"
],
"hash": "08c9f37d2516900fb2184a0e74c8fefb",
"lastUpdated": "2023-09-14T11:37:03.248Z"
},
{
"name": "Chat Reverser",
"description": "Reverses chat (works properly in singleplayer and hive)",
"file": "chatReverser.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/chatReverser.lua",
"libs": [],
"commands": [],
"hash": "fe94d6061bdf5299c7e5a3cc06940191",
"lastUpdated": "2022-07-26T23:26:48.000Z"
},
{
"name": "ChatLogger",
"description": "Saves in Chatlogger.txt",
"file": "Chatlog.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/Chatlog.lua",
"libs": [],
"commands": [],
"hash": "f874088e8c99039efed52a2887c6b4d7",
"lastUpdated": "2022-07-19T07:57:53.000Z"
},
{
"name": "Cinematic Black Bar",
"description": "Just a random Black Bar that is adjustable",
"file": "blackbars.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/blackbars.lua",
"libs": [],
"commands": [],
"hash": "08b301b55a17dfbd28da016ac7bea551",
"lastUpdated": "2022-03-05T17:41:45.000Z"
},
{
"name": "Circle Tool",
"description": "Helps you build circles in minecraft",
"file": "CircleTool.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/CircleTool.lua",
"libs": [],
"commands": [],
"hash": "7820525b5af2f7c2ebe099e36a23e71c",
"lastUpdated": "2023-04-07T11:29:59.000Z"
},
{
"name": "Click Limiter",
"description": "Limits your CPS to user defined values.",
"file": "ClickLimiter.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/ClickLimiter.lua",
"libs": [],
"commands": [],
"hash": "a13a7a683644769ce02514526255c1b1",
"lastUpdated": "2023-05-23T17:05:20.000Z"
},
{
"name": "Click To Ten",
"description": "Click to ten and then crash.",
"file": "ClickToTen.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/ClickToTen.lua",
"libs": [],
"commands": [],
"hash": "dd7de21edde6711590654b53787e54a3",
"lastUpdated": "2024-02-11T00:10:46.442Z"
},
{
"name": "Copy Last Message",
"description": "Allows you to copy the last messsage sent in chat",
"file": "CopyLastMessage.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/CopyLastMessage.lua",
"libs": [],
"commands": [],
"hash": "981678d5770eb2a0890758b81fb96373",
"lastUpdated": "2022-10-13T23:30:57.000Z"
},
{
"name": "Cosmetics",
"description": "Crown and halo cosmetics for Onix Client",
"file": "cosmetics.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/cosmetics.lua",
"libs": [],
"commands": [],
"hash": "46b13516efc7979c938d5aef320c160a",
"lastUpdated": "2022-10-21T23:35:25.000Z"
},
{
"name": "Cosmetics v2 Example",
"description": "An example script for the cosmetics library.",
"file": "cosmeticsLibV2Example.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/cosmeticsLibV2Example.lua",
"libs": [
"cosmeticTools"
],
"commands": [],
"hash": "056a52d1b9259637e05764e9ac6b7008",
"lastUpdated": "2022-12-05T14:27:43.000Z"
},
{
"name": "Crash Hotkey",
"description": "Crashes your game on a specifified hotkey.",
"file": "CrashHotkey.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/CrashHotkey.lua",
"libs": [
"Utils"
],
"commands": [],
"hash": "1a9b6dbf341aafb1df63bcc4f9276a6b",
"lastUpdated": "2023-10-12T07:14:21.932Z"
},
{
"name": "Custom Setting Example",
"description": "This is an example of a custom setting.",
"file": "CustomSettingExample.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/CustomSettingExample.lua",
"libs": [],
"commands": [],
"hash": "faf1495c3cc8b6700edac9445e8849b6",
"lastUpdated": "2023-09-05T22:17:05.159Z"
},
{
"name": "Custom Text Overlay",
"description": "Displays the text of your choice to the screen.",
"file": "customTextOverlay.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/customTextOverlay.lua",
"libs": [],
"commands": [],
"hash": "3c6b914ea575842436c3a97a2c80e6df",
"lastUpdated": "2024-05-30T21:56:48.914Z"
},
{
"name": "Daylight Cycle Speed Changer",
"description": "Changes the speed of the day/night cycle. 1 is normal speed.",
"file": "timeSpeed.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/timeSpeed.lua",
"libs": [],
"commands": [],
"hash": "95c0de87f4195512bbb63a8a01865490",
"lastUpdated": "2023-12-21T21:59:18.138Z"
},
{
"name": "Death Coordinates",
"description": "Show player death coordinates",
"file": "deathcoordinates.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/deathcoordinates.lua",
"libs": [],
"commands": [],
"hash": "11c3710e34007dce7a455f755d7bf4e8",
"lastUpdated": "2022-01-16T15:20:39.000Z"
},
{
"name": "Debug Menu plus",
"description": "Addition to \\\"Java Debug Menu\\\", shows information about Target Entity and Current Item",
"file": "DebugMenuPlus.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/DebugMenuPlus.lua",
"libs": [
"Utils"
],
"commands": [],
"hash": "032825a7478e2f43f46ed4e53826f67a",
"lastUpdated": "2023-08-18T21:30:54.302Z"
},
{
"name": "Double Click Prevent Disabler",
"description": "Disables Double Click Prevent when not on Zeqa or CubeCraft.",
"file": "DCPreventDisabler.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/DCPreventDisabler.lua",
"libs": [
"Utils"
],
"commands": [],
"hash": "e9f03809df6e902048a60a24723d9704",
"lastUpdated": "2023-08-25T23:01:35.371Z"
},
{
"name": "Enabled Filter",
"description": "Only shows enabled modules in the module list.",
"file": "EnabledFilter.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/EnabledFilter.lua",
"libs": [],
"commands": [],
"hash": "fb4a6c365842bbc6d6a6378e83718ebe",
"lastUpdated": "2023-06-21T15:22:54.000Z"
},
{
"name": "Ender Pearl Targeter",
"description": "Shows you where you have to look to hit a target with an ender pearl.",
"file": "pearlTargeter.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/pearlTargeter.lua",
"libs": [],
"commands": [],
"hash": "a5cc1b80cfb9554fd698453bc9ad1bdb",
"lastUpdated": "2024-05-20T17:13:44.434Z"
},
{
"name": "Exemple",
"description": "A Simple \\\"Hello World\\\"",
"file": "Exemple.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/Exemple.lua",
"libs": [],
"commands": [],
"hash": "b73e8ce8cb8e98e35bb6531b39ab9e58",
"lastUpdated": "2022-01-16T15:20:39.000Z"
},
{
"name": "Explosive Crops",
"description": "Has a random chance of crops exploding when you break them.",
"file": "ExplosiveCrops.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/ExplosiveCrops.lua",
"libs": [],
"commands": [],
"hash": "6ffd77a40067311ddef38f75b8938178",
"lastUpdated": "2023-07-10T23:56:17.000Z"
},
{
"name": "Fake ping display",
"description": "Show random number instead of ping",
"file": "fakepingdisplay.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/fakepingdisplay.lua",
"libs": [],
"commands": [],
"hash": "6865afa0fe9c0a411866b6994354ea76",
"lastUpdated": "2023-12-14T15:24:44.457Z"
},
{
"name": "Fall Trajectory",
"description": "Shows you where you'll fall",
"file": "fallTrajectory.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/fallTrajectory.lua",
"libs": [
"playerPhysics",
"vectors"
],
"commands": [],
"hash": "2808dce599f73d6d243230b5bc74a4f6",
"lastUpdated": "2024-05-19T19:33:21.949Z"
},
{
"name": "FPS Limiter",
"description": "Limit your game's fps",
"file": "fps_limiter.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/fps_limiter.lua",
"libs": [],
"commands": [],
"hash": "b270e36c1dd56667485569d63f8f3bd7",
"lastUpdated": "2022-04-26T17:59:15.000Z"
},
{
"name": "Galaxite Tweaks",
"description": "Allows players to tweak Galaxite's chat system to reduce bloat",
"file": "gxt.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/gxt.lua",
"libs": [],
"commands": [],
"hash": "a6696c507a8855937c1a6629c8c9ecb5",
"lastUpdated": "2023-02-06T21:58:24.000Z"
},
{
"name": "game 2048",
"description": "2048 game by MCBE",
"file": "2048.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/2048.lua",
"libs": [],
"commands": [],
"hash": "50fbb16b56d7b939fd150dec7b8f0552",
"lastUpdated": "2022-05-30T13:04:14.000Z"
},
{
"name": "Gamemode Hotkey",
"description": "Press hotkey to switch between Gamemode 0 and 1",
"file": "gamemodehotkeys.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/gamemodehotkeys.lua",
"libs": [],
"commands": [],
"hash": "3e6607e8bd5fdc313c380d3a2138fb4d",
"lastUpdated": "2024-02-16T13:11:51.176Z"
},
{
"name": "Gamemode Switcher",
"description": "Gamemode Switcher by MCBE Craft allows you to switch gamemode\\nlike on java",
"file": "gamemode switcher.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/gamemode switcher.lua",
"libs": [
"keyconverter"
],
"commands": [],
"hash": "3d4f8f4df0c412d3ffd0ec373ea4647f",
"lastUpdated": "2024-03-27T21:22:19.721Z"
},
{
"name": "Green Screen",
"description": "Displays a green screen on the selected coords.",
"file": "GreenScreen.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/GreenScreen.lua",
"libs": [],
"commands": [],
"hash": "0ed32ae3d0d9bf8b04b69bfe4e9499e6",
"lastUpdated": "2024-07-24T23:08:02.941Z"
},
{
"name": "Guardian Spawn Spots",
"description": "Finds the area where guardians spawns in ocean monuments",
"file": "GuardianSpawnSpots.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/GuardianSpawnSpots.lua",
"libs": [],
"commands": [],
"hash": "747ac5d7f2447d2817625912d50cfb11",
"lastUpdated": "2024-03-16T17:45:14.480Z"
},
{
"name": "Held Item Counter",
"description": "Gives the amount of the selected item you have in your inventory",
"file": "quantity.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/quantity.lua",
"libs": [],
"commands": [],
"hash": "a4daf41af43dbca6d1e3d3aad5fb0fb4",
"lastUpdated": "2024-03-17T23:16:04.776Z"
},
{
"name": "Hit Particles",
"description": "",
"file": "HitParticles.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HitParticles.lua",
"libs": [],
"commands": [],
"hash": "6d3a3c8bdea2fd31ad870e676f18c445",
"lastUpdated": "2022-11-09T18:36:05.000Z"
},
{
"name": "Hive Autoqueue",
"description": "Automatically Queue Hive Games. Includes .rq command.\\nScript Version: v3.6",
"file": "HiveAutoQueue.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HiveAutoQueue.lua",
"libs": [
"gfx2Colors"
],
"commands": [
"rq"
],
"hash": "3ef33380a4a2c2979c594bb4b28cb3f1",
"lastUpdated": "2024-10-14T15:30:00.966Z"
},
{
"name": "Hive Booster Timer",
"description": "Shows how long you have left on your boost. The command is .boosterinfo\\nVersion 1.1.0",
"file": "BoosterTimer.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/BoosterTimer.lua",
"libs": [],
"commands": [
"boosterinfo"
],
"hash": "491014aac3bc5a57586340db7911a56b",
"lastUpdated": "2024-03-16T13:28:53.549Z"
},
{
"name": "Hive Chat Friend List",
"description": "Shows your friends in chat",
"file": "HiveChatFriendList.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HiveChatFriendList.lua",
"libs": [],
"commands": [],
"hash": "44309bdd2cdf30905f58780ccf380906",
"lastUpdated": "2024-12-01T02:43:49.641Z"
},
{
"name": "Hive Chat Replacer",
"description": "Replaces Hive bloat chat messages with awesome Onix Client messages.",
"file": "HiveChatReplacer.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HiveChatReplacer.lua",
"libs": [],
"commands": [],
"hash": "c11487655aadc659e76f96a4d786081c",
"lastUpdated": "2023-03-24T23:13:17.000Z"
},
{
"name": "Hive CS Code Copier",
"description": "Copies the custom server code from the Hive to your clipboard.",
"file": "HiveCSCodeCopier.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HiveCSCodeCopier.lua",
"libs": [],
"commands": [],
"hash": "57a63c817d2de64e8a0acf0f3f60b05a",
"lastUpdated": "2023-10-30T15:44:40.086Z"
},
{
"name": "Hive Quick Invite",
"description": "Quickly invite players to your friends list or party by clicking them while holding the item when in hub.",
"file": "HiveQuickInvite.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HiveQuickInvite.lua",
"libs": [],
"commands": [],
"hash": "44af5a7e7a064e9426566b19680f0b92",
"lastUpdated": "2024-10-10T22:06:38.039Z"
},
{
"name": "Hive Quick Mount",
"description": "Hive Quick Mount",
"file": "HiveQuickMount.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HiveQuickMount.lua",
"libs": [],
"commands": [],
"hash": "7efc64bd3bc57166ea1426753e2d6f62",
"lastUpdated": "2024-12-01T02:43:49.641Z"
},
{
"name": "Hive Statistic Checker",
"description": "Allows you to check the statistics of people in-game.",
"file": "HiveStatChecker.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HiveStatChecker.lua",
"libs": [
"hiveGamemodes",
"DependentBoolean"
],
"commands": [
"stats"
],
"hash": "5b6394ba3180b31dfb3ccdbe27a41a38",
"lastUpdated": "2023-09-19T11:48:18.144Z"
},
{
"name": "Hive Winstreak Counter",
"description": "Winstreak counter for The Hive (Only Skywars, Treasure wars)",
"file": "hivewinstreak.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/hivewinstreak.lua",
"libs": [
"fileUtility"
],
"commands": [
"resetstreak",
"addstreak",
"setstreak"
],
"hash": "0bf25c18600189ba3371f6458bb1138b",
"lastUpdated": "2024-03-17T01:08:57.119Z"
},
{
"name": "Hotbar Armour HUD",
"description": "Armour HUD and offhand slot next to the hotbar.",
"file": "hotbar-armour-hud.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/hotbar-armour-hud.lua",
"libs": [],
"commands": [],
"hash": "b8a62d42f85cbffa2d9f4770dc729d45",
"lastUpdated": "2024-05-11T08:56:19.095Z"
},
{
"name": "HyperlandsAutoQueue",
"description": "Auto Queues any gamemode in hyperlands",
"file": "HyperlandsAutoQueue.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/HyperlandsAutoQueue.lua",
"libs": [],
"commands": [],
"hash": "fa59af1f050c9439e145b606c16a69cb",
"lastUpdated": "2022-03-17T12:15:11.000Z"
},
{
"name": "Ice Boat",
"description": "Places ice under you when you're in a boat. You must be holding a splash long mundane potion for it to work (the flag didnt work!!). Made by Naomi.",
"file": "IceBoat.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/IceBoat.lua",
"libs": [],
"commands": [],
"hash": "3d506362592c98c64f0d1c88d1e009ad",
"lastUpdated": "2023-05-18T00:36:58.000Z"
},
{
"name": "Image Generator",
"description": "Change the image file \\\"toBuild.png\\\" to the image and then change the size settings",
"file": "ImageBuilder.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/ImageBuilder.lua",
"libs": [
"BlockRGB"
],
"commands": [
"build",
"buildCoords"
],
"hash": "c04753b47e37b1f358c034f9bc95a8e3",
"lastUpdated": "2024-05-06T15:47:49.974Z"
},
{
"name": "Immersive First Person",
"description": "Look at yourself.. to see yourself..",
"file": "ImmersiveFirstPerson.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/ImmersiveFirstPerson.lua",
"libs": [
"cosmeticTools",
"Utils"
],
"commands": [],
"hash": "26233c57e767c5e236cd34c7e05e7697",
"lastUpdated": "2024-03-16T20:44:56.685Z"
},
{
"name": "In Game Skin editor",
"description": "In Game! Changes your a png file for a skin when you tell it to",
"file": "In-GameSkinEditor.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/In-GameSkinEditor.lua",
"libs": [
"BlockRGB"
],
"commands": [
"loadSkin",
"saveSkin"
],
"hash": "5f460477bdbe34c3e10c2b0ba7187221",
"lastUpdated": "2024-03-06T14:41:48.342Z"
},
{
"name": "Input Example",
"description": "Keyboard, Mouse input example module script",
"file": "inputexample.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/inputexample.lua",
"libs": [],
"commands": [],
"hash": "36bafc918e44b376b669bcda1831cea9",
"lastUpdated": "2022-03-17T08:29:13.000Z"
},
{
"name": "Intel Arc Sky Fixer",
"description": "Fixes the sky being black every now and then on Intel Arc GPUs.",
"file": "ArcSkyFixer.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/ArcSkyFixer.lua",
"libs": [],
"commands": [],
"hash": "918712c6849904e87159d32bf3e6f44d",
"lastUpdated": "2024-07-11T00:56:42.030Z"
},
{
"name": "Inventory Display",
"description": "Renders a custom inventory module!",
"file": "invenRender.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/invenRender.lua",
"libs": [],
"commands": [],
"hash": "550f27b116419c9c1deb298346e17cfc",
"lastUpdated": "2024-03-16T21:15:57.429Z"
},
{
"name": "Inventory Display Lite",
"description": "Renders a custom inventory module!",
"file": "invenRenderLite.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/invenRenderLite.lua",
"libs": [],
"commands": [],
"hash": "3cb9922e65a9fa514115e0751819722a",
"lastUpdated": "2024-03-16T21:20:56.355Z"
},
{
"name": "Inventory Item Counter",
"description": "something to keep track of the amount of items in your inventory",
"file": "inventoryItemCounter.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/inventoryItemCounter.lua",
"libs": [],
"commands": [],
"hash": "d5706d78095dc4097acc0ba308f65d94",
"lastUpdated": "2024-02-24T20:59:37.815Z"
},
{
"name": "Inventory Tweaks",
"description": "Multiple tweaks for using your inventory, including shulker display",
"file": "inventory-tweaks.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/inventory-tweaks.lua",
"libs": [
"key-codes"
],
"commands": [],
"hash": "a235a298899c782e78f40f9cdde0d821",
"lastUpdated": "2024-02-18T14:30:06.524Z"
},
{
"name": "Inventory Viewer",
"description": "check the item in your inventory.",
"file": "inventoryviewer.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/inventoryviewer.lua",
"libs": [],
"commands": [],
"hash": "46f4654b80558ebf84bd3acbf466c8c4",
"lastUpdated": "2024-06-28T11:52:53.725Z"
},
{
"name": "Java View Bobbing",
"description": "Makes the view bobbing like in Java Edition.",
"file": "JavaViewBobbing.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/JavaViewBobbing.lua",
"libs": [],
"commands": [],
"hash": "95824b70e4c3de3253f76ca712f472cb",
"lastUpdated": "2024-02-06T23:42:33.308Z"
},
{
"name": "Keyboard Displayer",
"description": "Show what Keyboard keys you have pressed",
"file": "KeyboardDisplayer.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/KeyboardDisplayer.lua",
"libs": [],
"commands": [],
"hash": "9d82b39492259c4318055552e98213a9",
"lastUpdated": "2023-01-12T23:57:33.000Z"
},
{
"name": "Kill Aura",
"description": "Automatically kills mobs around you.",
"file": "KillAura.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/KillAura.lua",
"libs": [],
"commands": [],
"hash": "6e8ebe2d9939a2450acc1d51a21edf76",
"lastUpdated": "2023-05-10T13:26:36.000Z"
},
{
"name": "Left Hand",
"description": "Moves the left hand to the left side of the screen.",
"file": "LeftHand.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/LeftHand.lua",
"libs": [],
"commands": [],
"hash": "9a2a32d431f7b527719bfeb2b384c592",
"lastUpdated": "2024-02-18T15:10:34.497Z"
},
{
"name": "Live stream testing",
"description": "A very unstable prototype of one of those things that tells you your chat when livestreeaming. when you find a bug tell it to me in #development in the discord",
"file": "liveChat.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/liveChat.lua",
"libs": [],
"commands": [],
"hash": "6a94f88986998baff3f4625f59366efb",
"lastUpdated": "2024-09-18T00:31:12.401Z"
},
{
"name": "Logger",
"description": "Logs things better",
"file": "loggerUI.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/loggerUI.lua",
"libs": [],
"commands": [],
"hash": "6bf805a0f9e35eb35456eb98cda49a49",
"lastUpdated": "2024-01-09T17:07:08.470Z"
},
{
"name": "Map Labeler",
"description": "Labels a map that you have in your offhand with its name",
"file": "mapLabeler.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/mapLabeler.lua",
"libs": [],
"commands": [],
"hash": "30e38295df60447d3bb4966aa9be51be",
"lastUpdated": "2024-03-17T01:16:41.218Z"
},
{
"name": "Measurer",
"description": "Measures distances in the world.",
"file": "measurer.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/measurer.lua",
"libs": [
"vectors"
],
"commands": [],
"hash": "7a3e83cf353beab3c8b96b977f26d5c4",
"lastUpdated": "2024-08-12T18:33:56.085Z"
},
{
"name": "Mention Ping",
"description": "Plays a sound when you are mentioned in chat.",
"file": "MentionPing.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/MentionPing.lua",
"libs": [],
"commands": [],
"hash": "37fbbed0228034295dd1bad27fe30626",
"lastUpdated": "2023-10-30T15:44:40.087Z"
},
{
"name": "Minecraft RPC",
"description": "Rich Presence. Intelligently.\\nClosing the launcher when using this is recommended.",
"file": "MinecraftRPC.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/MinecraftRPC.lua",
"libs": [],
"commands": [],
"hash": "748678eb1fff762222433d30146bae8d",
"lastUpdated": "2024-04-07T00:56:36.277Z"
},
{
"name": "Minimap",
"description": "shows a map of blocks around you",
"file": "minimap.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/minimap.lua",
"libs": [],
"commands": [],
"hash": "88e87473ef58ff90ff7de24a3229bd9c",
"lastUpdated": "2021-08-21T10:29:45.000Z"
},
{
"name": "Minimap v2",
"description": "A map of blocks around you. Slow but has a lot of features.",
"file": "minimap2.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/minimap2.lua",
"libs": [],
"commands": [],
"hash": "1f9937607ae5c616242fda180138a7cf",
"lastUpdated": "2024-03-15T23:58:08.481Z"
},
{
"name": "Minimap v3",
"description": "Much quicker than Minimap v2, but not as pretty-looking.",
"file": "minimap3.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/minimap3.lua",
"libs": [],
"commands": [],
"hash": "25e8ee713bf08db426727700e18b0ae9",
"lastUpdated": "2024-03-15T23:58:43.046Z"
},
{
"name": "Mining mod",
"description": "Usefull infos and stats for mining",
"file": "miningmod.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/miningmod.lua",
"libs": [],
"commands": [],
"hash": "109b672ce44ccfc6f31b5c34f4494195",
"lastUpdated": "2024-03-17T01:28:29.443Z"
},
{
"name": "Modern Commands Examples",
"description": "A mod containing example commands for the new command system",
"file": "ModernCommandsExamples.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/ModernCommandsExamples.lua",
"libs": [],
"commands": [
"exampleseparated",
"exampleseparated2",
"exampleseparated3"
],
"hash": "e6da52b3fb6ce5bd19c536b89b9f9121",
"lastUpdated": "2024-12-02T04:04:00.792Z"
},
{
"name": "Movable Action Bar",
"description": "Allows you to move the action bar around.",
"file": "MovableActionBar.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/MovableActionBar.lua",
"libs": [],
"commands": [],
"hash": "34deca14683669183188a0dfa9b7275d",
"lastUpdated": "2023-06-17T21:04:07.000Z"
},
{
"name": "MusicBee Overlay",
"description": "Displays current song, artist, album name, and album cover. \\nMusicBee only.",
"file": "musicbeeoverlay.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/musicbeeoverlay.lua",
"libs": [],
"commands": [],
"hash": "b9f261981b7b35ac2c510f991279f866",
"lastUpdated": "2022-02-22T18:12:09.000Z"
},
{
"name": "nethercoordinatetranslator",
"description": "convert overworld coords to nether coords and vice versa",
"file": "nethercoordinatetranslator.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/nethercoordinatetranslator.lua",
"libs": [],
"commands": [],
"hash": "b46687ec663a334df414896313d215c6",
"lastUpdated": "2024-03-17T15:28:55.215Z"
},
{
"name": "NGTools",
"description": "Improvements for the Nethergames server. By Lioncat6 • Version 1.0.5",
"file": "NGTools.lua",
"url": "https://raw.githubusercontent.com/OnixClient-Scripts/OnixClient_Scripts/master/Modules/NGTools.lua",
"libs": [
"DependentBoolean"
],
"commands": [
"serverid",
"uname",
"mute",
"online",
"kdr",
"stats",
"gstats",
"punishments",
"info",
"bio",
"update",