Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Probably mean the game was unable to read the file and reverted it to its default state. usually means the file is broken (bad formatting in the json config(
You can use scroll wheel + shift to change the value faster however
Not a official one but the community made various resources to help others like this playlist
https://www.youtube.com/playlist?list=PLwug9MY6GVXwXOqKLWNN51TYl2vYPE9i1
Function: 'OnUpdate'
Stack trace:
scripts/3_Game/dayzgame.c:2937 Function OnUpdate
JM/CF/Scripts/3_Game/communityframework\game\dayzgame.c:46 Function OnUpdate
override void OnUpdate(bool doSim, float timeslice)
{
super.OnUpdate(doSim, timeslice);
if (!GetGame().IsDedicatedServer())
{
foreach (auto input : CF_InputBindings.s_All)
{
input.Update(timeslice);
}
}
}
Fix
override void OnUpdate(bool doSim, float timeslice)
{
if (!GetGame().IsDedicatedServer() && CF_InputBindings.s_All)
{
foreach (auto input : CF_InputBindings.s_All)
{
if (input)
{
input.Update(timeslice);
}
}
}
super.OnUpdate(doSim, timeslice);
}