Skip to content

Console Usage

Here you'll learn the basics of console usage.

By default, the console key is set to F10. Pressing it once will bring up a small single-line console, and pressing it again opens a bigger one allowing you to see its output. You'll find all the console output in the log file as well if needed. The console key can be changed at the bottom of DefaultInput.ini in DeadByDaylight/Config.

In the console, you'll see text in 3 different colors. Green means it is a console variable (CVar), grey means it's a readonly CVar and purple means that it is a command / function.

To see the value of a CVar, simply type it's name and hit Enter in the console.

To set a value of a CVar, type it's name followed by a spacebar and the new value.

You can not set the value of readonly CVars with the console. If you want to set a readonly variable, it has to be done before launch in one of the configs. You can use the [SystemSettings] section in /DeadByDaylight/Config/DefaultEngine.ini or you can modify the [Windows DeviceProfile] section in /DeadByDaylight/Config/DefaultDeviceProfiles.ini. Both of those achieve the same result, so it doesn't matter which one you use.

To learn what a CVar does or affects, you can type in its name followed by a spacebar and a question mark.

Console commands can require from zero to multiple arguments. The arguments specify their type as well as their name.

Argument value types:
int32 = basic whole number
float = number with decimals
bool = either TRUE or FALSE (can be typed in as 1 or 0)
FString = text
FName = text

Note

Many of the CVars / commands only work if the host of the match does them. Sometimes to get it working properly everyone else has to do it too.

Warning

While running the game with steam, do NOT execute commands such as online.resetachievements as this will CLEAR ALL DBD ACHIEVEMENTS FROM YOUR PROFILE AND RESET STATS. There are other commands similar to this, so just refrain from trying anything that you suspect might have permanent effects.