- 鐵幣
- 1797 元
- 文章
- 1179 篇
- 聲望
- 1234 枚
- 上次登入
- 18-6-1
- 精華
- 2
- 註冊時間
- 05-3-11
- UID
- 132018
|
回覆: 有大大可以教我 帝國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。 |
|