Authors: JeNoVaViRuS
Before you try to start with any tutorials on modding you should read this.
Before you can even use tools to modify content you need to unpack every FromSoftware game (except Dark Souls Remastered because it's already unpacked).
No matter which tools you use to modify content it will only take effect if you:
It is recommended to use ModEngine but older titles like DS1 are not supported. You can only use the second option.
ModEngine automatically forces the game to be offline. So if your game is not supported (or you want to be extra safe which you should) you need to block outgoing traffic in the firewall (this is for Windows 10+ only, I expect linux users to be able to do this on their own):
netsh advfirewall firewall add rule name="BlockDSRemastered" dir=out program="C:\Program Files (x86)\Steam\steamapps\common\DARK SOULS REMASTERED\DarkSoulsRemastered.exe" profile=any action=block
You can now edit the path to fit but this is the default path for Dark Souls Remastered.
You can't play online anymore at this point. The game will be force to offline mode.
If you want to remove the rule and play normally again then instead enter this in the cmd:
netsh advfirewall firewall delete rule name="BlockDSRemastered" dir=out
If you have existing save files then you need to make a backup of them. Never, ever, go online with a save that was used with a mod.
After you have played the game with a mod you need to delete or rename your current save files and restore your old save files.
Here are the default save game folders:
If you can't see the folder “AppData” you need to select “View” in Windows Explorer and enable showing hidden items.
You should keep a backup of your game so if you mess up an original file you can simply copy it over from your backup.
Sometimes you will read that you need to “unpack” or “repack” files. This is referring to the tool “WitchyBND” which unpacks the default archive files of FromSoftware games to a new folder. You can then enter the folder and edit specific files. After editing it you need to repack the folder so it gets converted to a file.
How to do that:
Adding files:
All enemies and NPCs have an AI. The .luabnd files are in the “script” folder.
Characters are all entities (enemies and NPCs) with an AI. The player is c0000.
The character files are in the “Chr” folder and contain the .flver model, animations and textures (need to be unpacked as well).
The players animation file “c0000.anibnd.dcx” can be opened with “DSAnimStudio” and contains all animations from tae 00 (or 000 in later titles).“TAE” stands for time action event and is an animation + events happening at a specific point during the animation for X amount of time. This can be one frame or several seconds.
Additional files contain taes for other ranges e.g. “c0000_a1x.anibnd.dcx” contains the taes for 10.
Other files e.g. “c2040.anibnd.dcx” contain the animations for enemies.
Body, weapon and armor files are in the “parts” folder. The ID is used to select the model from the folder (referenced in the params of the games with the field “equipModelId”).
All files have a prefix and indicate the type of model:
All body files have “f” (female) or “m” (male) in the name to indicate the body type or “a” for all.
The suffix “_l” stands for the low poly and texture version (used for far distances).
In DS1 the player model gets assembled with armor parts (include body parts) + configured face + bald head. This means equipping an armor piece will always replace the body part. Masks are used to avoid clipping between armor parts. The suffix “_m” of armor parts indicates the hollowed version.
In DS3+ the player model gets assembled with armor parts + configured face + naked body parts. Masks on armor parts are used to make the body part disappear if needed.
The HUD elements and icons are in the “menu” folder. The file “01_common.tpf.dcx” holds the mapped out low resolution icons on sheets.
The “knowledge” folder holds single high resolution icons in DS3. In ER they are divided into “hi” (high“) and “low” resolution folders and you need to unpack the “00_solo.tpfbdt” file first to see them.
The “mapimage” folder holds the bonfire warp images in Dark Souls 3.
The language files are in the “msg” folder. Text can be most easily edited with Smithbox.
If someone uses those words they are referring to the files in the “event” folder which holds the “common event” script that is active the whole time and map scripts which are only running when the player is inside the specific map.
The player always has the ID 10000 which is used in the scripts.
Events are typically edited with DarkScript 3 (or esdlang tool for Dark Souls 2).
Those are visual effects like magic, bonfires, sword sparks, walking on certain areas effects like mud etc. The sounds that are heard at the same time belong to them.
The files are packed within the “sfx” folder.
SFX is the term for visual effects in FromSoftware games.
VFX is normally used for visual effects in modern games but in FromSoftware games it refers to the SpEffectVfxParam category.
FFX is the file extension for unpacked SFX files in DS1.
FXR is the file extension for unpacked SFX files in DS3, Sekiro, ER, and AC6.
Anything from sound effects (SE) to voice lines to background music (BGM).
These files are typically found in the “sound” folder. Dark Souls Sound Inserter (DSSI), FMOD Designer, and RewWise (for Elden Ring) are used to modify sound in the majority of cases.
Talk scripts are used by NPCs or some objects (using invisible NPCs). They start working when the player enters a 5m radius around them and are map based only.
They are in the “script/talk” folder and can be edited with “ESDStudio” in python syntax.