viewing paste Unknown #5779 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// starting time checks
    if((gettime(4)==0) && (gettime(3)>=13 && gettime(3)<15) ||
    (gettime(4)==3) && (gettime(3)>=9 && gettime(3)<11) ||
    (gettime(4)==5) && (gettime(3)>=20 && gettime(3)<22)) {
        if (!agitcheck()) {
            AgitStart;
            callsub S_DisplayOwners;
        }
        end;
    }
 
    if((gettime(4)==0) && (gettime(3)==15) ||
    (gettime(4)==3) && (gettime(3)==11) ||
    (gettime(4)==5) && (gettime(3)==22)) {
 
        if (agitcheck()) {
            AgitEnd;
            callsub S_DisplayOwners;
        }
        end;
    }
    end;
Viewed 744 times, submitted by Xgear.