diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-06-20 12:26:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-06-20 12:26:47 -0300 |
commit | dfab224f4b5eb66394a7f25f53a1aa397abb38c6 (patch) | |
tree | 43a533da7ad094a9707e80b81e674899b8b7c8ea /npc/001-3-1 | |
parent | 79eb59f7569fb5aece07046e4d27835de47aaeb9 (diff) | |
download | serverdata-dfab224f4b5eb66394a7f25f53a1aa397abb38c6.tar.gz serverdata-dfab224f4b5eb66394a7f25f53a1aa397abb38c6.tar.bz2 serverdata-dfab224f4b5eb66394a7f25f53a1aa397abb38c6.tar.xz serverdata-dfab224f4b5eb66394a7f25f53a1aa397abb38c6.zip |
These tables are now offline
Diffstat (limited to 'npc/001-3-1')
-rw-r--r-- | npc/001-3-1/alchemy.txt | 2 | ||||
-rw-r--r-- | npc/001-3-1/smith.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/001-3-1/alchemy.txt b/npc/001-3-1/alchemy.txt index 879208096..a9c15dd93 100644 --- a/npc/001-3-1/alchemy.txt +++ b/npc/001-3-1/alchemy.txt @@ -6,7 +6,7 @@ 001-3-1,32,89,0 script GM Alchemy Table NPC_NO_SPRITE,{ - if (!$@GM_OVERRIDE && $EVENT$ == "" && !is_staff()) goto L_Offline; + if (!$@GM_OVERRIDE || $EVENT$ == "") goto L_Offline; mesc l("Welcome to Saulc's Magic Alchemy Table!"); mesc l("This table will prepare the potion for you, no skill required!"); mesc l("What will you brew today?"); diff --git a/npc/001-3-1/smith.txt b/npc/001-3-1/smith.txt index df0742a48..7de825aca 100644 --- a/npc/001-3-1/smith.txt +++ b/npc/001-3-1/smith.txt @@ -6,7 +6,7 @@ 001-3-1,52,86,0 script GM Black Smithy NPC_NO_SPRITE,{ - if (!$@GM_OVERRIDE && $EVENT$ == "" && !is_staff()) goto L_Offline; + if (!$@GM_OVERRIDE || $EVENT$ == "") goto L_Offline; mesc l("Welcome to Saulc's Magic Smith Table!"); mesc l("This forge will prepare equipment for you, no skill required!"); mesc l("What will you craft today?"); |