Non-code mod settings: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(fixed wikilink)
(a few more)
Line 3: Line 3:
All file paths are relative to the mod directory.
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 15: Line 16:
|-
|-
| <code>scripts/chapterbackgrounds.txt</code> || List the chapter background images (used until background map is loaded). See [[Adding chapters to your mod]]
| <code>scripts/chapterbackgrounds.txt</code> || List the chapter background images (used until background map is loaded). See [[Adding chapters to your mod]]
|}
''Fewer mods will change these files''
{|
! File !! What it lets you do
|-
| <code>scripts\kb_act.lst</code> || Set the contents of the Keyboard tab of the Oprions menu.
|-
| <code>scripts\kb_def.lst</code> || Change default key bindings
|-
|}
''These files probably have no reason to be changed''
{|
! File !! What it does
|-
| <code>scripts\kb_keys.lst</code> || Gives the names of keyboard keys and other inputs (used in the Keyboard tab of the Options menu
|}
|}


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

Revision as of 20:25, 23 October 2005

Here are some of the files that can be modified for a mod, but which do not require any programming. For programming documentation, see Category:Programming.

All file paths are relative to the mod directory.

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
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

Fewer mods will change these files

File What it lets you do
scripts\kb_act.lst Set the contents of the Keyboard tab of the Oprions menu.
scripts\kb_def.lst Change default key bindings

These files probably have no reason to be changed

File What it does
scripts\kb_keys.lst Gives the names of keyboard keys and other inputs (used in the Keyboard tab of the Options menu