diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-04 17:14:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-04 17:14:31 -0300 |
commit | dfa203254df0cbd472130cb7d6002c5fbab877c4 (patch) | |
tree | f90646ea6f4383a5e19549086dc25ff2745de0db /npc | |
parent | 61c62e93f3e0cda8018641034cd1e85634dc3bcb (diff) | |
download | serverdata-dfa203254df0cbd472130cb7d6002c5fbab877c4.tar.gz serverdata-dfa203254df0cbd472130cb7d6002c5fbab877c4.tar.bz2 serverdata-dfa203254df0cbd472130cb7d6002c5fbab877c4.tar.xz serverdata-dfa203254df0cbd472130cb7d6002c5fbab877c4.zip |
Add report on how long until Liberation Day
Diffstat (limited to 'npc')
-rw-r--r-- | npc/019-2/guards.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/019-2/guards.txt b/npc/019-2/guards.txt index d60aa3803..e14478af2 100644 --- a/npc/019-2/guards.txt +++ b/npc/019-2/guards.txt @@ -19,14 +19,16 @@ if (BaseLevel < 30) goto L_Noob; if (BaseLevel >= 30) goto L_Veteran; close; - } else if (is_gm()) { // NOTE: This is an override label + } else if (is_admin()) { // NOTE: This is an override label mesc "Initiate Nivalis Liberation Day?", 1; mesc "Event will last 7 days.", 1; + mesc "The event is currently set to happen in roughly: " + FuzzyTime($NLIB_SEQDAY*86400); select "Not yet.", "Yes", "No"; if (@menu == 2) { + closeclientdialog; goto OnNLibStart; } close; |