Non-code mod settings: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Added "Server Settings GUI")
mNo edit summary
 
(26 intermediate revisions by 15 users not shown)
Line 1: Line 1:
Here are some of the files that can be modified for a mod, but which do not require any programming.
{{lang|Non-code mod settings}}
Here are some of the files that can be modified for a mod, but which do not require any [[:Category:Programming|programming]]. Most mods will want to change these.


For programming documentation, see [[:Category:Programming]].
{| class=standard-table
 
All file paths are relative to the mod directory.
 
''Most mods will want to change these''
{|
! File !! What it lets you do  
! File !! What it lets you do  
|-
|-
Line 13: Line 9:
| <code>[[maplist.txt]]</code> || List maps used by the mod
| <code>[[maplist.txt]]</code> || List maps used by the mod
|-
|-
| <code>[[Modifying_Source_GameUI|Resource\SourceScheme.res]]</code>  || Change GUI appearance  
| <code>[[Modifying_Source_GameUI|Resource/SourceScheme.res]]</code>  || Change GUI appearance  
|-
| <code>resource/[[GameMenu|gamemenu.res]]</code> || Change the UI menu buttons. See [[Manipulating the game menu items]]
|-
|-
| <code>scripts/titles.txt</code> || Set some [[VGUI_Documentation#Localization|localized strings]]. See [[Adding chapters to your mod]]
| <code>scripts/titles.txt</code> || Set some [[VGUI_Documentation#Localization|localized strings]]. See [[Adding chapters to your mod]]
Line 22: Line 20:
|-
|-
| <code>[[Customizing Options: Keyboard#cfg/config_default.cfg|cfg/config_default.cfg]]</code> || Set the default keyboard layout
| <code>[[Customizing Options: Keyboard#cfg/config_default.cfg|cfg/config_default.cfg]]</code> || Set the default keyboard layout
|-
| <code>[[Adding convars to the multiplayer advanced tab|cfg/user_default.scr]]</code> || Add [[convar]]s to the multiplayer advanced tab.
|-
|-
| <code>[[Server Settings GUI|Server Settings GUI]]</code> || Edit the local and dedicated server settings pages.
| <code>[[Server Settings GUI|Server Settings GUI]]</code> || Edit the local and dedicated server settings pages.
|}
|}
{{note|All file paths are relative to the mod directory.}}


[[Category:Modding]]
[[Category:Modding]]

Latest revision as of 19:05, 8 April 2023

English (en)Русский (ru)中文 (zh)Translate (Translate)

Here are some of the files that can be modified for a mod, but which do not require any programming. Most mods will want to change these.

File What it lets you do
gameinfo.txt Set mod title, icon, and other settings
maplist.txt List maps used by the mod
Resource/SourceScheme.res Change GUI appearance
resource/gamemenu.res Change the UI menu buttons. See Manipulating the game menu items
scripts/titles.txt Set some localized strings. See Adding chapters to your mod
scripts/ChapterBackgrounds.txt List the chapter background images (used until background map is loaded). See Adding chapters to your mod
scripts/kb_act.lst Set the contents of the Keyboard tab of the Options menu.
cfg/config_default.cfg Set the default keyboard layout
cfg/user_default.scr Add convars to the multiplayer advanced tab.
Server Settings GUI Edit the local and dedicated server settings pages.
Note.pngNote:All file paths are relative to the mod directory.