UID113755
帖子
精華
主題
積分2141
現金
積極性
威望
違規
熱心
推廣次數
閱讀權限10
註冊時間2008-11-5
在線時間 小時
最後登錄1970-1-1
TA的每日心情 | 開心 2013-3-5 08:43 AM |
---|
簽到天數: 460 天 連續簽到: 4 天 [LV.9]以壇為家II
|
發表於 2010-7-31 00:35:18
|
顯示全部樓層
本帖最後由 DBC 於 2010-7-31 12:36 AM 編輯
gvg部分
npc\guild\agit_controller.txt
OnClock2100: //開始時間 星期六(6)
OnClock2300: //結束時間 星期六(6)
OnAgitInit:
// 開始時間檢查
if( (gettime(4)==6) && (gettime(3)>=21 && gettime(3)<23) ) {
if (!agitcheck()) {
AgitStart;
callsub S_DisplayOwners;
}
end;
}
// 結束時間檢查
if ( (gettime(4)==6) && (gettime(3)==23) ) {
if (agitcheck()) {
AgitEnd;
callsub S_DisplayOwners;
}
end;
}
end;
se部分
npc\guild2\agit_start_se.txt
OnClock1800: //start time for Tues(2), Thurs(4)
OnClock2000: //end time for Tues(2), Thurs(4)
OnClock2100: //start time for Sat(6)
OnClock2300: //end time for Sat(6)
OnAgitInit2:
// starting time checks
if((gettime(4)==2) && (gettime(3)>=18 && gettime(3)<21) ||
(gettime(4)==4) && (gettime(3)>=18 && gettime(3)<21) ||
(gettime(4)==6) && (gettime(3)>=22 && gettime(3)<23)) {
if (!agitcheck2()) {
AgitStart2;
}
end;
}
// end time checks
if ((gettime(4)==2) && (gettime(3)==21) ||
(gettime(4)==4) && (gettime(3)==21) ||
(gettime(4)==6) && (gettime(3)==23)) {
if (agitcheck2()) {
AgitEnd2;
}
end;
}
end;
}
以上紅字為你要的時間
腳本運作控制位置如下
npc\scripts_guild.conf |
|