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
Updated over here, at least temporarily>> https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=3156274173
This is the only error being thrown.
'IDisplayNameEvent' could not be found (are you missing a using directive or an assembly reference?)
should be easy to fix if we find out how to update just that tidbit i reckon
Lets keep this up and we can maintain these ourselves before long
+1
Open all 16 in notepad++ or code editor. Find and replace in all open documents the following.
HandleEvent(IDisplayNameEvent E)
to
HandleEvent(GetDisplayNameEvent E)
and
|| ID == GetShortDisplayNameEvent.ID;
to
;
- Just open the mod folder (<your steam installation>steamapps\workshop\content\333640\2437621135)
- Open every .cs file in a code editor (Notepad will get you there most simply)
- In each file you'll only have to modify two lines:
- Replace HandleEvent(IDisplayNameEvent) by HandleEvent(GetDisplayNameEvent)
- Remove || ID == GetShortDisplayNameEvent.ID (not the entire line, just this specific text, and keep the semicolon at the end)
Then you'll be set! Most released mod errors are due to CoQ being in EA and changing some parts of their source code to make it more practical/less confusing/more performant, so they're not too bad to fix :)