Ru/Non-code mod settings: Difference between revisions

From Valve Developer Community
< Ru
Jump to navigation Jump to search
m (obsolete language category)
 
(11 intermediate revisions by 6 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. Most mods will want to change these.
{{lang|title=Настройка модификации без кодa|Non-code mod settings}}
 
Вот некоторые из файлов, которые могут быть изменены для модификации игры, при этом не требующие программирования. В большинстве модификаций изменяются эти файлы.


{| class=standard-table
{| class=standard-table
! File !! What it lets you do
! Наименование файла !! Для чего предназначен
|-
|-
| <code>[[gameinfo.txt]]</code> || Set mod title, icon, and other settings
| <code>{{L|gameinfo.txt}}</code> || Устанавливает название, иконку и другие параметры
|-
|-
| <code>[[maplist.txt]]</code> || List maps used by the mod
| <code>{{L|maplist.txt}}</code> || Список карт используемых в модификации
|-
|-
| <code>[[Modifying_Source_GameUI|Resource/SourceScheme.res]]</code>  || Change GUI appearance
| <code>{{L|Modifying_Source_GameUI|Resource/SourceScheme.res}}</code>  || Изменение вида GUI  
|-
|-
| <code>resource/gamemenu.res</code> || Change the UI menu buttons. See [[Manipulating the game menu items]]
| <code>resource/gamemenu.res</code> || Изменение кнопок меню пользовательского интерфейса. См. {{L|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> || Определят [[VGUI_Documentation#Localization|перевод]] некоторых текстовых строк. Смотреть {{L|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]]
| <code>scripts/ChapterBackgrounds.txt</code> || Список бекграндов для глав (Используется пока грузиться бекграунд). Смотреть {{L|Adding chapters to your mod}}
|-
|-
| <code>[[Customizing Options: Keyboard#scripts/kb_act.lst|scripts/kb_act.lst]]</code> || Set the contents of the Keyboard tab of the Options menu.
| <code>[[Customizing Options: Keyboard#scripts/kb_act.lst|scripts/kb_act.lst]]</code> || Устанавливает содержимое вкладки Клавиатура меню "Настройки".
|-
|-
| <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> || Устанавливает раскладки клавиатуры по умолчанию
|-
|-
| <code>[[Adding convars to the multiplayer advanced tab|cfg/user_default.scr]]</code> || Add [[convar]]s to the multiplayer advanced tab.
| <code>{{L|Adding convars to the multiplayer advanced tab|cfg/user_default.scr}}</code> || Добавляет {{L|convar}}s для дополнительной вкладки Мультиплеер.
|-
|-
| <code>[[Server Settings GUI|Server Settings GUI]]</code> || Edit the local and dedicated server settings pages.
| <code>{{L|Server Settings GUI}}</code> || Изменяет настройки страниц выделенного и локального сервера.
|}
|}


{{note|All file paths are relative to the mod directory.}}
{{note|Все пути к МОДу должны быть относительны.}}


== See also ==
== Смотри так же ==
* [[:Category:Programming]] - programming documentation.
* {{LCategory|Programming}} - Программирование МОДа.


[[Category:Modding]]
{{ACategory|Modding}}

Latest revision as of 02:53, 22 August 2024

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

Вот некоторые из файлов, которые могут быть изменены для модификации игры, при этом не требующие программирования. В большинстве модификаций изменяются эти файлы.

Наименование файла Для чего предназначен
gameinfo.txt(en) Устанавливает название, иконку и другие параметры
maplist.txt(en) Список карт используемых в модификации
Resource/SourceScheme.res(en) Изменение вида GUI
resource/gamemenu.res Изменение кнопок меню пользовательского интерфейса. См. Manipulating the game menu items(en)
scripts/titles.txt Определят перевод некоторых текстовых строк. Смотреть Adding chapters to your mod(en)
scripts/ChapterBackgrounds.txt Список бекграндов для глав (Используется пока грузиться бекграунд). Смотреть Adding chapters to your mod(en)
scripts/kb_act.lst Устанавливает содержимое вкладки Клавиатура меню "Настройки".
cfg/config_default.cfg Устанавливает раскладки клавиатуры по умолчанию
cfg/user_default.scr(en) Добавляет convar(en)s для дополнительной вкладки Мультиплеер.
Server Settings GUI(en) Изменяет настройки страниц выделенного и локального сервера.
Note.pngПримечание:Все пути к МОДу должны быть относительны.

Смотри так же