-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
2833 lines (2745 loc) · 114 KB
/
Copy pathscript.js
File metadata and controls
2833 lines (2745 loc) · 114 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
const routes = {
java: {
label: "Java setup route",
readout: "Java",
link: "https://www.curseforge.com/minecraft/mc-mods/verity-je/files/8555265",
versions: ["1.21.1 NeoForge", "1.20.1 Forge", "I am not sure"],
issues: ["download", "not working", "voice not working", "AI setup", "is it real"],
summaries: {
download: {
title: "Use the Java project page and confirm your loader",
summary:
"For Java, the safest Verity Mod download path starts with the maintainer page. Match Minecraft version and loader before launching.",
steps: [
"Open the Java route and verify the file is listed for your Minecraft version.",
"Install the matching Forge or NeoForge loader before adding the mod file.",
"Launch once with only required dependencies if the game crashes.",
"Add AI or voice settings after the base mod loads successfully."
]
},
"not working": {
title: "Check loader, version, and AI setup in that order",
summary:
"Most Java failures come from a version mismatch, an unsupported loader, or incomplete AI configuration.",
steps: [
"Confirm that the selected Verity Mod file matches your Minecraft version.",
"Confirm Forge versus NeoForge instead of mixing loaders.",
"Disable unrelated mods and test a clean profile.",
"If the character stays silent, finish Groq or Ollama configuration outside this site."
]
},
"voice not working": {
title: "Verify the voice stack before changing the mod",
summary:
"Voice issues are usually dependency, permission, or server configuration problems rather than a download problem.",
steps: [
"Confirm your build actually supports voice features.",
"Check microphone permission in your operating system and launcher.",
"Test voice chat in a clean world or server profile.",
"Keep the Verity Mod file and any voice dependency on the same Minecraft version."
]
},
"AI setup": {
title: "Configure Groq or Ollama only on the provider side",
summary:
"This checker never asks for keys. Use your provider settings, then return to Minecraft and test a simple prompt.",
steps: [
"Choose Groq or Ollama according to the Java project instructions.",
"Create or configure the provider outside this website.",
"Restart Minecraft after changing provider settings.",
"If responses are slow, test a smaller model or a clean local profile."
]
},
"is it real": {
title: "Trust maintainer pages over reposted files",
summary:
"A real Verity Mod route should point to known project pages and preserve the package identity.",
steps: [
"Avoid pages that force a downloader, APK, or unrelated extension.",
"Check that the page names the edition and Minecraft version clearly.",
"Prefer CurseForge or another maintainer-controlled page.",
"Do not enter a Groq API key into random download pages."
]
}
}
},
bedrock: {
label: "Bedrock addon route",
readout: "Bedrock",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-be/files/8583159",
versions: ["Bedrock 26.40", "Bedrock 26.20", "I am not sure"],
issues: ["download", "not working", "only saying ...", "box not spawning", "voice not working", "is it real"],
summaries: {
download: {
title: "Use the Verity BE addon page, not the Java mod file",
summary:
"Bedrock players need addon files and world settings. A Java .jar file will not work in Bedrock.",
steps: [
"Open the Verity BE route and choose the addon version that matches your game.",
"Import the addon into Minecraft Bedrock.",
"Activate both resource and behavior packs in the world settings.",
"Restart the world after the packs are enabled."
]
},
"not working": {
title: "Check packs, cheats, and experimental settings",
summary:
"Bedrock setup usually fails when behavior packs are inactive or required world options are disabled.",
steps: [
"Open world settings and confirm behavior pack plus resource pack are active.",
"Enable cheats if the addon instructions require commands.",
"Turn on Beta APIs or experimental options when the version calls for it.",
"Create a fresh test world to separate addon problems from old-world settings."
]
},
"only saying ...": {
title: "Reconnect the Verity BE debugger backend",
summary:
"For Verity BE, dots usually mean Beta APIs or the project backend connection is missing rather than a bad download.",
steps: [
"Confirm that you installed Verity BE by Undertaletalelover, Project ID 1574632.",
"Enable Beta APIs and cheats in a clean Bedrock 26.40 world.",
"Check the current project page, then run the listed connect command; on July 18 it is /script debugger connect traye.ddns.net.",
"If the command still fails, check the maintainer Discord or project comments for backend status before reinstalling."
]
},
"box not spawning": {
title: "Confirm the command and world permissions",
summary:
"If the box or entity does not appear, the world often lacks the required behavior pack or command permission.",
steps: [
"Recheck that the behavior pack is active under the current world.",
"Enable cheats and command permissions.",
"Use the exact command from the maintainer page for your addon version.",
"Restart Minecraft after changing experimental settings."
]
},
"voice not working": {
title: "Confirm the current Verity BE package before changing files",
summary:
"The current Verity BE 2.0.0 package uses the Bedrock addon route; voice behavior still differs from Java mod behavior.",
steps: [
"Confirm that you installed Verity BE 2.0.0, CurseForge record 8583159.",
"Run /verity:tts on, then trigger a new dialogue response.",
"Check Minecraft and device audio, then test without resource packs that alter sound behavior.",
"Use the Verity BE maintainer page instead of Java troubleshooting."
]
},
"is it real": {
title: "Check edition naming before downloading",
summary:
"Real Bedrock pages should clearly say Bedrock, addon, MCPE, or behavior pack. Avoid disguised Java downloads.",
steps: [
"Use maintainer pages that identify the Bedrock edition.",
"Avoid archives that ask you to install unrelated launchers.",
"Compare version numbers against your Minecraft Bedrock build.",
"Do not install files from short-link chains with hidden final URLs."
]
}
}
},
pe: {
label: "MCPE addon route",
readout: "MCPE",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-be/files/8583159",
versions: ["MCPE current", "MCPE older build", "I am not sure"],
issues: ["download", "not working", "box not spawning", "is it real"],
summaries: {
download: {
title: "Use the MCPE-compatible Bedrock route",
summary:
"MCPE players should start from a Bedrock addon page and avoid desktop Java files.",
steps: [
"Open the MCPE route and verify it is listed for Bedrock or Pocket Edition.",
"Import the addon through Minecraft on the device.",
"Activate resource and behavior packs.",
"Create a new world if an older save keeps failing."
]
},
"not working": {
title: "Rebuild the world settings from a clean test world",
summary:
"On mobile, world settings and pack activation are the most common blockers.",
steps: [
"Create a new test world.",
"Enable required experimental settings before opening the world.",
"Activate both addon packs.",
"Restart the app if the imported pack does not appear."
]
},
"box not spawning": {
title: "Check commands and addon activation on mobile",
summary:
"The entity or box will not appear if commands are blocked or the behavior pack is missing.",
steps: [
"Enable cheats for the test world.",
"Confirm behavior pack activation after importing.",
"Use the command exactly as written by the maintainer.",
"Update Minecraft if your MCPE build is older than the addon target."
]
},
"is it real": {
title: "Avoid mobile download pages that hide the source",
summary:
"MCPE searches often lead to reposts. Prefer pages that name the addon, edition, and original project source.",
steps: [
"Check whether the page says Bedrock, MCPE, or addon.",
"Avoid APK installers or unrelated store prompts.",
"Prefer known mod hosting pages.",
"Delete suspicious files that do not import into Minecraft."
]
}
}
}
};
const fallbackIssue = {
title: "Start with edition and version matching",
summary: "Choose the nearest issue type and follow the checklist from top to bottom.",
steps: ["Confirm edition.", "Confirm version.", "Use a maintainer page.", "Test in a clean world or profile."]
};
const versionSelect = document.querySelector("#versionSelect");
const issueSelect = document.querySelector("#issueSelect");
const resultLabel = document.querySelector("#resultLabel");
const resultTitle = document.querySelector("#resultTitle");
const resultSummary = document.querySelector("#resultSummary");
const stepsList = document.querySelector("#stepsList");
const primaryLink = document.querySelector("#primaryLink");
const copyButton = document.querySelector("#copyButton");
const readoutEdition = document.querySelector("#readoutEdition");
const voiceToggle = document.querySelector("#voiceToggle");
const aiToggle = document.querySelector("#aiToggle");
let currentEdition = "java";
function setOptions(select, items) {
select.replaceChildren(
...items.map((item) => {
const option = document.createElement("option");
option.value = item;
option.textContent = item;
return option;
})
);
}
function getActiveSummary(route, issue) {
return route.summaries[issue] || fallbackIssue;
}
function render() {
const route = routes[currentEdition];
const issue = issueSelect.value || route.issues[0];
const summary = getActiveSummary(route, issue);
const steps = [...summary.steps];
if (voiceToggle.checked && !steps.some((step) => step.toLowerCase().includes("voice"))) {
steps.push("Because voice is enabled in your setup, verify microphone permission and any voice dependency separately.");
}
if (aiToggle.checked && currentEdition === "java" && !steps.some((step) => step.includes("Groq") || step.includes("Ollama"))) {
steps.push("For Java AI behavior, configure Groq or Ollama outside this checker before testing again.");
}
resultLabel.textContent = route.label;
resultTitle.textContent = summary.title;
resultSummary.textContent = summary.summary;
primaryLink.href = route.link;
readoutEdition.textContent = route.readout;
stepsList.replaceChildren(
...steps.map((step) => {
const li = document.createElement("li");
li.textContent = step;
return li;
})
);
}
function setEdition(edition) {
if (!versionSelect || !issueSelect || !resultLabel || !resultTitle || !resultSummary || !primaryLink || !stepsList) return;
currentEdition = edition;
const route = routes[edition];
setOptions(versionSelect, route.versions);
setOptions(issueSelect, route.issues);
document.querySelectorAll(".segment").forEach((button) => {
const active = button.dataset.edition === edition;
button.classList.toggle("active", active);
button.setAttribute("aria-pressed", String(active));
});
render();
}
if (versionSelect && issueSelect && voiceToggle && aiToggle && copyButton) {
document.querySelectorAll(".segment").forEach((button) => {
button.addEventListener("click", () => {
setEdition(button.dataset.edition);
trackEvent("verity_route_edition", { edition: button.dataset.edition });
});
});
[versionSelect, issueSelect, voiceToggle, aiToggle].forEach((control) => {
control.addEventListener("change", () => {
render();
trackEvent("verity_route_change", { control: control.id, edition: currentEdition });
});
});
copyButton.addEventListener("click", async () => {
const steps = Array.from(stepsList.querySelectorAll("li")).map((li, index) => `${index + 1}. ${li.textContent}`);
const text = `${resultTitle.textContent}\n${resultSummary.textContent}\n\n${steps.join("\n")}\n\n${primaryLink.href}`;
try {
await navigator.clipboard.writeText(text);
copyButton.textContent = "Copied";
setTimeout(() => {
copyButton.textContent = "Copy checklist";
}, 1600);
} catch {
copyButton.textContent = "Copy failed";
setTimeout(() => {
copyButton.textContent = "Copy checklist";
}, 1600);
}
});
setEdition(currentEdition);
}
const knownProjects = [
{
name: "Verity JE",
edition: "Java",
sources: [
{
platform: "CurseForge",
id: "1591438",
slugs: ["/minecraft/mc-mods/verity-je"],
link: "https://www.curseforge.com/minecraft/mc-mods/verity-je/files"
},
{
platform: "Modrinth",
id: "on1Y0osD",
slugs: ["/mod/verity-je-official"],
link: "https://modrinth.com/mod/verity-je-official/versions"
}
],
releases: [
{
status: "current-modrinth-beta",
filename: "verity-6.2 Beta 1.jar",
aliases: [
"verity 6.2",
"verity 6.2 beta",
"verity 6.2 beta 1",
"verity 6.2 beta 1 jar",
"verity je 6.2",
"verity je 6.2 beta 1",
"verity mod 6.2",
"verity mod latest beta",
"modrinth verity 6.2",
"ZKeRiZUm"
],
versionNumber: "6.2 Beta 1",
sizeMb: 259.72,
version: "Minecraft 1.20.1 · Forge",
published: "August 8, 2026",
availability:
"Latest Modrinth API-visible beta at the August 9, 2026 source check. CurseForge still shows verity-6.1.jar as its visible main Forge 1.20.1 file.",
records: [
{
platform: "Modrinth",
id: "ZKeRiZUm",
link: "https://modrinth.com/mod/verity-je-official/version/ZKeRiZUm",
hashes: {
sha1: "1ac91189e651f4b13d7aa30ae51cf4a972a055fd",
sha512: "69f9084271613dd1be1f6a761aef20e0a2a7e89de14fd606cd0e7c1112d6eaa7099b57458e2bd3bc7d7a18c4c005ab3769e54aeed8164fbc8f3aec66b106cf83"
}
}
]
},
{
status: "current-curseforge-main",
filename: "verity-6.1.jar",
aliases: [
"verity 6.1",
"verity 6.1 jar",
"verity je 6.1",
"verity je version 6.1",
"verity mod 6.1",
"verity mod version 6.1",
"modrinth verity 6.1"
],
versionNumber: "6.1",
sizeMb: 243.09,
version: "Minecraft 1.20.1 · Forge",
published: "August 1, 2026",
records: [
{
platform: "Modrinth",
id: "6jRN8Exp",
link: "https://modrinth.com/mod/verity-je-official/version/6jRN8Exp",
hashes: {
sha1: "72f974905772b020c51e9605d35777be1a542e62",
sha512: "4e721c8709c30230ee9b9a59eca2f70410c841244baa6ec473170cb0528562e369d277f78c20a155dcd863dabaa93897290e2cf0402804107bca93a98aa1b189"
}
},
{
platform: "CurseForge",
id: "8555265",
link: "https://www.curseforge.com/minecraft/mc-mods/verity-je/files/8555265"
}
]
},
{
status: "previous-visible",
filename: "verity-6.jar",
aliases: [
"verity 6",
"verity 6 jar",
"verity je 6",
"verity je version 6",
"verity mod 6",
"verity mod version 6",
"modrinth verity 6"
],
versionNumber: "6",
sizeMb: 243.09,
version: "Minecraft 1.20.1 · Forge",
published: "July 29, 2026",
availability: "Still visible in the Modrinth versions list on August 9, 2026, but Verity JE 6.2 Beta 1 is the newer API-visible Modrinth beta.",
records: [
{
platform: "Modrinth",
id: "CXsEzVwJ",
link: "https://modrinth.com/mod/verity-je-official/version/CXsEzVwJ",
hashes: {
sha1: "609c799d7350a657cf2193839224bd6c2f9971b2",
sha512: "25771d7476639e5669bea28d0beb503813ca304cfd6ddb080be3eb4186fbea34024f3a0e93bcaeb4cef4ecfb925420956a5b0e92f4a957c7ff7b3a4a22127b6e"
}
}
]
},
{
status: "unlisted-beta-observed",
filename: "verity-6.0.1-all.jar",
versionNumber: "6.0.1-beta",
sizeMb: 243.15,
version: "Minecraft 1.20.1 · Forge",
published: "July 28, 2026",
availability: "Modrinth version endpoint returned HTTP 404 and the project versions list no longer included YLEoXe6t on July 29, 2026.",
records: [
{
platform: "Modrinth",
id: "YLEoXe6t",
link: "https://modrinth.com/mod/verity-je-official/version/6.0.1-beta",
hashes: {
sha1: "288e57b5ed8ccb829da95377f38250059bbf28e8",
sha512: "453d369063e2260c2e3af66182cfe4943fc48e6afdc0203759e04e938b938ce15de47b3693dfa6e2d1224a5a4d93ad73a872c3e7fc9688a2b3adde74bc677c59"
}
}
]
},
{
status: "unlisted-previous-beta-observed",
filename: "verity-6.0.0.jar",
versionNumber: "6.0.0-beta",
sizeMb: 235.11,
version: "Minecraft 1.20.1 · Forge",
published: "July 27, 2026",
availability: "Modrinth version endpoint returned HTTP 404 and the project versions list no longer included 5ech0sTo on July 29, 2026.",
records: [
{
platform: "Modrinth",
id: "5ech0sTo",
link: "https://modrinth.com/mod/verity-je-official/version/6.0.0-beta",
hashes: {
sha1: "87f39573ea29e796ad856d96fd056b8dfe0043d9",
sha512: "c8b282be27ab4a0f19da6e834c4ee70602cef98bb5a81fe848932c1ca0edd98c41904602fe02b357d0a65265fba352860df6e06da669de6404143a224ce40afb"
}
}
]
},
{
status: "stable-current",
filename: "verity-5.7.3.jar",
aliases: [
"verity 5.7.3",
"verity 5.7.3 jar",
"verity.jar",
"verity jar",
"verity java download",
"verity download java",
"verity mod java download free",
"verity mod minecraft java download",
"mod verity 1.20.1",
"verity mod 1.20.1",
"verity mod 1.20 1",
"verity mod for java edition",
"verity je mod download",
"forge verity",
"verity forge"
],
versionNumber: "5.7.3",
sizeMb: 235.06,
version: "Minecraft 1.20.1 · Forge",
published: "July 18, 2026",
records: [
{
platform: "CurseForge",
id: "8461257",
link: "https://www.curseforge.com/minecraft/mc-mods/verity-je/files/8461257"
},
{
platform: "Modrinth",
id: "yAt0wv1Z",
link: "https://modrinth.com/mod/verity-je-official/version/5.7.3",
hashes: {
sha1: "da28115bbad0478d9ed9c97f2466b67d46d13d51",
sha512: "15cd8d895788f4859ecf442b7a970c8bca3b30db99aa170639b5f003a18b0f0255bdf5b042eb95a686ac51ecec80afbfeb766654c3471f5cc890664982cd9c81"
}
}
]
},
{
status: "deprecated-buggy",
filename: "verity-3.4.1.jar",
versionNumber: "3.4.1",
sizeMb: 156.0,
version: "Minecraft 1.21.1 · NeoForge",
published: "June 30, 2026",
records: [
{
platform: "CurseForge",
id: "8346795",
link: "https://www.curseforge.com/minecraft/mc-mods/verity-je/files/8346795"
}
]
}
]
},
{
name: "Smiley's Better Voice",
edition: "Java add-on",
route: "/smileys-better-voice/",
sources: [
{
platform: "CurseForge",
id: "1608717",
slugs: ["/minecraft/mc-mods/smileys-better-voice"],
link: "https://www.curseforge.com/minecraft/mc-mods/smileys-better-voice"
}
],
releases: [
{
status: "current-verity-je-voice-addon-route",
filename: "Smiley's Better Voice-4.0.0.jar",
aliases: [
"Smiley's Better Voice",
"smileys better voice",
"smiley better voice",
"better voice verity",
"verity better voice",
"verity voice mimic",
"verity mod voice mimic",
"Fish Audio",
"Cartesia",
"verity fish audio",
"verity cartesia",
"verity tts addon"
],
versionNumber: "4.0.0",
sizeMb: 1.4,
version: "Minecraft 1.20.1 · Forge add-on",
published: "July 29, 2026",
records: [
{
platform: "CurseForge",
id: "8536538",
link: "https://www.curseforge.com/minecraft/mc-mods/smileys-better-voice/files/8536538"
}
]
}
]
},
{
name: "Verity BE",
edition: "Bedrock",
sources: [
{
platform: "CurseForge",
id: "1574632",
slugs: ["/minecraft-bedrock/addons/verity-be"],
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-be/files"
}
],
releases: [
{
status: "current",
filename: "Verity (Stable) (2.0.1)-(26.40).mcaddon",
aliases: [
"Verity (Stable) (2.0.1)-(26.40).mcaddon",
"verity be",
"verity be official",
"verity be download",
"verity be 2.0.1",
"verity be 2.0.0",
"verity be 8583159",
"verity stable 2.0.1",
"verity stable 2.0.0",
"verity stable 8583159",
"verity hot fix",
"verity be hot fix",
"verity v2",
"vertiy be"
],
versionNumber: "2.0.1",
sizeMb: 23.7,
version: "Bedrock 26.40",
published: "August 5, 2026",
records: [
{
platform: "CurseForge",
id: "8583159",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-be/files/8583159"
}
]
},
{
status: "previous-visible",
filename: "Verity (Stable) (2.0.1)-(26.40).mcaddon",
aliases: [
"Verity (Stable) (2.0.1)-(26.40).mcaddon old file",
"verity be 8543534",
"verity stable 8543534",
"previous verity be 2.0.0",
"july 31 earlier verity be",
"old verity be 2.0.0"
],
versionNumber: "2.0.0",
sizeMb: 23.7,
version: "Bedrock 26.40",
published: "July 30, 2026",
records: [
{
platform: "CurseForge",
id: "8543534",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-be/files/8543534"
}
]
},
{
status: "previous-visible",
filename: "Verity (Stable) (1.1.0)-(26.3).mcaddon",
aliases: [
"Verity (Stable) (1.1.0)-(26.3#).mcaddon",
"verity be 1.1.0",
"verity be 8506198",
"old verity be",
"previous verity be"
],
versionNumber: "1.1.0",
sizeMb: 21.3,
version: "Bedrock 26.30",
published: "July 25, 2026",
records: [
{
platform: "CurseForge",
id: "8506198",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-be/files/8506198"
}
]
}
]
},
{
name: "Verity - Bedrock Edition",
edition: "Bedrock",
sources: [
{
platform: "CurseForge",
id: "1575941",
slugs: ["/minecraft-bedrock/addons/verity-bedrock-edition"],
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-bedrock-edition/files"
}
],
releases: [
{
status: "current",
filename: "ThatMob's Verity 3.2.0 by PnTMC [Add-on] - V26.40.mcaddon",
versionNumber: "3.2.0",
sizeMb: 39.6,
version: "Bedrock 26.40",
published: "August 7, 2026",
records: [
{
platform: "CurseForge",
id: "8593642",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-bedrock-edition/files/8593642"
}
]
},
{
status: "current",
filename: "ThatMob's Verity 3.2.0 by PnTMC [Add-on] - V26.20.mcaddon",
versionNumber: "3.2.0",
sizeMb: 39.6,
version: "Bedrock 26.20",
published: "July 27, 2026",
records: [
{
platform: "CurseForge",
id: "8517478",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-bedrock-edition/files/8517478"
}
]
},
{
status: "current",
filename: "ThatMob's Verity 3.2.0 by PnTMC [Add-on] - V26.10.mcaddon",
versionNumber: "3.2.0",
sizeMb: 39.6,
version: "Bedrock 26.10 / 26.13+ row",
published: "July 27, 2026",
records: [
{
platform: "CurseForge",
id: "8517473",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-bedrock-edition/files/8517473"
}
]
},
{
status: "previous-still-available",
filename: "ThatMob's Verity 3.1.0 by PnTMC [Add-on] - V26.30.mcaddon",
aliases: [
"ThatMob's Verity 3.1.0 by PnTMC [Add-on] - V26.20.mcaddon",
"ThatMob's Verity 3.1.0 by PnTMC [Add-on] - V26.10.mcaddon"
],
versionNumber: "3.1.0",
sizeMb: 39.7,
version: "Bedrock 26.30",
published: "July 25, 2026",
records: [
{
platform: "CurseForge",
id: "8503821",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-bedrock-edition/files/8503821"
}
]
},
{
status: "previous-still-available",
filename: "ThatMob's Verity 2.1.0 by PnTMC [Add-on] - V26.30.mcaddon",
versionNumber: "2.1.0",
sizeMb: 35.4,
version: "Bedrock 26.30",
published: "June 27, 2026",
records: [
{
platform: "CurseForge",
id: "8327253",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-bedrock-edition/files/8327253"
}
]
},
{
status: "previous-still-available",
filename: "ThatMob's Verity 2.1.0 by PnTMC [Add-on] - V26.20.mcaddon",
versionNumber: "2.1.0",
sizeMb: 35.4,
version: "Bedrock 26.20",
published: "June 27, 2026",
records: [
{
platform: "CurseForge",
id: "8327250",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-bedrock-edition/files/8327250"
}
]
},
{
status: "previous-still-available",
filename: "ThatMob's Verity 2.1.0 by PnTMC [Add-on] - V26.10.mcaddon",
versionNumber: "2.1.0",
sizeMb: 35.4,
version: "Bedrock 26.13+ / 26.10 row",
published: "June 27, 2026",
records: [
{
platform: "CurseForge",
id: "8327242",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-bedrock-edition/files/8327242"
}
]
}
]
},
{
name: "Verity Pocket Edition (Be)",
edition: "Bedrock",
sources: [
{
platform: "CurseForge",
id: "1596246",
slugs: ["/minecraft-bedrock/addons/verity-pocket-edition-be"],
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-pocket-edition-be/files"
}
],
releases: [
{
status: "similar-named-current",
filename: "Verity (1.0.2) — (26.3).mcaddon",
aliases: ["Verity (1.0.2) — (26.3#).mcaddon", "Verity (1.0.2) - (26.3).mcaddon", "Verity (1.0.2) - (26.3#).mcaddon"],
versionNumber: "1.0.2",
sizeMb: 18.6,
version: "Bedrock 26.40",
published: "July 10, 2026",
records: [
{
platform: "CurseForge",
id: "8406293",
link: "https://www.curseforge.com/minecraft-bedrock/addons/verity-pocket-edition-be/files/8406293"
}
]
}
]
},
{
name: "VERITY.exe",
edition: "Java modpack",
route: "/verity-exe/",
sources: [
{
platform: "CurseForge",
id: "1585389",
slugs: ["/minecraft/modpacks/verity-exe"],
link: "https://www.curseforge.com/minecraft/modpacks/verity-exe"
}
],
releases: [
{
status: "current-modpack-route",
filename: "VERITY.exe.zip",
aliases: ["VERITY.exe", "verity-exe", "verity exe", "Forge Port 2.1.3", "Forge Port 2.1.2"],
versionNumber: "Forge Port 2.1.3",
sizeMb: 40.3,
version: "Minecraft 1.20.1 · Forge modpack",
published: "July 30, 2026",
records: [
{
platform: "CurseForge",
id: "8539885",
link: "https://www.curseforge.com/minecraft/modpacks/verity-exe/files/8539885"
}
]
},
{
status: "previous-forge-modpack-route",
filename: "VERITY.exe.zip",
aliases: ["Forge Port 2.1.2", "VERITY.exe 2.1.2"],
versionNumber: "Forge Port 2.1.2",
sizeMb: 40.3,
version: "Minecraft 1.20.1 · Forge modpack",
published: "July 28, 2026",
records: [
{
platform: "CurseForge",
id: "8526843",
link: "https://www.curseforge.com/minecraft/modpacks/verity-exe/files/8526843"
}
]
},
{
status: "older-visible-neoforge-file",
filename: "verity rework.zip",
aliases: ["NeoForge 1.3.3", "verity rework"],
versionNumber: "NeoForge 1.3.3",
sizeMb: 0.51,
version: "Minecraft 1.21.1 · NeoForge modpack",
published: "July 7, 2026",
records: [
{
platform: "CurseForge",
id: "8385443",
link: "https://www.curseforge.com/minecraft/modpacks/verity-exe/files/8385443"
}
]
}
]
},
{
name: "VERITY.exe Remastered",
edition: "Java modpack",
route: "/verity-exe/",
sources: [
{
platform: "Modrinth",
id: "L5qUPsXS",
slugs: ["/modpack/verity.exe-remastered", "/project/L5qUPsXS"],
link: "https://modrinth.com/modpack/verity.exe-remastered"
}
],
releases: [
{
status: "separate-modrinth-remastered-modpack-route",
filename: "VERITY.exe Remastered 1.0.0.mrpack",
aliases: ["VERITY.exe Remastered", "verity exe remastered", "verity.exe remastered", "remastered verity.exe"],
versionNumber: "1.0.0",
sizeMb: 0.01,
version: "Minecraft 1.20.1 · Forge MRPACK",
published: "July 1, 2026",
records: [
{
platform: "Modrinth",
id: "4N4vQrK7",
link: "https://modrinth.com/modpack/verity.exe-remastered/version/4N4vQrK7"
}
]
}
]
},
{
name: "FALSITY [SMILEY]",
edition: "Java mod",
route: "/falsity-mod/",
sources: [
{
platform: "CurseForge",
id: "1575216",
slugs: ["/minecraft/mc-mods/falsity-mod"],
link: "https://www.curseforge.com/minecraft/mc-mods/falsity-mod"
},
{
platform: "Modrinth",
id: "r8Qz0Ic2",
slugs: ["/mod/falsity", "/project/r8Qz0Ic2"],
link: "https://modrinth.com/mod/falsity"
}
],
releases: [
{
status: "current-falsity-route",
filename: "FALSITY-SMILEYARCHIVE-9.0.jar",
aliases: ["FALSITY [SMILEY]", "Falsity Mod", "falsity", "smiley archive", "/connectfalsity", "/falsitysetup", "/falsityconfig"],
versionNumber: "9.0",
sizeMb: 316.1,
version: "Minecraft 1.20.1 · Forge",
published: "July 28, 2026",
records: [
{
platform: "CurseForge",
id: "8528006",
link: "https://www.curseforge.com/minecraft/mc-mods/falsity-mod/files/8528006"
},
{
platform: "Modrinth",
id: "tNOLeN6v",
link: "https://modrinth.com/mod/falsity/version/9.0",
hashes: {
sha1: "24660ecba1c85f818550ce65ede4f78f29c44343",
sha512: "4889ad30c692b8f45a0b59ab3cf0b16f9a18217223cf88e01dc9003948ed8966f0b7f472064195e4a954f332ece139b8aaf4503130d763fc932e789f64fd1d7b"
}
}
]
}
]
},
{
name: "Falsity Mod (Bedrock remake)",
edition: "Bedrock add-on",
route: "/falsity-mod/",
sources: [
{
platform: "CurseForge",
id: "1594973",
slugs: ["/minecraft-bedrock/addons/falsity-mod"],
link: "https://www.curseforge.com/minecraft-bedrock/addons/falsity-mod"
}
],
releases: [
{
status: "current-bedrock-remake-route",
filename: "Falsity_2_0_0_Addon_updated.mcaddon",
aliases: ["Falsity Bedrock", "Falsity Mod Bedrock", "Falsity Remake", "Falsity MCPE", "MCMOBZ"],
versionNumber: "2.0.0 updated",
sizeMb: 23.1,
version: "Minecraft Bedrock 26.40 · MCADDON",
published: "July 17, 2026",
records: [
{
platform: "CurseForge",
id: "8449365",
link: "https://www.curseforge.com/minecraft-bedrock/addons/falsity-mod/files/8449365"
}
]
}
]
},
{
name: "Ultimate VERITY.",
edition: "Java modpack",
route: "/ultimate-verity/",
sources: [
{
platform: "CurseForge",
id: "1584643",
slugs: ["/minecraft/modpacks/ultimate-verity"],
link: "https://www.curseforge.com/minecraft/modpacks/ultimate-verity"
}
],
releases: [
{
status: "separate-ultimate-verity-modpack-route",
filename: "Ultimate VERITY.-1.20.zip",
aliases: ["Ultimate VERITY", "ultimate verity", "ultimate verity modpack"],
versionNumber: "Forge 1.20.1 profile",
sizeMb: 0.1,
version: "Minecraft 1.20.1 · Forge modpack",