OnClock2100: //start time for Sat(6)
OnClock2230: //end time for Sat(6)
OnAgitInit2:
// starting time checks
if((gettime(4)==0) && (gettime(3)>=21 && gettime(3)<23)) {
if (!agitcheck2()) {
announce "WoE 2.0 Begins!", bc_all|bc_woe;
agitstart2;
setmapflag "sch_gld", mf_bg_consume;
setmapflag "schg_cas01", mf_bg_consume;
}
end;
}
// end time checks
if ((gettime(4)==0) && (gettime(3)==22) && (gettime(2)==30)) {
if (agitcheck2()) {
announce "WoE 2.0 was ended!", bc_all|bc_woe;
agitend2;
removemapflag "sch_gld", mf_bg_consume;
removemapflag "schg_cas01", mf_bg_consume;
}
end;
}
end;
}