-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetailed_mod_installation_instructions.yml
More file actions
1971 lines (1850 loc) · 100 KB
/
Copy pathdetailed_mod_installation_instructions.yml
File metadata and controls
1971 lines (1850 loc) · 100 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
# ============================================================================================ #
# === detailed_mod_installation_instructions.yml
#
# This .yml file contains the instructions for installation of BG2 mods. I am using this
# for the latest Baldur's Gate 2 EE.
#
# Quest mods should usually be installed before NPC mods. Fixes should be installed
# even earlier.
#
# Format specification for this file:
#
# latest_release_at should be the direct URL that can be downloaded, e. g. via wget.
#
# last_checked: date in dd.mm.yyyy format # This is the last time I checked the mod.
#
# last_updated: date in dd.mm.yyyy format # This refers to when the mod author last updated
# # this mod. It is usually not as recent as the
# # entry last_checked.
#
# ============================================================================================ #
# x = YAML.load_file("detailed_mod_installation_instructions.yml")
# ============================================================================================ #
# ============================================================================================ #
# Todos:
#
# - Play Siege of Dragonspear at a later time.
#
# ============================================================================================ #
# ============================================================================================ #
# === The_Item_Upgrade_Mod_v52_released_on_30.12.2023
#
# The Item Upgrade Mod Pack allows Cromwell and Cespenar to upgrade more items for you.
# ============================================================================================ #
# https://github.com/Pocket-Plane-Group/Item_Upgrade
# ============================================================================================ #
!ruby/symbol The_Item_Upgrade_Mod:
name_to_use: The_Item_Upgrade_Mod
real_name: Item_Upgrade
github: https://github.com/Pocket-Plane-Group/Item_Upgrade
latest_release_at: https://github.com/Pocket-Plane-Group/Item_Upgrade
last_updated: 15.03.2026
last_checked: 30.04.2026
latest_version: 57
use_git_checkout: true
# ============================================================================================ #
# === Gone Nuts
#
# Note that a druid is required for this quest to be solved.
# ============================================================================================ #
# https://github.com/Glittergear/GoneNuts
# ============================================================================================ #
!ruby/symbol GoneNuts_mod:
name_to_use: GoneNuts
real_name: GoneNuts
github: https://github.com/Glittergear/GoneNuts
latest_release_at: https://github.com/Glittergear/GoneNuts
last_updated: 15.12.2024
last_checked: 30.04.2026
latest_version: 2.1.3
use_git_checkout: true
# ============================================================================================ #
# === The search guild mod
# ============================================================================================ #
# https://github.com/Austin-BG/SearchGuild
# ============================================================================================ #
!ruby/symbol The_search_guild_mod:
name_to_use: The_search_guild_mod
real_name: SearchGuild
github: https://github.com/Austin-BG/SearchGuild
latest_release_at: https://github.com/Austin-BG/SearchGuild/releases/download/v.1.4.1/detective-guild-of-athkatla-1.4.1.zip; tarb *zip
last_update: 01.06.2026
last_checked: 18.07.2026
latest_version: 1.5.3
use_git_checkout: true
# ============================================================================================ #
# === ZS_Consumables
#
# This mod has been created by szaumoor.
# ============================================================================================ #
# https://github.com/szaumoor/ZS_Consumables
# ============================================================================================ #
!ruby/symbol consumables_mod:
name_to_use: ZS_consumables_mod
real_name: ZS_Consumables
github: https://github.com/szaumoor/ZS_Consumables
latest_release_at: https://github.com/szaumoor/ZS_Consumables/download/1.6.9/win-ZSTweaks-1.6.9.zip
last_update: 04.04.2026
last_checked: 10.05.2026
latest_version: 1.6.9 # Version 1.6.9 was released on the 04.04.2026.
use_git_checkout: true
# ============================================================================================ #
# === ZS_ItemPack
#
# Adds items into the world of BGEE and BG2EE.
# ============================================================================================ #
!ruby/symbol ZS_ItemPack_mod:
name_to_use: ZS_ItemPack_mod
real_name: ZS_ItemPack
github: https://github.com/szaumoor/ZS_ItemPack/
latest_release_at: https://github.com/szaumoor/ZS_ItemPack/?wpdmdl=91&refresh=69ea5dc1b24521776967105
last_checked: 25.04.2026
latest_version: 1.0.2
use_git_checkout: true
# ============================================================================================ #
# === Will-to-Power mod
# ============================================================================================ #
# https://github.com/Spellhold-Studios/Shadows-over-Soubar
# ============================================================================================ #
!ruby/symbol Will_to_Power_mod:
name_to_use: Will_to_Power_mod
real_name: Will_to_Power
github: https://github.com/UnearthedArcana/Will_to_Power
latest_release_at: https://github.com/UnearthedArcana/Will_to_Power
last_updated: 01.09.2025
last_checked: 17.07.2026
latest_version: 2.13
use_git_checkout: true
# ============================================================================================ #
# === Shadows over Soubar
# ============================================================================================ #
# https://github.com/Spellhold-Studios/Shadows-over-Soubar
# ============================================================================================ #
!ruby/symbol Shadows_over_Soubar:
name_to_use: Shadows_over_Soubar
real_name: Shadows-over-Soubar
github: https://github.com/Spellhold-Studios/Shadows-over-Soubar
latest_release_at: https://github.com/Spellhold-Studios/Shadows-over-Soubar
last_updated: 15.12.2024
last_checked: 30.04.2026
latest_version: 2.1.3
use_git_checkout: true
# ============================================================================================ #
# === The Slithering menace mod
#
# This mod adds a small "quest" containing "an encounter of serpentine nature" on the
# pocket plane dimension, as well as a brand new (and quite stylish) item.
# ============================================================================================ #
# https://github.com/Spellhold-Studios/Slithering-Menace/
# https://github.com/Spellhold-Studios/Slithering-Menace/releases/
# ============================================================================================ #
!ruby/symbol The_slithering_menace_mod:
name_to_use: The_slithering_menace_mod
real_name: Slithering-Menace
github: https://github.com/Spellhold-Studios/Slithering-Menace/
latest_release_at: https://github.com/Spellhold-Studios/Slithering-Menace//releases/download/v.1.4.1/detective-guild-of-athkatla-1.4.1.zip; tarb *zip
last_updated: 04.06.2026
last_checked: 25.04.2026
latest_version: v4.0.0.0
use_git_checkout: true
# ============================================================================================ #
# === The Worldmap Map
# ============================================================================================ #
!ruby/symbol The_Worldmap_Map_Mod:
name_to_use: The_Worldmap_Map_Mod
real_name: BP-BGT-Worldmap
github: https://github.com/Spellhold-Studios/BP-BGT-Worldmap
latest_release_at: https://github.com/Spellhold-Studios/BP-BGT-Worldmap
last_updated: 05.07.2026
last_checked: 07.07.2026
latest_version: 13.1.1
use_git_checkout: true
# ============================================================================================ #
# === Lichdom mod
#
# Should come early. This mod contains Artemis Entreri and the kidnapping of
# Boo, among other quests.
# ============================================================================================ #
# https://github.com/LCA-EET/Lichdom/
# ============================================================================================ #
!ruby/symbol lichdom:
name_to_use: Lichdom_mod
real_name: Lichdom
github: https://github.com/LCA-EET/Lichdom
latest_release_at: https://github.com/LCA-EET/Lichdom/releases/download/v1.5.1/Lichdom_win.zip
last_checked: 05.07.2026
latest_version: 1.5.1
use_git_checkout: false # true
# ============================================================================================ #
# === Insurmountable_Challenges_mod
#
# This mod is also known as "Telim'Gar's Insurmountable Challenges".
# ============================================================================================ #
# https://github.com//Deratiseur/Defis
# ============================================================================================ #
!ruby/symbol Insurmountable_Challenges_mod:
name_to_use: Insurmountable_Challenges_mod
real_name: Defis
github: https://github.com//Deratiseur/Defis
latest_release_at: https://github.com//Deratiseur/Defis/releases/tag/v2.0
last_updated: 04.06.2026
last_checked: 05.07.2026
latest_version: 3.1
use_git_checkout: true
# ============================================================================================ #
# === The_ogre_and_the_gnome_mod
# ============================================================================================ #
# https://github.com//Deratiseur/Ogre
# ============================================================================================ #
!ruby/symbol The_ogre_and_the_gnome_mod:
name_to_use: The_ogre_and_the_gnome_mod
real_name: Ogre
github: https://github.com//Deratiseur/Ogre
latest_release_at: https://github.com/Deratiseur/Gilbertus/releases/tag/v2.0
last_updated: 04.06.2026
last_checked: 04.07.2026
latest_version: 6.1
use_git_checkout: true
# ============================================================================================ #
# === Gilbertus
#
# Buy this one late, when you have a lot of money.
# ============================================================================================ #
# https://github.com/Deratiseur/Gilbertus
# ============================================================================================ #
!ruby/symbol Gilbertus_mod:
name_to_use: Gilbertus_mod
real_name: Gilbertus
github: https://github.com/Deratiseur/Gilbertus
latest_release_at: https://github.com/Deratiseur/Gilbertus/releases/tag/v2.0
last_updated: 04.06.2026
last_checked: 04.07.2026
latest_version: 6.1
use_git_checkout: true
# ============================================================================================ #
# === Viconia Revamped
#
# Also gives her a unique ability.
# ============================================================================================ #
# https://downloads.weaselmods.net/download/viconia-revamped/
# ============================================================================================ #
!ruby/symbol Viconia_Revamped_mod:
name_to_use: Viconia_Revamped_mod
real_name: viconia-revamped
github: https://downloads.weaselmods.net/download/viconia-revamped/
latest_release_at: https://downloads.weaselmods.net/download/viconia-revamped/?wpdmdl=139&refresh=69efddff139301777327615
last_updated: 14.05.2026
last_checked: 14.05.2026
latest_version: 7.4.1
use_git_checkout: false
# ============================================================================================ #
# === Southern Edge mod
# ============================================================================================ #
!ruby/symbol Southern_Edge_mod:
name_to_use: Southern_Edge_mod
real_name: southern-edge
github: https://downloads.weaselmods.net/download/southern-edge/
latest_release_at: https://downloads.weaselmods.net/download/southern-edge/?wpdmdl=36&refresh=69ee4dff647e41777225215
last_checked: 03.07.2026
latest_version: 6.0
use_git_checkout: false
# ============================================================================================ #
# === EET mod
# ============================================================================================ #
# https://github.com/Gibberlings3/EET/
# https://github.com/Gibberlings3/EET/archive/refs/tags/v14.1.zip
# git clone https://github.com/Gibberlings3/EET/
# ============================================================================================ #
!ruby/symbol EET_from_Gibberlings3:
name_to_use: EET_from_CawDawg
real_name: EET # This will be used for weidu.exe
github: https://github.com/Gibberlings3/EET/ # or https://github.com/CamDawg/EET
latest_release_at: https://github.com/Gibberlings3/EET/archive/refs/tags/v14.1.zip
last_checked: 25.04.2026
latest_version: 25.04.2026
use_git_checkout: true
# ============================================================================================ #
# === Lunia for Good Parties mod
#
# This mod allows all non-evil characters, that have a reputation of 14 or above,
# to travel to Lunia.
# ============================================================================================ #
# https://github.com/bucketfulofsunshine/Lunia-For-Good-Parties
# ============================================================================================ #
!ruby/symbol Lunia_for_Good_Parties:
name_to_use: Lunia_for_Good_Parties_mod
real_name: Lunia-For-Good-Parties
github: https://github.com/bucketfulofsunshine/Lunia-For-Good-Parties
latest_release_at: https://github.com/bucketfulofsunshine/Lunia-For-Good-Parties/archive/refs/tags/V1.9.1.zip
last_checked: 25.04.2026
latest_version: 25.04.2026
use_git_checkout: true
# ============================================================================================ #
# === Duality odd quest mod
#
# This mod adds some difficult encounters that takes place in Chapter 6 in the Umar Hills,
# after the party did defeate the Shade Lord.
#
# It is unfortunately very bugged as of 2026.
# ============================================================================================ #
# https://github.com/Spellhold-Studios/Duality-Odd-Quest-Mod
# https://github.com/Spellhold-Studios/Duality-Odd-Quest-Mod/releases/
# https://github.com/Spellhold-Studios/Duality-Odd-Quest-Mod/releases/tag/v2.1
# ============================================================================================ #
!ruby/symbol duality_odd_quest: # (5) Duality Odd Quest Mod
name_to_use: Duality_Odd_Quest_mod
real_name: Duality-Odd-Quest-Mod
github: https://github.com/Spellhold-Studios/Duality-Odd-Quest-Mod/
latest_release_at: https://github.com/Spellhold-Studios/Duality-Odd-Quest-Mod/archive/refs/tags/V1.9.1.zip
last_checked: 18.05.2026
latest_version: 25.04.2026
use_git_checkout: true
# ============================================================================================ #
# === UnfinishedBusiness mod
#
# Should come early. This mod contains Artemis Entreri and the kidnapping of
# Boo, among other quests.
# ============================================================================================ #
# https://github.com/Pocket-Plane-Group/UnfinishedBusiness
# ============================================================================================ #
# https://github.com/Pocket-Plane-Group/UnfinishedBusiness
# https://github.com/Pocket-Plane-Group/UnfinishedBusiness/releases/
# https://github.com/Pocket-Plane-Group/UnfinishedBusiness/releases/tag/v2.1
# ============================================================================================ #
!ruby/symbol Unfinished_Business_mod:
name_to_use: Unfinished_Business_mod
real_name: UnfinishedBusiness
github: https://github.com/Pocket-Plane-Group/UnfinishedBusiness
latest_release_at: https://github.com/Pocket-Plane-Group/UnfinishedBusiness/archive/refs/tags/V1.9.1.zip
latest_version: 14.05.2026
last_checked: 16.05.2026
use_git_checkout: true
# ============================================================================================ #
# === peacespeaker mod aka peacekeeper
# ============================================================================================ #
# Latest version: 2.3 # The latest official version.
# Latest update: 25.04.2026 # We use the git clone sources.
# ============================================================================================ #
# https://github.com/bucketfulofsunshine/peacespeaker
# ============================================================================================ #
# https://github.com/bucketfulofsunshine/peacespeaker
# https://github.com/bucketfulofsunshine/peacespeaker/releases/tag/v1.4a
# ============================================================================================ #
!ruby/symbol peacespeaker:
name_to_use: Peacespeaker_mod
real_name: peacespeaker
github: https://github.com/bucketfulofsunshine/peacespeaker
latest_release_at: https://github.com/bucketfulofsunshine/peacespeaker/refs/tags/V1.9.1.zip
last_checked: 25.04.2026
latest_version: 25.04.2026
use_git_checkout: true
# ============================================================================================ #
# === peacespeaker mod
# ============================================================================================ #
# https://github.com/bucketfulofsunshine/peacespeaker
# ============================================================================================ #
# https://github.com/bucketfulofsunshine/peacespeaker
# https://github.com/bucketfulofsunshine/peacespeaker/releases/tag/v1.4a
# ============================================================================================ #
!ruby/symbol Project_Javelin_mod:
name_to_use: Project_Javelin_mod
real_name: Project_Javelin
github: https://github.com/Gibberlings3/Project_Javelin
latest_release_at: https://github.com/Gibberlings3/Project_Javelin
last_checked: 09.05.2026
latest_version: 04.05.2026
use_git_checkout: true
# ============================================================================================ #
# === The Dvaradime NPC some NPC - is a fairly nice mod.
# ============================================================================================ #
# https://downloads.weaselmods.net/download/dvaradime/
# ============================================================================================ #
!ruby/symbol dvaradime:
name_to_use: Dvaradime_mod
real_name: dvaradime
github: https://github.com/bucketfulofsunshine/peacespeaker
latest_release_at: https://downloads.weaselmods.net/download/dvaradime/?wpdmdl=647&refresh=69ea3f1c2a6bd1776959260
last_checked: 30.06.2026
latest_version: 1.6
use_git_checkout: false
# ============================================================================================ #
# === The Oops mod
#
# Oops the magician can be found next to the Watchtower, to the south-west.
# ============================================================================================ #
# Latest version: 4.4.1 # The latest official version.
# Latest update: 25.04.2026 #
# ============================================================================================ #
# https://github.com/Deratiseur/Oops
# ============================================================================================ #
# https://github.com/Deratiseur/Oops
# https://github.com/Deratiseur/Oops/releases
# ============================================================================================ #
!ruby/symbol the_oops_mod:
name_to_use: The_oops_mod
real_name: Oops
github: https://github.com/Deratiseur/Oops
latest_release_at: https://github.com/Deratiseur/Oops
last_checked: 25.04.2026
latest_version: 25.04.2026
use_git_checkout: true
# ============================================================================================ #
# === The Tangled Oak isle mod
# ============================================================================================ #
# https://downloads.weaselmods.net/download/tangled-oak-isle/
# ============================================================================================ #
!ruby/symbol the_tangled_oak_isle_mod:
name_to_use: The_Tangled_Oak_isle_mod
real_name: Tangled_Oak_Isle
github: https://downloads.weaselmods.net/download/tangled-oak-isle/
latest_release_at: https://downloads.weaselmods.net/download/tangled-oak-isle/?wpdmdl=317&refresh=69e5834e3006d1776649038
last_checked: 25.04.2026
latest_version: 4.7
use_git_checkout: false
# ============================================================================================ #
# === Poisoned_Pathways_mod
# ============================================================================================ #
!ruby/symbol Poisoned_Pathways_mod:
name_to_use: Poisoned_Pathways_mod
real_name: Poisoned-Pathways
github: https://github.com/AciferBG/Poisoned-Pathways
latest_release_at: https://github.com/AciferBG/Poisoned-Pathways/releases/download/v1.0/Poisoned_Pathways_V_1.0.zip
last_checked: 26.06.2026
latest_version: 1.0
use_git_checkout: false
# ============================================================================================ #
# === The Ooze Lounge Mod (ooze tag)
# ============================================================================================ #
# https://downloads.weaselmods.net/download/tangled-oak-isle/
# ============================================================================================ #
!ruby/symbol The_Ooze_Lounge_mod:
name_to_use: The_Ooze_Lounge_mod
real_name: oozes-lounge
github: https://downloads.weaselmods.net/download/oozes-lounge/
latest_release_at: https://downloads.weaselmods.net/download/oozes-lounge/?wpdmdl=59&refresh=6a3961161b78f1782145302
last_checked: 23.05.2026
latest_version: 3.1
use_git_checkout: false
# ============================================================================================ #
# === The Dungeon Crawl Mod
# ============================================================================================ #
# https://www.pocketplane.net/dungeon-crawl/
# https://github.com/Pocket-Plane-Group/Dungeon_Crawl/
# ============================================================================================ #
!ruby/symbol The_Dungeon_Crawl_mod:
name_to_use: The_Dungeon_Crawl_mod
real_name: Dungeon_Crawl
github: https://github.com/Pocket-Plane-Group/Dungeon_Crawl/
latest_release_at: https://github.com/Pocket-Plane-Group/Dungeon_Crawl/releases/download/v13.1/DungeonCrawl_v13-1.zip
last_checked: 25.04.2026
latest_version: 13.1
use_git_checkout: true
# ============================================================================================ #
# === Demon Summoning Ritual mod
#
# Tolgerias has the demon book. First one has to kill him though, in the planar sphere.
#
# His book can not be used by good aligned characters though.
# ============================================================================================ #
# https://github.com/Spellhold-Studios/Demon-Summoning-Ritual
# https://github.com/Spellhold-Studios/Demon-Summoning-Ritual/releases/tag/v8.0.0
# ============================================================================================ #
!ruby/symbol Demon_summoning_ritual_mod:
name_to_use: Demon_summoning_ritual_mod
real_name: Demon-Summoning-Ritual
github: https://github.com/Spellhold-Studios/Demon-Summoning-Ritual
latest_release_at: https://github.com/Spellhold-Studios/Demon-Summoning-Ritual/releases/download/v13.1/DungeonCrawl_v13-1.zip
last_checked: 25.04.2026
latest_version: 25.04.2026
use_git_checkout: true
# ============================================================================================ #
# === Aura the artificer mod
#
# In Baldur's Gate 2, Aura may be found by looking for her in the Jansen home in
# the Slums (try to go up the stairs to see an event), then travelling to
# Waukeen's Promenade.
# ============================================================================================ #
# https://github.com/ArtemiusI/Aura_BG1_BG2_EET
# ============================================================================================ #
!ruby/symbol Aura_the_artificer_mod:
name_to_use: Aura_the_artificer_mod
real_name: Aura_BG1_BG2_EET
github: https://github.com/ArtemiusI/Aura_BG1_BG2_EET
latest_release_at: https://github.com/ArtemiusI/Aura_BG1_BG2_EET/download/v13.1/DungeonCrawl_v13-1.zip
last_checked: 25.04.2026
latest_version: 25.04.2026
use_git_checkout: true
# ============================================================================================ #
# === I shall never forget mod, by Lava, should come late as it adds new areas
# ============================================================================================ #
!ruby/symbol I_shall_never_forget_mod:
name_to_use: I_shall_never_forget_mod
real_name: i-shall-never-forget
github: https://downloads.weaselmods.net/download/i-shall-never-forget/
latest_release_at: https://downloads.weaselmods.net/download/i-shall-never-forget/?wpdmdl=77&refresh=69e7b6e3f14ff1776793315
last_checked: 25.04.2026
latest_version: 6.4
use_git_checkout: false
# ============================================================================================ #
# === Tales of the Deep Garden
# ============================================================================================ #
!ruby/symbol Tales_of_the_Deep_Garden_mod:
name_to_use: Tales_of_the_Deep_Garden_mod
real_name: tales-of-the-deep-gardens
github: https://downloads.weaselmods.net/download/tales-of-the-deep-gardens/
latest_release_at: https://downloads.weaselmods.net/download/tales-of-the-deep-gardens/?wpdmdl=68&refresh=69e659d9ac81e1776703961
last_checked: 25.04.2026
latest_version: 12.96
use_git_checkout: false
# ============================================================================================ #
# === Golden Horse mod
# ============================================================================================ #
!ruby/symbol Golden_Horse_mod:
name_to_use: Golden_Horse_mod
real_name: tales-of-the-deep-gardens
github: https://github.com/Spellhold-Studios/Golden-Horse
latest_release_at: https://github.com/Spellhold-Studios/Golden-Horse/releases/tag/v1.8e
forum: https://www.gibberlings3.net/forums/topic/38767-shs-welcomes-golden-horse-mercenary-company-mod/
last_checked: 25.04.2026
latest_version: 1.8f
use_git_checkout: true
# ============================================================================================ #
# === Will of the Wisps mod
# ============================================================================================ #
!ruby/symbol Will_of_the_Wisps_mod:
name_to_use: Will_of_the_Wisps_mod
real_name: will-of-the-wisps
github: https://downloads.weaselmods.net/download/will-of-the-wisps/
latest_release_at: https://downloads.weaselmods.net/download/will-of-the-wisps/?wpdmdl=91&refresh=69ea5dc1b24521776967105
last_checked: 25.04.2026
latest_version: 3.4
use_git_checkout: false
# ============================================================================================ #
# === SoD_Items_to_BG2EE_EET_mod
#
# This has items such as a Wizard Hat.
# ============================================================================================ #
!ruby/symbol SoD_Items_to_BG2EE_EET_mod:
name_to_use: SoD_Items_to_BG2EE_EET_mod
real_name: sod-items-to-bg2ee-eet
github: https://github.com/dark0dave/sod-items-to-bg2ee-eet
latest_release_at: https://github.com/dark0dave/sod-items-to-bg2ee-eet
last_checked: 11.06.2026
latest_version: 4.0.0
use_git_checkout: true
# ============================================================================================ #
# === Paina the NPC mod
#
# Another NPC mod. Should probably come fairly late.
# ============================================================================================ #
# https://github.com/ArtemiusI/Pai-Na-NPC-mod-for-BG2-EE
# ============================================================================================ #
!ruby/symbol Paina_the_NPC_mod:
name_to_use: Paina_the_NPC_mod
real_name: Pai-Na-NPC-mod-for-BG2-EE
github: https://github.com/TheArtisanBG/Pai-Na-NPC-mod-for-BG2-EE
latest_release_at: https://github.com/TheArtisanBG/Pai-Na-NPC-mod-for-BG2-EE/Pai-Na-NPC-mod-for-BG2-EE
last_checked: 25.04.2026
latest_version: 1.9
use_git_checkout: true
# ============================================================================================ #
# === The Reunion mod
#
# To start the quest, you have to have Nalia in your party
# in Chapter 9.
# ============================================================================================ #
# https://www.pocketplane.net/reunion/
# https://github.com/Pocket-Plane-Group/Reunion
# https://github.com/Pocket-Plane-Group/Reunion/releases
# ============================================================================================ #
!ruby/symbol The_Reunion_mod:
name_to_use: The_Reunion_mod
real_name: Reunion
github: https://github.com/Pocket-Plane-Group/Reunion/
latest_release_at: https://github.com/Pocket-Plane-Group/Reunion/
last_checked: 25.04.2026
latest_version: v7
use_git_checkout: true
# ============================================================================================ #
# === The Wings mod
# ============================================================================================ #
# https://github.com/Skitia/Wings/releases
# ============================================================================================ #
!ruby/symbol The_Wings_mod:
name_to_use: The_Wings_mod
real_name: Wings
github: https://github.com/Skitia/Wings/
latest_release_at: https://github.com/Skitia/Wings/releases
last_checked: 09.05.2026
latest_version: 1.0.8
use_git_checkout: true
# ============================================================================================ #
# === Jazon the revenant mod
# ============================================================================================ #
# Latest version: 4.4 # The latest official version.
# Latest update: 30.01.2026 #
# ============================================================================================ #
# https://github.com/Deratiseur/Jazon/
# ============================================================================================ #
!ruby/symbol Jazon_the_revenant_mod:
name_to_use: Jazon_the_revenant_mod
real_name: Jazon
github: https://github.com/Deratiseur/Jazon/
latest_release_at: https://github.com/Deratiseur/Jazon/releases
last_checked: 25.04.2026
latest_version: 4.4
use_git_checkout: true
# ============================================================================================ #
# === Wares of the Planes mod
#
# Check out the Eyes of Mask item.
# ============================================================================================ #
# https://github.com/Deratiseur/Jazon/
# ============================================================================================ #
# https://github.com/Argent77/A7-WaresOfThePlanes
# https://github.com/Argent77/A7-WaresOfThePlanes/releases/
# https://github.com/Argent77/A7-WaresOfThePlanes/releases/tag/v1.4
# ============================================================================================ #
!ruby/symbol Wares_of_the_Planes_mod:
name_to_use: Wares_of_the_Planes_mod
real_name: WaresOfThePlanes
github: https://github.com/Argent77/A7-WaresOfThePlanes
latest_release_at: https://github.com/Argent77/A7-WaresOfThePlanes/releases
last_checked: 25.04.2026
latest_version: 2.2
use_git_checkout: true
# ============================================================================================ #
# === FowlWish mod
# ============================================================================================ #
# Latest version: 1.4 # The latest official version.
# Latest update: 27.02.2024 #
# ============================================================================================ #
# https://www.gibberlings3.net/forums/topic/37911-quest-mod-a-fowl-wish/
# https://github.com/Glittergear/A-Fowl-Wish/
# ============================================================================================ #
!ruby/symbol The_FowlWish_mod:
name_to_use: The_FowlWish_mod
real_name: FowlWish
github: https://github.com/Glittergear/A-Fowl-Wish/
latest_release_at: https://github.com/Glittergear/A-Fowl-Wish/releases/download/v.1.4.1/detective-guild-of-athkatla-1.4.1.zip; tarb *zip
last_checked: 25.04.2026
latest_version: 1.4
use_git_checkout: true
# ============================================================================================ #
# === Skitia NPCs mod
# ============================================================================================ #
# https://github.com/Skitia/SkitiaNPCs/
# ============================================================================================ #
!ruby/symbol Skitia_NPCs_mod:
name_to_use: Skitia_NPCs_mod
real_name: SkitiaNPCs
github: https://github.com/Skitia/SkitiaNPCs/
latest_release_at: https://github.com/Skitia/SkitiaNPCs/releases/download/v.1.4.1/detective-guild-of-athkatla-1.4.1.zip; tarb *zip
last_checked: 25.04.2026
latest_version: 1.4
use_git_checkout: true
# ============================================================================================ #
# === The Alternatives mod
#
# Alternatives offers two new possibilities to consider when making the decision about
# whether to side with the Shadow Thieves or with Valen's Mistress.
# ============================================================================================ #
# https://www.gibberlings3.net/mods/quests/alternatives/
# https://github.com/Gibberlings3/Alternatives
# https://github.com/Gibberlings3/Alternatives/releases
# ============================================================================================ #
!ruby/symbol Alternatives_mod:
name_to_use: Alternatives_mod
real_name: Alternatives
github: https://github.com/Gibberlings3/Alternatives
latest_release_at: https://github.com/Skitia/SkitiaNPCs/releases/download/v.1.4.1/detective-guild-of-athkatla-1.4.1.zip; tarb *zip
last_checked: 25.04.2026
latest_version: 15
use_git_checkout: true
# ============================================================================================ #
# === The Golem construction mod
#
# This mod changes a few areas and item mods.
# ============================================================================================ #
# https://github.com/Argent77/A7-GolemConstruction
# https://raw.githubusercontent.com/Argent77/A7-GolemConstruction/refs/heads/devel/A7-GolemConstruction/readme/golem_information.txt
# ============================================================================================ #
!ruby/symbol The_golem_construction_mod:
name_to_use: The_golem_construction_mod
real_name: A7-GolemConstruction
github: https://github.com/Argent77/A7-GolemConstruction
latest_release_at: https://github.com/Argent77/A7-GolemConstruction/releases/download/v.1.4.1/detective-guild-of-athkatla-1.4.1.zip; tarb *zip
last_checked: 25.04.2026
latest_version: 6.5.1.1
use_git_checkout: true
# ============================================================================================ #
# === The Return of Hephernaan mod
# ============================================================================================ #
# https://downloads.weaselmods.net/download/verrsza-bg2ee/
# ============================================================================================ #
!ruby/symbol The_Return_of_Hephernaan_mod:
name_to_use: The_Return_of_Hephernaan_mod
real_name: hephernaan-bg2
github: https://downloads.weaselmods.net/download/hephernaan-bg2/
latest_release_at: https://downloads.weaselmods.net/download/hephernaan-bg2/?wpdmdl=281&refresh=6a272b1f2e5d51780951839
last_checked: 30.05.2026
latest_version: 4.0
use_git_checkout: false
# ============================================================================================ #
# === VerrBG2 (Verr'Sza) by Lava
#
# A NPC, with a great, unique item.
# ============================================================================================ #
# https://downloads.weaselmods.net/download/verrsza-bg2ee/
# ============================================================================================ #
!ruby/symbol The_VerrBG2_mod:
name_to_use: The_VerrBG2_mod
real_name: verrsza-bg2ee
github: https://downloads.weaselmods.net/download/verrsza-bg2ee/
latest_release_at: https://downloads.weaselmods.net/download/verrsza-bg2ee/?wpdmdl=122&refresh=69ef763c211671777301052
last_checked: 25.04.2026
latest_version: 6.5.1.1
use_git_checkout: false
# ============================================================================================ #
# === The Cowled Menace Mod
#
# Unravel the mysteries of the Twisted Rune and investigate the Cowled Wizards in this
# Enhanced Edition Trilogy mod.
# ============================================================================================ #
# https://github.com/Gibberlings3/CowledMenace/
# ============================================================================================ #
!ruby/symbol The_CowledMenace_mod:
name_to_use: The_CowledMenace_mod
real_name: CowledMenace
github: https://github.com/Gibberlings3/CowledMenace/
latest_release_at: https://github.com/Gibberlings3/CowledMenace/?wpdmdl=122&refresh=69ef763c211671777301052
last_checked: 25.04.2026
latest_version: 1.0.4
use_git_checkout: true
# ============================================================================================ #
# === Juniper_and_the_stone_leech_mod
# ============================================================================================ #
# https://downloads.weaselmods.net/download/juniper-and-the-stone-leech/
# ============================================================================================ #
!ruby/symbol Juniper_and_the_stone_leech_mod:
name_to_use: Juniper_and_the_stone_leech_mod
real_name: juniper-and-the-stone-leech
github: https://downloads.weaselmods.net/download/juniper-and-the-stone-leech/
latest_release_at: https://downloads.weaselmods.net/download/juniper-and-the-stone-leech/?wpdmdl=683&refresh=69ef74bd102e71777300669
last_updated: 27.04.2026
last_checked: 27.04.2026
latest_version: 1.8.6
use_git_checkout: false
# ============================================================================================ #
# === The_Ink_gallery_mod
# ============================================================================================ #
!ruby/symbol The_Ink_gallery_mod:
name_to_use: The_Ink_gallery_mod
real_name: the-ink-gallery
github: https://downloads.weaselmods.net/download/the-ink-gallery/
latest_release_at: https://downloads.weaselmods.net/download/the-ink-gallery/?wpdmdl=913&refresh=6a08cc86544111778961542
last_updated: 16.05.2026
last_checked: 16.05.2026
latest_version: 1.0.1
use_git_checkout: false
# ============================================================================================ #
# === The BaeBG2 mod
#
# Find Baeloth in the Copper Cornet.
# ============================================================================================ #
# https://github.com/dark0dave/BaeBG2
# ============================================================================================ #
!ruby/symbol The_BaeBG2_mod:
name_to_use: The_BaeBG2_mod
real_name: BaeBG2
github: https://github.com/dark0dave/BaeBG2
latest_release_at: https://github.com/dark0dave/BaeBG2
last_updated: 27.04.2026
last_checked: 27.04.2026
latest_version: 0.2.0
use_git_checkout: true
# ============================================================================================ #
# === The BG1-NPCs-for-SoA-ToB mod
#
# This mod adds the area called Water Gardens
#
# This mod must be installed AFTER other NPC mods containing the same NPCs - in which
# case they will simply be skipped, but all the rest of the content of this mod will
# be available!
#
# Component "Water Gardens. New Athkatla's district & new quests" (area and quests
# available by default, regardless of the presence of the NPCs in the group):
#
# 1) Elminster Quest - A crafty imp has stolen Elminster's ring. Too
# busy to retrieve it himself, he asks you to lend a hand. Quest
# begins at Lady Goldsword's villa in the Water Gardens.
# 2) Volo Quest - Volo will ask you for a favor. Quest begins at Lady
# Goldsword's villa in the Water Gardens.
# 3) Help Lady Jwennilyn - Lady Jwennilyn is having problems with a wizard
# that is keeping her from closing a business deal. Take the Wizard
# out of the picture.
# 4) Lady Heloise and Uncle Fulbert Saga - Will Uncle Fulbert let Lady
# Heloise be with her true love? Perhaps you could help.
# 5) Dran Draggore - The Lord of the Undead, the top boss from Eye
# of the Beholder 2 has his eye fixed on Athkatla. Can you save
# the city?
# 6) Slythe and Krystin Encounter - Some villains from the past
# return to cause you more trouble.
# 7) Book Delivery - Deliver a book for the owner of the Blue Unicorn, a new
# inn/tavern found in the Water Gardens
# 8) Black Lotus - involve yourself in Athkatla's shady
# underworld. Quest starts after meeting Banon at the gates.
# 9) An auction held at Lady Goldsword's mansion in Water Gardens,
# where player would have a one time chance to land precious
# artifacts for himself and his companions (idea by Smiling
# Imp, texts by Jericho2, proofread by Sarevok57, coding by
# Austin). In total, 11 sketches were written, mostly humorous
# - a total of almost 1000 new lines!
# The auction will become available after Lady Goldsword's
# main quest is completed and after that, 500 seconds of
# real time will elapse. Every day there will be new scenes,
# if the player has the required amount of money, and for
# some scenes, you also need to have certain NPCs in the
# group - Minsc, Korgan, HaerDalis, etc. If you have Minsc
# in the group, you will be able to get the legendary
# platinum pantaloons, and many nobles throughout the
# city will comment on this (in the Water Gardens area,
# the Government area and the Bridge area). And if
# these pantaloons remain with you until the end of
# the game, then in the chapter 6 in Athkatla you
# will find an additional small scene.
# 10) New NPC - Deekin, cobold bard from NWN.
#
# See also:
#
# https://github.com/Spellhold-Studios/BG1-NPCs-for-SoA-ToB/blob/main/BG1NPCSoA/readme/BG1ReadMe.pdf
#
# ============================================================================================ #
# https://github.com/Spellhold-Studios/BG1-NPCs-for-SoA-ToB/
# ============================================================================================ #
!ruby/symbol The_BG1_NPCs_for_SoA_ToB_mod:
name_to_use: The_BG1_NPCs_for_SoA_ToB_mod
real_name: BG1-NPCs-for-SoA-ToB
github: https://github.com/Spellhold-Studios/BG1-NPCs-for-SoA-ToB/
latest_release_at: https://github.com/Spellhold-Studios/BG1-NPCs-for-SoA-ToB/
last_updated: 10.02.2026
last_checked: 27.04.2026
latest_version: 15.5
use_git_checkout: true
# ============================================================================================ #
# === Eilistraees Song mod
# ============================================================================================ #
# https://github.com/Spellhold-Studios/BG1-NPCs-for-SoA-ToB/
# ============================================================================================ #
!ruby/symbol Eilistraees_Song_mod:
name_to_use: Eilistraees_Song_mod
real_name: eilistraees-song
github: https://downloads.weaselmods.net/download/eilistraees-song/
latest_release_at: https://downloads.weaselmods.net/download/eilistraees-song/?wpdmdl=89&refresh=69ef719a692a31777299866
last_updated: 11.12.2024
last_checked: 27.04.2026
latest_version: 7.5.1
use_git_checkout: false
# ============================================================================================ #
# === The Sellswords mod
# ============================================================================================ #
# https://github.com/Pocket-Plane-Group/Sellswords/
# ============================================================================================ #
!ruby/symbol The_Sellswords_mod:
name_to_use: The_Sellswords_mod
real_name: Sellswords
github: https://github.com/Pocket-Plane-Group/Sellswords/
latest_release_at: https://github.com/Pocket-Plane-Group/Sellswords/
last_updated: 15.05.2021
last_checked: 27.04.2026
latest_version: 9.1
use_git_checkout: true
# ============================================================================================ #
# === The White Queen mod
#
# This should come after Tales of the Deep Garden.
# ============================================================================================ #
!ruby/symbol The_White_Queen_mod:
name_to_use: The_White_Queen_mod
real_name: the-white-queen
github: https://downloads.weaselmods.net/download/the-white-queen/
latest_release_at: https://downloads.weaselmods.net/download/the-white-queen/?wpdmdl=75&refresh=69f0b812342d41777383442
last_updated: 29.12.2025
last_checked: 27.04.2026
latest_version: 7.4.2
use_git_checkout: false
# ============================================================================================ #
# === Throne of the Mad God, a mod created by Acifer
# ============================================================================================ #
# https://github.com/AciferBG/Throne-of-the-Mad-God
# ============================================================================================ #
!ruby/symbol Throne_of_the_Mad_God_mod:
name_to_use: Throne_of_the_Mad_God_mod
real_name: Throne-of-the-Mad-God
github: https://github.com/AciferBG/Throne-of-the-Mad-God
latest_release_at: https://github.com/AciferBG/Throne-of-the-Mad-God/releases/tag/v2.0
last_updated: 12.04.2026
last_checked: 27.04.2026
latest_version: 2.0
use_git_checkout: true
# ============================================================================================ #
# === BloodAndFaith mod
# ============================================================================================ #
# https://github.com/Glittergear/BloodAndFaith/
# ============================================================================================ #
!ruby/symbol Blood_and_Faith_mod:
name_to_use: Blood_and_Faith_mod
real_name: BloodAndFaith
github: https://github.com/Glittergear/BloodAndFaith/
latest_release_at: https://github.com/Glittergear/BloodAndFaith/releases/tag/v2.0
last_updated: 12.04.2026
last_checked: 27.04.2026
latest_version: 1.4
use_git_checkout: true
# ============================================================================================ #
# === Solaufeins Rescue NPC
#
# This mod makes Solaufein, the Ust Natha Drow from BGII a joinable NPC and
# adds a quest in the Underdark.
# ============================================================================================ #
# https://github.com/Gitjas/Solaufeins_Rescue_NPC
# ============================================================================================ #
!ruby/symbol Solaufeins_rescue_mod:
name_to_use: Solaufeins_rescue_mod
real_name: Solaufeins_Rescue_NPC
github: https://github.com/Gitjas/Solaufeins_Rescue_NPC/
latest_release_at: https://github.com/Gitjas/Solaufeins_Rescue_NPC/releases/tag/v2.0
last_updated: 12.04.2026
last_checked: 27.04.2026
latest_version: 5.1
use_git_checkout: true
# ============================================================================================ #
# === Ninde NPC, a necromancer
# ============================================================================================ #
# https://github.com/Spellhold-Studios/Ninde-NPC
# ============================================================================================ #
!ruby/symbol Ninde_NPC_the_necromancer:
name_to_use: Ninde_NPC_the_necromancer
real_name: Ninde-NPC
github: https://github.com/Spellhold-Studios/Ninde-NPC/
latest_release_at: https://github.com/Spellhold-Studios/Ninde-NPC/releases/tag/v2.0
last_updated: 12.04.2026
last_checked: 30.04.2026
latest_version: 3.0
use_git_checkout: true
# ============================================================================================ #
# === Romantic Encounters
# ============================================================================================ #
# https://github.com/Gibberlings3/Romantic_Encounters_BG2
# ============================================================================================ #
!ruby/symbol BG2_EE_Romantic_Encounters: