Fallout4のCTDの原因を突き止める

はじめに

Fallout4 で mod を入れていると CTD が起きることがあるため、CTD 対策 Mod Buffout4を入れ、原因を突き止める。

目次

1.必要なもの

必須項目に
・本体(1.10.162.0 以上)
F4SE
Address Library for F4SE Plugins
xSE PluginPreloader F4
TBB Redistributables
Microsoft Visual C++ Redistributable for Visual Studio 2019
とあるので導入していく。
導入されている mod によっては動かないこともあるので確認してほしい

導入成功

無事導入に成功した、普通に遊んでいると/Document/My Games/Fallout4/F4SE下にcrash-logと生成されるので中身を読んでみる。

crash-log
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
Fallout 4 v1.10.163
Buffout 4 v1.20.3

Unhandled exception "EXCEPTION_ACCESS_VIOLATION" at 0x7FF710CC74CD Fallout4.exe+1CD74CD

SETTINGS:
[Compatibility]
F4EE: false
[Fixes]
ActorIsHostileToActor: true
CellInit: true
EncounterZoneReset: true
GreyMovies: true
MovementPlanner: true
PackageAllocateLocation: true
SafeExit: true
UnalignedLoad: true
UtilityShader: true
[Patches]
Achievements: true
BSTextureStreamerLocalHeap: true
HavokMemorySystem: true
MaxStdIO: -1
MemoryManager: true
MemoryManagerDebug: false
ScaleformAllocator: true
SmallBlockAllocator: true
WorkshopMenu: true
[Warnings]
CreateTexture2D: true
ImageSpaceAdapter: true

SYSTEM SPECS:
OS: Microsoft Windows 10 Pro v10.0.19041
CPU: GenuineIntel Intel(R) Core(TM) i7-3770K CPU @ 3.50GHz
GPU #1: Nvidia GP107 [GeForce GTX 1050 Ti]
GPU #2: Intel Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller
GPU #3: Microsoft Microsoft Basic Render Driver
PHYSICAL MEMORY: 12.07 GB/14.95 GB

PROBABLE CALL STACK:
[0] 0x7FF710CC74CD Fallout4.exe+1CD74CD -> 83066+0x2D
[1] 0x7FF710CC60E5 Fallout4.exe+1CD60E5 -> 503292+0x45
[2] 0x7FF70F3B7BCA Fallout4.exe+03C7BCA -> 310686+0x3A
[3] 0x7FF710B40F26 Fallout4.exe+1B50F26 -> 329005+0xC6
[4] 0x7FF710B41432 Fallout4.exe+1B51432 -> 194800+0x202
[5] 0x7FF710B43F67 Fallout4.exe+1B53F67 -> 1492866+0x67
[6] 0x7FF710B0CFED Fallout4.exe+1B1CFED -> 1079791+0x3D
[7] 0x7FFF3E587034 KERNEL32.DLL+0017034
[8] 0x7FFF3FF3D241 ntdll.dll+004D241

とあるが、4 行目のUnhandled exception "EXCEPTION_ACCESS_VIOLATION" at 0x7FF710CC74CD Fallout4.exe+1CD74CDや 41 行目のPROBABLE CALL STACK:以下が原因となっているらしい。
この場合、1CD74CDが真っ先に引っかかるのでロードオーダーを見てみる。
1Cがロードオーダーの番号だ。
すると以外にも装備 mod が出てきた。
抜いてみると、確かに CTD が減っていて、突然ゲームが落ちてしまうなどというストレスが減った。

おわりに

このほかにも CTD については様々な原因があるが、mod の依存によって CTD することは少なくとも減るため、参考にしてほしい。
他にも何か情報があれば、コメント欄にて是非。

コメント