UID237735
帖子
精華
主題
積分424
現金
積極性
威望
違規
熱心
推廣次數
閱讀權限5
註冊時間2010-2-10
在線時間 小時
最後登錄1970-1-1
該用戶從未簽到
|
- script Agit2_Event -1,{
end;
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;
}
把時間改成星期6,日 晚上7~8點.. |
評分
-
查看全部評分
|