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
In addition to dowloading Left 4 Bots or any other smart AI mod, you must got to your game files and find "addonconfig.cfg"
The location is:
(Your Steam directory)\steamapps\common\Left 4 Dead 2\left4dead2\cfg\addonconfig.cfg
open it with the notepad and set all gamemodes value to "0", save the changes.
This will enable the usage of mods and therefore fix the issue.
Today I made some interesting modification to your idea of mod. I modified main gamesettings.res
where we go after choosing Single Player, modified it with tweaks for multiplayer modes: removed Difficulties, added ability to start as Infected, with some issues, but in total it could be a great addition to this mod.
"tooltiptext" "#L4D360UI_MainMenu_Versus_Tip"
in theory, is not a good choice for Mutation Tips in the menu, because "8 player" mutations can be Scavenge too.
Because of that, for any game mode with SP, even mutations, the game use:
"tooltiptext" "#L4D360UI_MainMenu_PlaySolo_Tip"
For a simple description of what a Single Player is. You can check it from another Mutation type games there: mainmenu_flyout_challenge4.res
And I guess there is no special tips for Versus Survival, Realism Versus in the game where you tried to use it in code.
So, I think the best way is to use PlaySolo_Tip for this, as I said earlier.
from:
"labelText" "Single Player"
"tooltiptext" "#L4D360UI_MainMenu_Versus_Tip"
"disabled_tooltiptext" "#L4D360UI_MainMenu_Versus_Tip_Disabled"
to:
"labelText" "#L4D360UI_Mode_offline_SP"
"tooltiptext" "#L4D360UI_MainMenu_PlaySolo_Tip"
"disabled_tooltiptext" ""
And yeah, for another modes and all Versus mutations add that to:
- realismversusflyout.res
- versussurvivalflyout.res
- mainmenu_flyout_challenge8.res
Answer: No!