diff options
author | mekolat <mekolat@users.noreply.github.com> | 2016-04-12 16:37:08 -0400 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2016-04-12 19:21:46 -0400 |
commit | dc9c6ac482b353fe9a4b1e1628f691c487a517fc (patch) | |
tree | 655b6616766410e8880e8395298811beba8c742a /world/map/npc/017-9 | |
parent | d55ee9ec4a43cbc7d52619b6a473a4760bb9acdb (diff) | |
download | serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.gz serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.bz2 serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.xz serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.zip |
add default permissions
Diffstat (limited to 'world/map/npc/017-9')
-rw-r--r-- | world/map/npc/017-9/npcs.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/world/map/npc/017-9/npcs.txt b/world/map/npc/017-9/npcs.txt index 188ef2e0..2db61d1f 100644 --- a/world/map/npc/017-9/npcs.txt +++ b/world/map/npc/017-9/npcs.txt @@ -1,6 +1,6 @@ 009-1,42,43,0|script|#SecretDoor|32767,0,0 { - if (GM < get(.lounge, "GM") && GM < G_SYSOP && !debug) end; + if (GM < MAP_LOUNGE && GM < G_SYSOP && !debug) end; gmlog "@warp 017-9"; warp "017-9", 27, 23; end; @@ -8,7 +8,7 @@ 020-1,60,76,0|script|#SecretDoor2|32767,0,0 { - if (GM < get(.lounge, "GM") && GM < G_SYSOP && !debug) end; + if (GM < MAP_LOUNGE && GM < G_SYSOP && !debug) end; gmlog "@warp 017-9"; warp "017-9", 29, 21; end; @@ -16,7 +16,7 @@ 001-1,54,118,0|script|#SecretDoor3|32767,0,0 { - if (GM < get(.lounge, "GM") && GM < G_SYSOP && !debug) end; + if (GM < MAP_LOUNGE && GM < G_SYSOP && !debug) end; gmlog "@warp 017-9"; warp "017-9", 21, 21; end; @@ -24,7 +24,7 @@ 027-2,118,111,0|script|#SecretDoor4|32767,0,0 { - if (GM < get(.lounge, "GM") && GM < G_SYSOP && !debug) end; + if (GM < MAP_LOUNGE && GM < G_SYSOP && !debug) end; gmlog "@warp 017-9"; warp "017-9", 31, 21; end; @@ -32,7 +32,7 @@ 029-1,34,96,0|script|#SecretDoor5|32767,0,0 { - if (GM < get(.lounge, "GM") && GM < G_SYSOP && !debug) end; + if (GM < MAP_LOUNGE && GM < G_SYSOP && !debug) end; gmlog "@warp 017-9"; warp "017-9", 23, 21; end; |