Installera Steam
logga in
|
språk
简体中文 (förenklad kinesiska)
繁體中文 (traditionell kinesiska)
日本語 (japanska)
한국어 (koreanska)
ไทย (thailändska)
Български (bulgariska)
Čeština (tjeckiska)
Dansk (danska)
Deutsch (tyska)
English (engelska)
Español – España (spanska – Spanien)
Español – Latinoamérica (spanska – Latinamerika)
Ελληνικά (grekiska)
Français (franska)
Italiano (italienska)
Bahasa Indonesia (indonesiska)
Magyar (ungerska)
Nederlands (nederländska)
Norsk (norska)
Polski (polska)
Português (portugisiska – Portugal)
Português – Brasil (portugisiska – Brasilien)
Română (rumänska)
Русский (ryska)
Suomi (finska)
Türkçe (turkiska)
Tiếng Việt (vietnamesiska)
Українська (ukrainska)
Rapportera problem med översättningen









The error was not that I launched it without the Medic, but that your TF2 MVM Reanimator mod tried to access the STRINGS.CHARACTERS.MEDIC strings before the "The Medic" mod loaded. Because of this, the server crashed.
I fixed the code by adding a check:
if GLOBAL.STRINGS.CHARACTERS.MEDIC then
GLOBAL.STRINGS.CHARACTERS.MEDIC.DESCRIBE.MEDIREANIMATOR = "You get used to the voices."
end
After that, everything worked. Perhaps it is worth adding this check to the mod itself - then it will be compatible with other builds.
Thanks for the wonderful mod, it makes the game even more interesting!
1. the config is located D:\SteamLibrary\steamapps\workshop\content\322330\1391962790\scripts
2. it was necessary to adjust the value in strings.lua:
local STRINGS = GLOBAL.STRINGS
... "1000 character limit for steam" ...
GLOBAL.STRINGS.CHARACTERS.WATHGRITHR.DESCRIBE.MEDIREANIMATOR = "Back in the fight!"
GLOBAL.STRINGS.CHARACTERS.WEBBER.DESCRIBE.MEDIREANIMATOR = "Keeps us alive."
-- безопасная версия для Медика
if GLOBAL.STRINGS.CHARACTERS.MEDIC then
GLOBAL.STRINGS.CHARACTERS.MEDIC.DESCRIBE.MEDIREANIMATOR = "You get used to the voices."
end
AddPrefabPostInit("forest", function(inst)
if GLOBAL.STRINGS.CHARACTERS.DEMOMAN then
GLOBAL.STRINGS.CHARACTERS.DEMOMAN.DESCRIBE.MEDIREANIMATOR =
... "1000 character limit for steam"
_____________
Thank you for the wonderful mod!