diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-12 11:02:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-12 11:02:45 -0300 |
commit | 993998dd8eaf4738802903f8200419f7e4e87826 (patch) | |
tree | 0a00af5f1dfe1ffc48c996adc7d3881eec67f9bc /npc/003-1 | |
parent | b502fa80be7f85698a6d1f7a129c5dccacf1b004 (diff) | |
download | serverdata-993998dd8eaf4738802903f8200419f7e4e87826.tar.gz serverdata-993998dd8eaf4738802903f8200419f7e4e87826.tar.bz2 serverdata-993998dd8eaf4738802903f8200419f7e4e87826.tar.xz serverdata-993998dd8eaf4738802903f8200419f7e4e87826.zip |
Initial version of Hurnscald Liberation Day event. Ugh, so messy.
Yeah, this is a massive co-op, with monsters at your side.
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/ship.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/003-1/ship.txt b/npc/003-1/ship.txt index 67882168c..cefea5338 100644 --- a/npc/003-1/ship.txt +++ b/npc/003-1/ship.txt @@ -25,13 +25,13 @@ OnTouch: L_Warp: /* Is Hurnscald already liberated? Precendence. */ if (!$HURNS_LIBDATE) { + query_sql("SELECT online FROM char WHERE charname='Saulc GM'", .@online); if (is_gm()) dispbottom l("GMs are NOT allowed on Hurnscald Liberation day."); + else if (.@online) + dispbottom l("Right click on the NPC to join the Liberation Force on Hurnscald."); else - dispbottom l("Please right click me to join the Liberation Force on Hurnscald."); - //query_sql("is Saulc GM online?", <array variable>); - dispbottom l("The ship is locked, probably unable to leave port."); - + dispbottom l("The ship is locked, probably unable to leave port."); end; } |