- UID
- 1050741
- 主题
- 15
- 阅读权限
- 50
- 帖子
- 2293
- 精华
- 0
- 积分
- 1369
- 金钱
- 6651
- 荣誉
- 22
- 人气
- 10
- 在线时间
- 3298 小时
- 评议
- 0
- 帖子
- 2293
- 精华
- 0
- 积分
- 1369
- 金钱
- 6651
- 荣誉
- 22
- 人气
- 10
- 评议
- 0
|
本帖最后由 Roderna 于 2011-4-19 16:48 编辑
主要是在scripting.lua里限死了~~~
- local function OnNewCampaignStarted(context) //当战役开始时执行
- new_game = true
- becoming_shogun_advice = true
- scripting.game_interface:add_restricted_building_level_record("SHO_Port_3_Nanban_Trade_Port") //锁定南蛮港建造
- scripting.game_interface:add_restricted_unit_record("Cav_Spear_Great_Guard_Takeda") //锁定武田旗本招募
- scripting.game_interface:add_restricted_unit_record("Heavy_Ship_Nihon_Maru_Mori") //锁定毛利日本丸招募
-
- -- Unlock the nanban port for the Otomo and Shimazu (just in case they lose it)
- scripting.game_interface:remove_restricted_building_level_record_for_faction("SHO_Port_3_Nanban_Trade_Port", "otomo") //解锁大友家南蛮港建造
- scripting.game_interface:remove_restricted_building_level_record_for_faction("SHO_Port_3_Nanban_Trade_Port", "shimazu") //解锁岛津家南蛮港建造
- scripting.game_interface:remove_restricted_building_level_record_for_faction("SHO_Port_3_Nanban_Trade_Port", "uesugi") //偶自己加上去的,允许上杉建造南蛮港
-
- end
复制代码 所以,非岛津开局,想要南蛮港的话就只能等AI造,然后去占......
如果在AI建造之前占了的话也是造不出来的.
想作弊的话自己改就好了~~
默认scripting.lua是不存在的,需要用PFM从patch.pack里解出来~~
|
|