diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-15 00:55:49 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-15 00:55:49 -0300 |
commit | 8117dcb5d9dc35c07579c51907593db137c54beb (patch) | |
tree | 479b6dc49b7abfeb3373e905faab014eb1f20590 /npc/003-10 | |
parent | 508a29cffb838b0cbd712ce1c955708fc553f503 (diff) | |
download | serverdata-8117dcb5d9dc35c07579c51907593db137c54beb.tar.gz serverdata-8117dcb5d9dc35c07579c51907593db137c54beb.tar.bz2 serverdata-8117dcb5d9dc35c07579c51907593db137c54beb.tar.xz serverdata-8117dcb5d9dc35c07579c51907593db137c54beb.zip |
gcsantime() to fix santime() loops. Uh... login frequently.
Diffstat (limited to 'npc/003-10')
-rw-r--r-- | npc/003-10/guarddevoir.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/003-10/guarddevoir.txt b/npc/003-10/guarddevoir.txt index be4cef8ab..8935c637d 100644 --- a/npc/003-10/guarddevoir.txt +++ b/npc/003-10/guarddevoir.txt @@ -29,7 +29,7 @@ L_Quest: mesq l("Nice! I want you to kill some red scorpions, as I said!"); next; if (.@q == 0) goto L_Continue; - if (santime() >= getq2(TulimsharQuest_Devoir) + 60 * 60 * 36) goto L_Repeat; // Repats every 36 hours + if (santime() >= getq2(TulimsharQuest_Devoir) + 60 * 60 * 36 || gcsantime()) goto L_Repeat; // Repats every 36 hours mesn; mesq l("But, it wouldn't look nice if I let you do all the killing! The other guards are working right now!"); next; |