diff options
Diffstat (limited to 'npc/017-1/townhall.txt')
-rw-r--r-- | npc/017-1/townhall.txt | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/npc/017-1/townhall.txt b/npc/017-1/townhall.txt new file mode 100644 index 000000000..35482d5ed --- /dev/null +++ b/npc/017-1/townhall.txt @@ -0,0 +1,63 @@ +// TMW2/LoF scripts. +// Authors: +// Jesusalva +// Description: +// LoF Townhall Access Control + +017-1,180,20,0 script #LoF_Townhall01 NPC_HIDDEN,{ + end; +OnTouch: + // Sponsor and Main Quest 17+ - access granted + .@q=getq(General_Narrator); + if (.@q >= 17 || getgmlevel()) { + warp "017-10", 56, 78; + } + end; +OnInit: + .distance=1; + end; + +} + +017-1,182,20,0 script #LoF_Townhall02 NPC_HIDDEN,{ + end; +OnTouch: + // Sponsor and Main Quest 17+ - access granted + .@q=getq(General_Narrator); + if (.@q >= 17 || getgmlevel()) { + warp "017-10", 60, 78; + } + end; +OnInit: + .distance=1; + end; +} + +017-1,171,20,0 script #LoF_Townhall03 NPC_HIDDEN,{ + end; +OnTouch: + // Sponsor and Main Quest 17+ - access granted + .@q=getq(General_Narrator); + if (.@q >= 17 || getgmlevel()) { + warp "017-10", 36, 78; + } + end; +OnInit: + .distance=1; + end; +} + +017-1,190,20,0 script #LoF_Townhall04 NPC_HIDDEN,{ + end; +OnTouch: + // Sponsor and Main Quest 17+ - access granted + .@q=getq(General_Narrator); + if (.@q >= 17 || getgmlevel()) { + warp "017-10", 80, 78; + } + end; +OnInit: + .distance=1; + end; +} + |