forked from loot/skyrimse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
masterlist.yaml
9885 lines (9811 loc) · 379 KB
/
masterlist.yaml
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
common:
# Files
- &SKSE64
name: '../skse64_loader.exe'
display: '**Skyrim Script Extender ([ SKSE 64 ](http://skse.silverlock.org))**'
condition: 'file("../SkyrimSE.exe") and not file("../skse64_loader.exe")'
- &SKSEVR
name: '../sksevr_loader.exe'
display: '**Skyrim Script Extender ([ SKSE VR ](http://skse.silverlock.org))**'
condition: 'file("../SkyrimVR.exe") and not file("../sksevr_loader.exe")'
- &SKSE
<<: *SKSE64
<<: *SKSEVR
- &SkyUI
name: 'SkyUI_SE.esp'
display: '[SkyUI](https://www.nexusmods.com/skyrimspecialedition/mods/12604)'
- &FNIS
name: 'tools/GenerateFNIS_for_Users/GenerateFNISforUsers.exe'
display: '[Fores New Idles in Skyrim SE](https://www.nexusmods.com/skyrimspecialedition/mods/3038)'
# Messages
- &doNotClean
type: say
content:
- lang: en
text: 'Do not clean ITM records, they are intentional and required for the mod to function. It is safe to undelete records, but do not do anything other than that.'
- lang: ru
text: 'Не очищать. "Грязные" правки оставлены специально и требуются для функционирования мода.'
- lang: es
text: 'No limpiar las referencias ITM (iguales al master), ya que son intencionales y necesarias para que el Mod funcione. Sí es seguro restaurar las UDR (referencias borradas), pero no haga más que eso.'
- lang: zh_CN
text: '不干净。"脏"数据是故意的,这是mod需要的功能。'
- lang: da
text: 'Rengør ikke ITM-poster: de er forsætlige og krævede for at mod’en fungerer. Det er sikkert at gendanne poster, men gør ikke andet end dét.'
- lang: ja
text: 'IMTレコードはクリーンしないでください。これらは意図的に残されたデータであり、Modを機能させるために必要です。削除の取り消しは安全に行えますが、それ以外のことは行わないでください。'
- lang: de
text: 'ITM-Einträge in diesem Plugin sollten nicht gesäubert werden, sie sind absichtlich enthalten und werden benötigt, damit der Mod richtig funktioniert. Gelöschte Eintrage wiederherzustellen ist in Ordung, alles andere aber nicht.'
- &patchProvided
type: warn
content:
- lang: en
text: 'You seem to be using %1%, but you have not enabled a compatibility patch for this mod. A compatibility patch is provided on this plugin''s mod page.'
- lang: de
text: 'Sie scheinen %1% zu nutzen, aber sie haben keinen Kompatibilitätspatch für diesen Mod aktiviert. Ein Kompatibilitätspatch wird auf dieser Plugins Mod-Seite zur Verfügung gestellt.'
- &patchIncluded
type: warn
content:
- lang: en
text: 'You seem to be using %1%, but you have not enabled a compatibility patch for this mod. A compatibility patch is included with this plugin''s installer.'
- lang: de
text: 'Sie scheinen %1% zu nutzen, aber sie haben keinen Kompatibilitätspatch für diesen Mod aktiviert. Ein Kompatibilitätspatch ist enthalten mit diesen Plugins Installer.'
- &patch3rdParty
type: warn
content:
- lang: en
text: 'You seem to be using %1%, but you have not enabled a compatibility patch for this mod. A third party patch is available here: %2%'
- lang: de
text: 'Sie scheinen %1% zu nutzen, aber sie haben keinen Kompatibilitätspatch für diesen Mod aktiviert. Ein Patch von Dritten ist hier verfügbar: %2%'
- &patch3rdPartyQUASIPC
type: warn
content:
- lang: en
text: 'You seem to be using %1%, but you have not enabled a compatibility patch for this mod. A third party patch is available here: [ Qwinn''s Unified Automated Self Installing Patch Compendium ](https://www.nexusmods.com/skyrimspecialedition/mods/18369)'
- lang: de
text: 'Sie scheinen %1% zu nutzen, aber sie haben keinen Kompatibilitätspatch für diesen Mod aktiviert. Ein Patch von Dritten ist hier verfügbar: [ Qwinn''s Unified Automated Self Installing Patch Compendium ](https://www.nexusmods.com/skyrimspecialedition/mods/18369)'
- &patch3rdPartySBCK
<<: *patch3rdParty
subs:
- '[Scoped Bows](https://www.nexusmods.com/skyrimspecialedition/mods/912/)'
- '[Scoped Bows Compatibility Kit - SBCK](https://www.nexusmods.com/skyrimspecialedition/mods/19495)'
- &compatNotes
type: say
content:
- lang: en
text: 'It is recommended that you read this mod''s [Compatibility Notes](%1%).'
- lang: de
text: 'Es wird empfohlen das Sie die [Kompatibilitäts-Notizen](%1%) dieses Mods lesen'
- &semiCompatible
type: say
content:
- lang: en
text: '%1% is not fully compatible with this mod. %2%'
- lang: de
text: '%1% ist nicht komplett kompatibel mit diesem Mod. %2%'
- &reqSKSE
type: error
content:
- lang: en
text: 'You have installed %1% but SKSE was not found! See SKSE download page: [SKSE](http://skse.silverlock.org).'
- lang: ru
text: 'У вас установлен %1%, но SKSE не найден! Смотрите страницу загрузки [SKSE](http://skse.silverlock.org).'
- lang: es
text: 'Tienes %1% instalado pero SKSE no se pudo encontrar! Por favor descarga SKSE: [SKSE](http://skse.silverlock.org)'
- lang: ko
text: '%1%가 설치되었지만 SKSE를 찾을 수 없습니다! SKSE 다운로드 페이지를 참조하십시오: [SKSE](http://skse.silverlock.org).'
- lang: zh_CN
text: '你已经安装了%1%,但是未发现SKSE!请查看SKSE的下载页面:[SKSE](http://skse.silverlock.org)。'
- lang: da
text: 'Du har installeret %1% men SKSE blev ikke fundet! Se SKSE-downloadsiden: [SKSE](http://skse.silverlock.org).'
- lang: ja
text: '%1%はインストールされていますが、SKSEが見つかりません!SKSEのダウンロードページを確認してください。[SKSE](http://skse.silverlock.org)'
- lang: de
text: 'Sie haben %1% installiert, aber SKSE wurde nicht gefunden! SKSE kann hier heruntergeladen werden: [SKSE](http://skse.silverlock.org).'
# Useful for when a plugin needs SkyUI, but shouldn't load after it (eg. when it's a master plugin).
- &reqSkyUI
type: warn
content:
- lang: en
text: 'SkyUI_SE.esp is not active in your load order. [SkyUI SE](https://www.nexusmods.com/skyrimspecialedition/mods/12604) is required for this mod to be fully functional.'
- lang: ja
text: 'SkyUI_SE.espがアクティブになっていません。このModを完全に機能させるには[SkyUI SE](https://www.nexusmods.com/skyrimspecialedition/mods/12604)が必要です。'
- lang: de
text: 'SkyUI_SE.esp ist nicht aktiv in Ihrer Ladereihenfolge. [SkyUI SE](https://www.nexusmods.com/skyrimspecialedition/mods/12604) wird benötigt damit diese Mod voll funktional ist.'
condition: 'not active("SkyUI_SE.esp")'
- &reqMasterSort
type: say
content:
- lang: en
text: 'Plugin''s Masters require sorting.'
- lang: de
text: 'Die Plugin Master müssen sortiert werden.'
- &AlreadyInX
type: error
content:
- lang: en
text: 'Delete. Already included in %1%.'
- lang: ru
text: 'Удалите. Уже включено в %1%.'
- lang: es
text: 'Borrar. Esta incluido en %1%.'
- lang: ko
text: '삭제하십시오. 이미 %1%에 포함되어 있습니다.'
- lang: zh_CN
text: '删除。已包含在%1%中。'
- lang: da
text: 'Slet. Allerede inkluderet i %1%.'
- lang: ja
text: '削除してください。既に%1%に含まれています。'
- lang: de
text: 'Löschen. Bereits in %1% enthalten.'
- &deletePlugin
type: warn
content:
- lang: en
text: 'When using **%1%**. It''s recommended that you deactivate or delete this ESP file, but keep the resources (e.g. meshes, textures) installed with this mod. As they''re still required by **%1%**.'
- lang: de
text: 'Beim nutzen von **%1%** ist es empfohlen das Sie die ESP-Datei deaktivieren oder löschen, aber die mitgelieferten Mittel (z.B Meshes, Texturen) beibehalten die mit dieser Mod mitinstalliert wurden. Diese werden immer noch von **%1%** vorausgesetzt'
- &versionOldX
type: say
content:
- lang: en
text: 'It appears you do not have the latest version of %1%. Some mods may require functionality added in the latest version of %1% to work.'
- lang: ru
text: 'Возможно у вас не установлена новейшая версия %1%. Для работы некоторых модов может требоваться функционал, добавленный в последней версии %1%'
- lang: es
text: 'Parece que no tienes la última versión de %1%. Algunos mods pueden requerir funcionalidad añadida en la última versión de %1% para funcionar.'
- lang: ko
text: '%1%의 최신 버전이없는 것 같습니다. 일부 개조자는 작동하기 위해 %1%의 최신 버전에 추가 된 기능이 필요할 수 있습니다.'
- lang: zh_CN
text: '你的%1%似乎不是最新的。有些插件可能需要最新的%1%才能工作。'
- lang: ja
text: '%1%が最新版ではないようです。一部のModを動作させるには最新版の%1%で追加された機能が必要となる場合があります。'
- lang: de
text: 'Sie haben anscheinend nicht die aktuellste Version von %1% installiert. Einige Mods könnten Funktionalitäten benötigen, die nur in der aktuellsten Version von %1% enthalten sind, um zu funktionieren.'
- &versionUpToDateX
type: say
content:
- lang: en
text: 'Your %1% is up-to-date.'
- lang: ru
text: 'Ваш %1% обновлен.'
- lang: es
text: 'Tienes la última versión de %1%'
- lang: ko
text: '%1%가 최신버전입니다.'
- lang: zh_CN
text: '你的%1%是最新的。'
- lang: da
text: 'Din %1% er opdateret.'
- lang: ja
text: '%1%は最新版です。'
- lang: de
text: 'Ihr %1% ist aktuell.'
- &versionIncX
type: error
content:
- lang: en
text: 'Your installed version of %1% is not compatible with your version of %2%.'
- lang: da
text: 'Din installerede version af %1% er ikke kompatibel med din version af %2%.'
- lang: ja
text: 'インストールされている%1%は使用中のバージョンの%2%との互換性がありません。'
- lang: de
text: 'Ihre installierte Version von %1% ist nicht kompatibel mit Ihrer Version von %2%.'
- &versionIncSSE
<<: *versionIncX
subs:
- '**Skyrim Script Extender ([ SKSE ](http://skse.silverlock.org))**'
- '**Skyrim SE**'
- &versionIncSVR
<<: *versionIncX
subs:
- '**Skyrim Script Extender ([ SKSE ](http://skse.silverlock.org))**'
- '**Skyrim VR**'
- &useOnlyOneX
type: error
content:
- lang: en
text: 'Use only one %1%.'
- lang: ru
text: 'Используйте только один %1%.'
- lang: es
text: 'Utilizar solo un %1%.'
- lang: ko
text: '%1%을 한개만 사용하십시오.'
- lang: zh_CN
text: '只使用一个%1%。'
- lang: ja
text: '%1%は一つだけ使用してください。'
- lang: de
text: 'Nutzen Sie nur einen %1%.'
- &includesX
type: say
content:
- lang: en
text: '%1% is included with this mod.'
- lang: de
text: 'Der %1% ist in diesem Mod enthalten.'
- &includesMBBF
<<: *includesX
subs: [ '[ Modern Brawl Bug Fix ](https://www.nexusmods.com/skyrimspecialedition/mods/1473/)' ]
# Cleaning data
- &dirtyPlugin
util: '[SSEEdit](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
info:
- lang: en
text: 'An explanation of Dirty Edits is available [here](https://tes5edit.github.io/docs/5-mod-cleaning-and-error-checking.html#Apendix-A).'
- lang: de
text: 'Eine englische Säuberungsanleitung ist [hier](https://tes5edit.github.io/docs/5-mod-cleaning-and-error-checking.html#s_5-3) verfügbar.'
- &quickClean
util: '[SSEEdit](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
info:
- lang: en
text: 'Due to Improvements made to the cleaning process with the official release of xEdit 4.0.x+, any mods which were verified as clean with older versions of xEdit may now require additional cleaning. A guide for running xEdit 4.0.x+ in **Quick Auto Clean** mode can be found [here](https://tes5edit.github.io/docs/5-mod-cleaning-and-error-checking.html#s_5-3-2).'
- lang: de
text: 'Wegen Verbesserungen die dem Säuberungsprozess zugute gekommen sind mit der offiziellen Veröffentlichung von xEdit 4.0.x+, sämtliche Mods die als sauber verifiziert wurden mithilfe älterer Versionen von xEdit brauchen eventuell zusätzliche Säuberungen. Eine englische Anleitung zum ausführen von xEdit 4.0.x+ im **Schnell-Automatisch-Säubern** Modus kann [hier](https://tes5edit.github.io/docs/5-mod-cleaning-and-error-checking.html#s_5-3-2) aufgefunden werden.'
- &reqManualFix
util: '[SSEEdit](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
info:
- lang: en
text: 'It is strongly recommended not to use mods that contain **Deleted navmeshes** as they''re known to cause crashes. **Deleted navmeshes** must be corrected manually(A complex process that should be done by the mod author). More information on **Deleted navmeshes** is provided [here](https://www.creationkit.com/index.php?title=Fixing_Navmesh_Deletion_Tutorial).'
- lang: de
text: 'Es wird streng empfohlen keine Mods zu verwenden die **Gelöschte Navmeshes** beinhalten da diese dafür bekannt sind Abstürze auszulösen. **Gelöschte Navmeshes** müssen manuell korrigiert werden(Ein komplexer Prozess der vom Mod-Autor erledigt werden sollte). Mehr Informationen über **Gelöschte Navmeshes** wird [hier](https://www.creationkit.com/index.php?title=Fixing_Navmesh_Deletion_Tutorial) geboten.'
- &wildEdits
type: warn
content:
- lang: en
text: 'This plugin contains wild edits beyond ITM and UDR records and deleted navmeshes and may require additional manual cleaning to not interfere with other mods. %1%'
- lang: da
text: 'Dette plugin indeholder ukontrollerede redigeringer udover ITM- og UDR-poster og slettede navmesher og kan behøve yderligere manuel oprydning for ikke at forstyrre andre mods. %1%'
- lang: de
text: 'Dieses Plugin enthält wilde Modifikationen weit über ITM-, und UDR Einträge und entfernte Navmeshes hinaus und benötigt vermutlich mehr manuelle Säuberung um andere Mods nicht zu beeinträchtigen. %1%'
subs: [ '' ]
bash_tags:
- 'Actors.ACBS'
- 'Actors.AIData'
- 'Actors.AIPackages'
- 'Actors.AIPackagesForceAdd'
- 'Actors.Anims'
- 'Actors.CombatStyle'
- 'Actors.DeathItem'
- 'Actors.Skeleton'
- 'Actors.Spells'
- 'Actors.SpellsForceAdd'
- 'Actors.Stats'
- 'Body-F'
- 'Body-M'
- 'Body-Size-F'
- 'Body-Size-M'
- 'C.Acoustic'
- 'C.Climate'
- 'C.Encounter'
- 'C.ForceHideLand'
- 'C.ImageSpace'
- 'C.Light'
- 'C.Location'
- 'C.LockList'
- 'C.MaxHeight'
- 'C.Music'
- 'C.Name'
- 'C.Owner'
- 'C.RecordFlags'
- 'C.Regions'
- 'C.SkyLighting'
- 'C.Water'
- 'Creatures.Blood'
- 'Deactivate'
- 'Delev'
- 'Eyes'
- 'Factions'
- 'Filter'
- 'Graphics'
- 'Hair'
- 'IIM'
- 'Invent'
- 'InventOnly'
- 'Merge'
- 'MustBeActiveIfImported'
- 'Names'
- 'NoMerge'
- 'NpcFaces'
- 'NpcFacesForceFullImport'
- 'NPC.Class'
- 'Npc.EyesOnly'
- 'Npc.HairOnly'
- 'NPC.Race'
- 'Relations'
- 'Relev'
- 'Roads'
- 'R.AddSpells'
- 'R.Attributes-F'
- 'R.Attributes-M'
- 'R.ChangeSpells'
- 'R.Description'
- 'R.Ears'
- 'R.Head'
- 'R.Mouth'
- 'R.Relations'
- 'R.Skills'
- 'R.Teeth'
- 'ScriptContents'
- 'Scripts'
- 'Sound'
- 'SpellStats'
- 'Stats'
- 'Voice-F'
- 'Voice-M'
globals:
- type: warn
content:
- lang: en
text: 'This version of LOOT has inferior handling of Creation Club plugins. Support for these are therefore limited in versions prior to LOOT 0.13.1. It is recommended to update as soon as possible.'
- lang: da
text: 'Denne version af LOOT har begrænset understøttelse af Creation Club-plugins. Det er derfor anbefalet at opdatere til LOOT 0.13.1 eller senere hurtigst muligt.'
- lang: de
text: 'Diese Version von LOOT kann nicht richtig mit Creation Club-Plugins umgehen. Unterstützung für diese ist daher limitiert in Versionen älter als LOOT 0.13.1. Ein Update ist stark empfohlen.'
condition: 'version("LOOT", "0.13.1.0", <) and file("cc[A-Z]{3}FO4[0-9]{3}-[a-zA-Z0-9()]+\.es(l|m)")'
- type: say
content:
- lang: en
text: '[Latest LOOT thread](%1%).'
- lang: ru
text: '[Обсуждение LOOT "(Eng)"](%1%).'
- lang: es
text: '[Forum de LOOT](%1%).'
- lang: ko
text: '[최신 LOOT 스레드](%1%).'
- lang: zh_CN
text: '[最新的LOOT版本](%1%)。'
- lang: da
text: '[Seneste LOOT-tråd](%1%).'
- lang: ja
text: '[LOOTの最新スレッドを開く](%1%)(英語)'
- lang: de
text: '[Aktueller LOOT-Thread](%1%).'
subs: [ 'https://loot.github.io/latest-thread/' ]
# Fores New Idles
- type: say
condition: 'file("tools/GenerateFNIS_for_Users/GenerateFNISforUsers.exe")'
content:
- lang: en
text: 'It appears you have [Fores New Idles in Skyrim SE](https://www.nexusmods.com/skyrimspecialedition/mods/3038) installed. Remember to run GenerateFNISforUsers.exe every time you have installed or un-installed FNIS, or a FNIS based mod.'
- lang: ru
text: 'У вас установлен [Fores New Idles in Skyrim SE](https://www.nexusmods.com/skyrimspecialedition/mods/3038). Не забудьте запускать GenerateFNISforUsers.exe каждый раз, когда вы установите или удалите FNIS, или любой мод, основанный на FNIS.'
- lang: es
text: 'Parece que [Fores New Idles in Skyrim SE](https://www.nexusmods.com/skyrimspecialedition/mods/3038) está instalado. Recuerda correr GenerateFNISforUsers.exe cada vez que instales o desinstales FNIS o un mod basado en FNIS.'
- lang: ko
text: '[Fores New Idles in Skyrim SE](https://www.nexusmods.com/skyrimspecialedition/mods/3038)이 설치된 것같습니다. FNIS나 FNIS 기반 모드를 설치하거나 제거할때마다 GenerateFNISforUsers.exe를 실행하는 것을 잊지마세요.'
- lang: zh_CN
text: '你安装了[FNIS SE](https://www.nexusmods.com/skyrim/mods/11811)。每次安装或卸载基于FNIS的mod时记得运行GenerateFNISforUsers.exe。'
- lang: ja
text: '[Fores New Idles in Skyrim SE](https://www.nexusmods.com/skyrimspecialedition/mods/3038)がインストールされているようです。FNIS本体、またFNISに準拠するModをインストール/アンインストールする際は、必ずGenerateFNISforUsers.exeを実行し直すようにしてください。'
- lang: de
text: 'Sie haben anscheinend [Fores New Idles in Skyrim SE](https://www.nexusmods.com/skyrimspecialedition/mods/3038) installiert. Vergessen Sie nicht, jedes mal GenerateFNISforUsers.exe zu starten, wenn Sie FNIS oder einen auf FNIS basierenden Mod installiert oder deinstalliert haben.'
# Skyrim Script Extender - Required Scripts
- type: warn
condition: 'not file("scripts/skse.pex") and ((file("../SkyrimSE.exe") and file("../skse64_loader.exe")) or (file("../SkyrimVR.exe") and file("../sksevr_loader.exe")))'
content:
- lang: en
text: 'It appears you have installed **Skyrim Script Extender**, but its required scripts seem to be missing. Please ensure you have correctly installed the scripts bundled with the **[SKSE](http://skse.silverlock.org)** installation archive.'
- lang: de
text: 'Es erscheint als hätten Sie **Skyrim Script Extender** installiert, aber die vorausgesetzten Skripte scheinen zu fehlen. Bitte stellen Sie sicher das Sie die Skripte korrekt mit installiert haben die mit dem **[SKSE](http://skse.silverlock.org)** Installationsarchiv enthalten sind.'
# Skyrim SE - Latest Version
- <<: *versionOldX
subs: [ '**Skyrim SE**' ]
condition: 'product_version("../SkyrimSE.exe", "1.5.62.0", <) and file("../SkyrimSE.exe")'
- <<: *versionUpToDateX
subs: [ '**Skyrim SE**' ]
condition: 'product_version("../SkyrimSE.exe", "1.5.62.0", >=) and file("../SkyrimSE.exe")'
# Skyrim VR - Latest Version
- <<: *versionOldX
subs: [ '**Skyrim VR**' ]
condition: 'product_version("../SkyrimVR.exe", "1.4.15.0", <) and file("../SkyrimVR.exe")'
- <<: *versionUpToDateX
subs: [ '**Skyrim VR**' ]
condition: 'product_version("../SkyrimVR.exe", "1.4.15.0", >=) and file("../SkyrimVR.exe")'
# SKSE 64 - Latest Version (0.2.0.12)
- <<: *versionOldX
subs: [ '[SKSE 64](http://skse.silverlock.org)' ]
condition: 'version("../skse64_loader.exe", "0.2.0.12", <) and file("../SkyrimSE.exe") and file("../skse64_loader.exe")'
- <<: *versionUpToDateX
subs: [ '[SKSE 64](http://skse.silverlock.org)' ]
condition: 'version("../skse64_loader.exe", "0.2.0.12", >=) and file("../SkyrimSE.exe") and file("../skse64_loader.exe")'
# SKSE VR - Latest Version (0.2.0.10)
- <<: *versionOldX
subs: [ '[SKSE VR](http://skse.silverlock.org)' ]
condition: 'version("../skseVR_loader.exe", "0.2.0.10", <) and file("../SkyrimVR.exe") and file("../skseVR_loader.exe")'
- <<: *versionUpToDateX
subs: [ '[SKSE VR](http://skse.silverlock.org)' ]
condition: 'version("../skseVR_loader.exe", "0.2.0.10", >=) and file("../SkyrimVR.exe") and file("../skseVR_loader.exe")'
# SKSE 64 - Compatibility
- <<: *versionIncSSE
condition: 'file("../SkyrimSE.exe") and file("../skse(?:vr)?_loader.exe") and not file("../skse64_loader.exe")'
- <<: *versionIncSSE
condition: 'product_version("../SkyrimSE.exe", "1.5.50.0", ==) and version("../skse64_loader.exe", "0.2.0.8", <) and file("../skse64_loader.exe")'
- <<: *versionIncSSE
condition: 'product_version("../SkyrimSE.exe", "1.5.53.0", ==) and version("../skse64_loader.exe", "0.2.0.9", <) and file("../skse64_loader.exe")'
- <<: *versionIncSSE
condition: 'product_version("../SkyrimSE.exe", "1.5.62.0", ==) and version("../skse64_loader.exe", "0.2.0.11", <) and file("../skse64_loader.exe")'
# SKSE VR - Compatibility
- <<: *versionIncSVR
condition: 'file("../SkyrimVR.exe") and file("../skse(?:64)?_loader.exe") and not file("../sksevr_loader.exe")'
- <<: *versionIncSVR
condition: 'product_version("../SkyrimVR.exe", "1.3.64.0", ==) and version("../sksevr_loader.exe", "0.2.0.8", <) and file("../sksevr_loader.exe")'
- <<: *versionIncSVR
condition: 'product_version("../SkyrimVR.exe", "1.4.15.0", ==) and version("../sksevr_loader.exe", "0.2.0.9", <) and file("../sksevr_loader.exe")'
# SKSE Plugins - Requirements
# - <<: *reqSKSE
# subs: [ 'a SKSE Plugin' ]
# condition: 'file("SKSE/Plugins/([^\.]+\.dll)") and not file("../skse(64|vr)_loader.exe")'
- <<: *reqSKSE
subs: [ '[Achievements Mods Enabler](https://www.nexusmods.com/skyrimspecialedition/mods/245)' ]
condition: 'file("SKSE/Plugins/AchievementsModsEnabler.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Better Jumping SE](https://www.nexusmods.com/skyrimspecialedition/mods/18967/)' ]
condition: 'file("SKSE/Plugins/BetterJumpingSE.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[CBP Physics](https://www.nexusmods.com/skyrimspecialedition/mods/13207/)' ]
condition: 'file("SKSE/Plugins/cbp.dll") and not file("../skse(64|vr)_loader.exe")'
- <<: *reqSKSE
subs: [ '[Classic Sprinting Redone](https://www.nexusmods.com/skyrimspecialedition/mods/20166/)' ]
condition: 'file("SKSE/Plugins/ClassicSprinting.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Display Enemy Level](https://www.nexusmods.com/skyrimspecialedition/mods/18533/)' ]
condition: 'file("SKSE/Plugins/DisplayEnemyLevel.dll") and not file("../skse(64|vr)_loader.exe")'
- <<: *reqSKSE
subs: [ '[Encounter Zones Unlocked](https://www.nexusmods.com/skyrimspecialedition/mods/19608/)' ]
condition: 'file("SKSE/Plugins/encounter_zones_unlocked.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[SSE Engine Fixes](https://www.nexusmods.com/skyrimspecialedition/mods/17230/)' ]
condition: 'file("SKSE/Plugins/EngineFixes64.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Enhanced No Poison Dialogue](https://www.nexusmods.com/skyrimspecialedition/mods/19859/)' ]
condition: 'file("SKSE/Plugins/EnhancedNoPoisonDialog.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Enchantment Reload Fix SE](https://www.nexusmods.com/skyrimspecialedition/mods/21055/)' ]
condition: 'file("SKSE/Plugins/EnchantmentReloadFixSE.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Experience](https://www.nexusmods.com/skyrimspecialedition/mods/17751/)' ]
condition: 'file("SKSE/Plugins/Experience.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[SSE Fixes](https://www.nexusmods.com/skyrimspecialedition/mods/10547/)' ]
condition: 'file("SKSE/Plugins/FPSFixPlugin.dll") and not file("../skse(64|vr)_loader.exe")'
- <<: *reqSKSE
subs: [ '[Floating Damage](https://www.nexusmods.com/skyrimspecialedition/mods/14332/)' ]
condition: 'file("SKSE/Plugins/FloatingDamage.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Fuz Ro D-oh - Silent Voice](https://www.nexusmods.com/skyrimspecialedition/mods/15109/)' ]
condition: 'file("SKSE/Plugins/Fuz Ro D''oh.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Havok Fix](https://www.nexusmods.com/skyrimspecialedition/mods/18160/)' ]
condition: 'file("SKSE/Plugins/HavokFix64.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Hook Share SSE](https://www.nexusmods.com/skyrimspecialedition/mods/21373/)' ]
condition: 'file("SKSE/Plugins/HookShareSSE.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[JContainers 64](https://www.nexusmods.com/skyrimspecialedition/mods/16495/)' ]
condition: 'file("SKSE/Plugins/JContainers64.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[JContainers VR](https://www.nexusmods.com/skyrimspecialedition/mods/16495/)' ]
condition: 'file("SKSE/Plugins/JContainersVR.dll") and not file("../sksevr_loader.exe") and not file("../SkyrimSE.exe")'
- <<: *reqSKSE
subs: [ '[ModifyFaceGen Fix](https://www.nexusmods.com/skyrimspecialedition/mods/11669/)' ]
condition: 'file("SKSE/Plugins/mfgfix.dll") and not file("../skse(64|vr)_loader.exe")'
- <<: *reqSKSE
subs: [ '[PapyrusUtil SE](https://www.nexusmods.com/skyrimspecialedition/mods/13048/)' ]
condition: 'file("SKSE/Plugins/PapyrusUtil.dll") and not file("../skse(64|vr)_loader.exe")'
- <<: *reqSKSE
subs: [ '[Quick Loot RE](https://www.nexusmods.com/skyrimspecialedition/mods/21085/)' ]
condition: 'file("SKSE/Plugins/QuickLootRE.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Simple Face to Face Conversation - Updated](https://www.nexusmods.com/skyrimspecialedition/mods/21220/)' ]
condition: 'file("SKSE/Plugins/SimpleFace2FaceKiwami.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Skyrim Skill Uncapper](https://www.nexusmods.com/skyrimspecialedition/mods/8889/)' ]
condition: 'file("SKSE/Plugins/SkyrimUncapper.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[SkyriimSouls - Unpaused Game Menus](https://www.nexusmods.com/skyrimspecialedition/mods/15170/)' ]
condition: 'file("SKSE/Plugins/SkyrimSouls.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[Stay At The System Page - Updated](https://www.nexusmods.com/skyrimspecialedition/mods/19832/)' ]
condition: 'file("SKSE/Plugins/StayAtSystemPageSE.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
- <<: *reqSKSE
subs: [ '[To Your Face - Sensible NPC commenting](https://www.nexusmods.com/skyrimspecialedition/mods/13373/)' ]
condition: 'file("SKSE/Plugins/to_your_face.dll") and not file("../skse64_loader.exe") and not file("../SkyrimVR.exe")'
groups:
- name: &dlcGroup DLC
- name: &ccGroup Creation Club
after: [ *dlcGroup ]
- name: &preEarlyGroup Pre Early (Patches/Add-ons)
after: [ *ccGroup ]
- name: &earlyLoadersGroup Early Loaders
after: [ *preEarlyGroup ]
- name: &floraGroup Flora
description: 'A group for mods that add, remove or improve grass, plants and Trees.'
- name: &landscapeGroup Landscape
description: 'A group for plugins that modify landscapes to fix issues and/or improve visuals.'
after:
- *earlyLoadersGroup
- *floraGroup
- name: &preFixesGroup Pre Fixes (Patches/Add-ons)
after: [ *preEarlyGroup ]
- name: &fixesGroup Fixes & Resources
after: [ *preFixesGroup ]
- name: &preAddonsGroup Pre Add-ons (Patches/Add-ons)
- name: &addonsGroup Add-ons & Expansions
after:
- *preAddonsGroup
- *fixesGroup
- *landscapeGroup
- name: &underridesGroup Underrides
- name: default
after:
- *addonsGroup
- *underridesGroup
- name: &coreGroup Core Mods
after: [ default ]
- name: &lowPriorityGroup Low Priority Overrides
after: [ *coreGroup ]
- name: &highPriorityGroup High Priority Overrides
after: [ *lowPriorityGroup ]
- name: &lateLoadersGroup Late Loaders
after: [ *highPriorityGroup ]
- name: &lvlListsGroup Leveled List Modifiers
after: [ *lateLoadersGroup ]
- name: &dispersedGroup Dispersed
- name: &dynamicPatchGroup Dynamic Patches
after:
- *dispersedGroup
- *lvlListsGroup
- name: &lateChangesGroup Late Fixes & Changes
after: [ *dynamicPatchGroup ]
- name: &dynamicLODGroup Dynamic LOD
after: [ *lateChangesGroup ]
plugins:
- name: 'Update.esm'
group: *dlcGroup
tag:
- C.Regions
- C.Water
- Delev
dirty:
# version: 1.5.62.0 - first Pass of Quick Clean
- <<: *quickClean
crc: 0xFF60257A
util: '[SSEEdit v4.0.0](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
itm: 291
udr: 91
nav: 2
# version: 1.5.62.0 - 2nd Pass of Quick Clean
- <<: *quickClean
crc: 0xA3AEB4CA
util: '[SSEEdit v4.0.0](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
itm: 3
nav: 2
- name: 'Dawnguard.esm'
group: *dlcGroup
tag:
- C.Location
- C.Regions
- Delev
- Invent
- Relev
msg:
# (v1.5.62.0, 0x7BE07C9A) after 2nd Pass of Quick Clean
- <<: *wildEdits
subs: [ '[Dawnguard.esm Wild Edits Cleaning Guide](https://www.afkmods.com/index.php?/topic/4110-manual-cleaning-skyrim-and-skyrim-se-master-files/)' ]
condition: 'checksum("Dawnguard.esm", 7BE07C9A)'
dirty:
# version: 1.5.62.0 - first Pass of Quick Clean
- <<: *quickClean
crc: 0x0252FADA
util: '[SSEEdit v4.0.0](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
itm: 759
udr: 82
nav: 57
# version: 1.5.62.0 - 2nd Pass of Quick Clean
- <<: *quickClean
crc: 0xA0CF8ABF
util: '[SSEEdit v4.0.0](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
itm: 7
nav: 57
- name: 'HearthFires.esm'
group: *dlcGroup
after:
- 'Dawnguard.esm'
tag:
- C.Location
- Invent
dirty:
# version: 1.5.62.0
- <<: *quickClean
crc: 0xC5D99405
util: '[SSEEdit v4.0.0](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
itm: 221
udr: 11
nav: 5
- name: 'Dragonborn.esm'
group: *dlcGroup
after:
- 'Dawnguard.esm'
- 'HearthFires.esm'
tag:
- Invent
- Relev
dirty:
# version: 1.5.62.0
- <<: *quickClean
crc: 0x3AC8FA72
util: '[SSEEdit v4.0.0](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
itm: 81
udr: 8
nav: 1
- name: 'SkyrimVR.esm'
group: *dlcGroup
after:
- 'Dragonborn.esm'
###### Creation Club ######
- name: 'ccBGSSSE002-ExoticArrows.esl'
group: *ccGroup
- name: 'ccBGSSSE003-Zombies.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- name: 'ccBGSSSE004-RuinsEdge.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- name: 'ccBGSSSE006-StendarsHammer.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- name: 'ccBGSSSE007-Chrysamere.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- name: 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- name: 'ccBGSSSE014-SpellPack01.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- name: 'ccBGSSSE019-StaffofSheogorath.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- name: 'ccBGSSSE021-LordsMail.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- name: 'ccMTYSSE001-KnightsoftheNine.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- name: 'ccQDRSSE001-SurvivalMode.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
msg:
- <<: *semiCompatible
subs:
- '[Unlimited Bookshelves](https://www.nexusmods.com/skyrimspecialedition/mods/11052/)'
- 'Unlimited Bookshelves reverts changes made in Update.esm which are required by Survival mode. A patch is recommended to ensure correct functionality.'
condition: 'active("UnlimitedBookshelves.esp")'
- type: warn
condition: 'active("Ordinator - Perks of Skyrim.esp") and not active("unofficial skyrim survival patch.esp")'
content:
- lang: en
text: '"ccqdrsse001-survivalmode.esl" has a [Known bug](https://www.nexusmods.com/skyrimspecialedition/articles/22/) which is incompatible with "Ordinator - Perks of Skyrim.esp". Consider using the [Unofficial Skyrim Survival Patch](https://www.nexusmods.com/skyrimspecialedition/mods/12655/) to fix this bug.'
- lang: de
text: '"ccqdrsse001-survivalmode.esl" hat einen [bekannten Fehler](https://www.nexusmods.com/skyrimspecialedition/articles/22/), welcher es inkompatibel mit "Ordinator - Perks of Skyrim.esp" macht. Der [Unofficial Skyrim Survival Patch](https://www.nexusmods.com/skyrimspecialedition/mods/12655/) behebt diesen Fehler.'
dirty:
- <<: *quickClean
crc: 0x611D6AA2
util: '[SSEEdit v4.0.0](https://www.nexusmods.com/skyrimspecialedition/mods/164)'
itm: 1
clean:
- crc: 0x15AFD14B
util: 'SSEEdit v4.0.0'
- name: 'ccTWBSSE001-PuzzleDungeon.esm'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- name: 'ccEEJSSE001-Hstead.esm'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- name: 'ccQDRSSE002-Firewood.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- name: 'ccBGSSSE018-Shadowrend.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- 'ccQDRSSE002-Firewood.esl'
- name: 'ccBGSSSE035-PetNHound.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- 'ccQDRSSE002-Firewood.esl'
- 'ccBGSSSE018-Shadowrend.esl'
- name: 'ccFSVSSE001-Backpacks.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- 'ccQDRSSE002-Firewood.esl'
- 'ccBGSSSE018-Shadowrend.esl'
- 'ccBGSSSE035-PetNHound.esl'
- name: 'ccEEJSSE002-Tower.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- 'ccQDRSSE002-Firewood.esl'
- 'ccBGSSSE018-Shadowrend.esl'
- 'ccBGSSSE035-PetNHound.esl'
- 'ccFSVSSE001-Backpacks.esl'
- name: 'ccEDHSSE001-NorJewel.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- 'ccQDRSSE002-Firewood.esl'
- 'ccBGSSSE018-Shadowrend.esl'
- 'ccBGSSSE035-PetNHound.esl'
- 'ccFSVSSE001-Backpacks.esl'
- 'ccEEJSSE002-Tower.esl'
- name: 'ccVSVSSE002-Pets.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- 'ccQDRSSE002-Firewood.esl'
- 'ccBGSSSE018-Shadowrend.esl'
- 'ccBGSSSE035-PetNHound.esl'
- 'ccFSVSSE001-Backpacks.esl'
- 'ccEEJSSE002-Tower.esl'
- 'ccEDHSSE001-NorJewel.esl'
- name: 'ccBGSSSE037-Curios.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- 'ccQDRSSE002-Firewood.esl'
- 'ccBGSSSE018-Shadowrend.esl'
- 'ccBGSSSE035-PetNHound.esl'
- 'ccFSVSSE001-Backpacks.esl'
- 'ccEEJSSE002-Tower.esl'
- 'ccEDHSSE001-NorJewel.esl'
- 'ccVSVSSE002-Pets.esl'
- name: 'ccBGSSSE034-MntUni.esl'
group: *ccGroup
after:
- 'ccBGSSSE002-ExoticArrows.esl'
- 'ccBGSSSE003-Zombies.esl'
- 'ccBGSSSE004-RuinsEdge.esl'
- 'ccBGSSSE006-StendarsHammer.esl'
- 'ccBGSSSE007-Chrysamere.esl'
- 'ccBGSSSE010-PetDwarvenArmoredMudcrab.esl'
- 'ccBGSSSE014-SpellPack01.esl'
- 'ccBGSSSE019-StaffofSheogorath.esl'
- 'ccBGSSSE021-LordsMail.esl'
- 'ccMTYSSE001-KnightsoftheNine.esl'
- 'ccQDRSSE001-SurvivalMode.esl'
- 'ccTWBSSE001-PuzzleDungeon.esm'
- 'ccEEJSSE001-Hstead.esm'
- 'ccQDRSSE002-Firewood.esl'
- 'ccBGSSSE018-Shadowrend.esl'
- 'ccBGSSSE035-PetNHound.esl'
- 'ccFSVSSE001-Backpacks.esl'
- 'ccEEJSSE002-Tower.esl'
- 'ccEDHSSE001-NorJewel.esl'
- 'ccVSVSSE002-Pets.esl'
- 'ccBGSSSE037-Curios.esl'
- name: 'ccBGSSSE045-Hasedoki.esl'