模组制作

本页面讲述的内容长期有效
(重定向自改派教程

Template:需要翻译

模组制作(Modding)允许改变游戏的要素或者添加新特性。
Certain things are hardcoded, i.e. not available for modding, such as changing mapmodes and diplomatic actions or adding new hotkeys.

Important: the majority of mods will change the checksum, not allowing the player to get achievements. Loading an ironman game with such a mod will irreversably corrupt the save file, so be careful.
See "checksum_manifest.txt" in the game folder for the list of checksummed folders and files. The only safe mods are the ones that replace textures, fonts or music.

提示和指南

  • 创建一个模组而非直接修改游戏文件,它们将在任何游戏更新时被覆盖(原文如此,说人话就是模组文件夹里的内容会覆盖原版内容)
  • 使用一个好的文本编辑器来显示语法高亮,自动补全及跨文件搜索。以下程序是免费的:
  1. Visual Studio Code. VSCode里有一个粉丝制作的CWTools扩展, 该扩展标识了Paradox代码, 它会提示你补全括号并在提示中显示作用域和效果信息。在VSCode左侧扩展面板中搜索CWTools并下载。 (注: 如果该扩展与游戏发布版本不匹配,会有很多误报错)
  2. Sublime Text. Imperator developers have released Sublime Tools with syntax highlighting and function search. In addition, to be able to toggle comments, you need to add this file to the same "User" folder.
  3. Notepad++. Choose Perl as your language, as it will provide good highlighting and allow to fold blocks of code and comments. To set it as default, go to Settings, Styler Configurator, find Perl in the list on the left and add "gui txt" (without quotes) to the "User ext." field at the bottom.
  4. Atom. Doesn't include UTF-8-BOM encoding needed for localization files. Choose Perl 6 as your language for better results. To set it as default, go to File, Config, find "core:" and add below it: "customFileTypes: "source.perl6": [ "txt" "gui"]", like in this example.
  • Indent properly, so that opening and closing brackets are on the same level. Proper formatting will allow you to fold blocks of code, help spot any mistakes and make it easier to read.
  • 行开头加#注释,提醒后来的人这些内容如何工作,方便导航,注释掉不要的代码而非直接删除。
  • txt文件使用UTF-8编码。
  • 本地化文件使用UTF-8-BOM编码。(译者注:VSCode右下角编码那边点一下可以直接调,不需要记事本打开再保存为特点编码。)
  • Start the game with the "-debug_mode" and "-develop" options to use the console, dev tools and "reload" commands. See here how to add launch options.
  • Use the error.log to catch any bugs. It's located next to the mod folder, in Documents/Paradox Interactive/Imperator/logs.
  • Use "script_docs" and "DumpDataTypes" console commands in the game to generate other logs with event effects, triggers and scopes.
  • 模组上传steam创意工坊之后,移除本地模组,否则不生效。
  • Clearly communicate to users whether your mod is ironman-friendly.
  • 备份你的作品。手动备份或者使用譬如Git的版本控制系统都可以。也可以考虑使用GitHub以供团队写作开发。(译者注:国内访问GitHub困难,并且GitHub项目有一个G的空间限制,如果美术素材多的话很容易就超了。这里有上中下三策,上策是自己部署一个Git平台,gitlab太重了,这里建议使用轻量版的git托管平台onedev,也是国人开发的开源项目,支持docker部署;中策可以使用阿里云的代码平台codeup,免费的项目大小可以有两个G,稍微大一些;下策是使用魔法访问github。)
  • 使用合适的合并工具 (譬如 WinMerge) 来合并不同文件夹并为新版本更新修改后的文件。

创建你的第一个 mod

1. Start the game launcher, go to All Installed Mods, Upload Mod, Create a Mod and fill in all the fields, including tags. Clicking Create will create a new folder and a .mod file in Documents/Paradox Interactive/Imperator/mod.

  • "Version" refers to the game version this mod is made for.
  • Folder name may include spaces, although it is common to use lower_spaces instead.

2. Copy the game files you wish to mod to your newly created mod folder or create your own files, while using the same folder structure.

  • For example, if you want to mod the topbar, your should have the following: my_topbar_mod/gui/ingame_topbar.gui.
  • If you want to add events to this mod, you would have my_topbar_mod/events/topbar_events.txt.

3. After modifying the files, enable the mod in the launcher and test it in the game.

  • If modding UI, you can use "reload gui" command to see new changes without restarting the game. (This requires both -develop and -debug_mode launch options. See above how to enable them.)
  • Remember to check the error.log for any errors.

4. To add a thumbnail for a mod, name your image "thumbnail.png" and put it inside your mod folder. Make it at least 200x200 pixels, so Steam doesn't add black borders around it.
5. To upload a mod, open the game launcher, go to All Installed Mods, Upload Mod. Select your mod from the dropdown menu, select the platform to upload it to and click Upload. The description isn't necessary.

  • You will find your mod in your Steam profile, Workshop Items. New mods are uploaded in private mode, so change their visibility to Public to actually publish them.
  • Remember, remove your local mod folder if you want to test the Steam version of it, otherwise they will conflict with each other. You may simply move it, along with the .mod file, to another folder and move it back whenever you want to update your mod.

6. To update a mod, simply open the launcher and upload it again.
(When you upload a mod for the first time, the launcher creates a descriptor.mod file in your mod folder which links to your Steam mod. This is what's used for updating, so don't remove this file.)

游戏数据

  • Effects - 用于动态地影响游戏。
  • Triggers - 用于执行命令/事件/决议/等等。只有当特定条件为真时。
  • Scopes - 用于明确规定命令和条件的目标。
  • Modifier list - 影响游戏方方面面的脚本修正。
  • Defines - 用于游戏在几乎所有方面的全局值。
  • Country list - 原版游戏中全部国家的基本信息,包括国家代码。
  • Console commands - 关于如何使用游戏控制台命令的指南。
  • 游戏预置脚本
  • 游戏预置修正
  • 总表

指南

排除故障

Mod 在上传到 Steam 之后不工作

Check whether other mods work for you. If not and your Documents folder is not in the default place, the launcher can't find it.

You need to edit "launcher-settings.json":

  1. open the game directory (Right-click on Steam, Properties, Local Files, Browse Local Files)
  2. in the 'launcher' folder open launcher-settings.json with a notepad
  3. change gameDataPath to "%USER_DOCUMENTS%/Paradox Interactive/Imperator"

If this still doesn't help, try using the whole path, like "F:/Documents/Paradox Interactive/Imperator". Make sure you use forward slashes / and double quotes ".

在 .mod 文件中的路径变成绝对路径

The new launcher overwrites the "mod/modname" path to the absolute one, like "C:/Users/User/Documents.../mod/modname".

While this is normal, for some modders it can prevent the game from loading the mod. To solve it:

  1. Change the path to relative again.
  2. Right-click the file -> Properties -> check Read-only.

This will prevent the launcher from editing it. Remember to disable read-only when uploading, since the launcher needs access to the file.

工具与实用程序

  • Clausewitz Maya Exporter - 此工具允许更简便地创建3D模型(单位)用于较新的克劳塞维茨引擎游戏中的模组。
  • VS Code - 强大的、可控制的、免费开源编辑器,来自微软。(在VS Code扩展中心搜索安装中文语言包)
  • CWTools - 一个用于VS Code的扩展,提供拼写验证、代码补全、语法高亮以及更多功能给Paradox脚本文件。(在VS Code扩展中心搜索安装CWTools)
  • Notepad++ Syntax Highlighter - Notepad++语法高亮规则定义。(已过时)
  • province setup converter 1.3.x -> 1.4 - 一个用来转换旧的省份数据信息,从 Imperator 1.3.x 或者使用 province_setup.csv 文件到文本格式给 Imperator 1.4

社区

杂项

参考资料