- UID
- 381961
- 主题
- 106
- 阅读权限
- 80
- 帖子
- 7475
- 精华
- 56
- 积分
- 18262
- 金钱
- 21294
- 荣誉
- 332
- 人气
- 20
- 在线时间
- 1208 小时
- 评议
- 0
- 帖子
- 7475
- 精华
- 56
- 积分
- 18262
- 金钱
- 21294
- 荣誉
- 332
- 人气
- 20
- 评议
- 0
|
帝国时代3-快捷键修改
该修改方法支持联机,创建并打开我的文档\My Games\Age of Empires 3\Startup目录下的user.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。
或者创建并打开我的文档\My Games\Age of Empires 3\Startup目录下的user.cfg,添加一行nointrocinematics。
[ 本帖最后由 Sean_CGOL 于 2007-9-19 18:45 编辑 ] |
|