- UID
- 3754912
- 主题
- 0
- 阅读权限
- 20
- 帖子
- 180
- 精华
- 0
- 积分
- 90
- 金钱
- 233
- 荣誉
- 0
- 人气
- 0
- 在线时间
- 1 小时
- 评议
- 0
- 帖子
- 180
- 精华
- 0
- 积分
- 90
- 金钱
- 233
- 荣誉
- 0
- 人气
- 0
- 评议
- 0
|
这个也很好用,MOD通用,游侠里的
行会2威尼斯几回合一次会议的方法
在The Guild 2 Venice\Scripts\Cutscenes中找到OfficeSession.lua和officesessionproto.lua这两个东东,用记事本打开OfficeSession.lua和officesessionproto.lua,在它们中找到下面的一段代码:
function Start()
-- if no settlement, no office session
if GetID("settlement")==-1 then
MsgDebugMeasure("applicant","error: This townhall does not belong to any settlement.")
EndCutscene("")
end
-- set a Date: event_alias, settlement, cutscene, function
CityScheduleCutsceneEvent("settlement","council_date","","BeginCouncilMeeting",17,6,"@L_SESSION_6_TIMEPLANNERENTRY_CITY_+0") -- hour of day=17h, MinTimeInFuture = 8
local EventTime = SettlementEventGetTime("council_date")
好了,只要该一个数字就行了(OfficeSession.lua和officesessionproto.lua两个文件中的都改),看到 hour of day=17h了吗,这表示会议是在每天17点举行的,那好,我们把BeginCouncilMeeting",17,6,"@中的数字17改为17+24的倍数就行了,就是说你改为65(17+24×2),那么会议就是三回合一次了, |
|