帝国时代3文件修改

注意:所有的修改仅限于单人游戏,多人联机时候game.con是需要验证的,双方文件内容不匹配的话无法同时进行游戏……鄙视ES啊
打开Startup目录下的game.con
1)增加建筑物旋转功能,按住SHIFT后移动鼠标滚轮
在文件末端加入以下内容:
map ("shift-mousez", "building", "uiWheelRotatePlacedUnit")
2)增加守卫(Guard)快捷键为G
搜索// guard
在该部分末尾加入以下内容:
map ("g", "game", "editMode(\"Guard\")")
3)增加巡逻(patrol)快捷键为Z
搜索// patrol
在该部分末尾加入以下内容:
map ("z", "game", "editMode(\"Patrol\")")
4)增加运输船释放搭乘单位的快捷键为L
搜索// eject at
在该部分末尾加入以下内容:
map ("l", "game", "editMode(\"EjectAt\")")
5)修改阵营显示(即己方为蓝色,盟友为黄色,)的切换快捷键为Alt+G
搜索// World Game UI
将以下2行内容
map ("alt-f", "game", "renderFriendOrFoe")
map ("alt-f", "postgame", "renderFriendOrFoe")
改为
map ("alt-g", "game", "renderFriendOrFoe")
map ("alt-g", "postgame", "renderFriendOrFoe")
6)增加在当前屏幕发出闪烁信号的快捷键为Alt+F
搜索// flare
在该部分末尾加入以下内容:
map ("alt-f", "game", "uiFlareAtPointer editMode(\"none\")")
7)增加建筑物释放驻扎单位的快捷键为N
搜索// garrison mappings
在该部分末尾加入以下内容:
map ("n", "game", "uiEjectGarrisonedUnits")
8)增加城镇中心敲响警钟的快捷键为B
搜索// garrison mappings
在该部分末尾加入以下内容:
map ("b", "TownCenterAccel", "unitTownBell")
PS:启动时跳过开头动画的办法,在帝国3快捷方式的命令行中增加 +noIntroCinematics。

相关文档
最新文档