diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-15 23:50:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-15 23:50:39 -0300 |
commit | 2693a7f6b5810fa37934958a3f1858dc080f84ec (patch) | |
tree | 859691b148ec8c66174ab46993cbdd25ba1566ec /npc/023-3-2/logic.txt | |
parent | e3f5f8f40888bc07737e3785b3490069761a0a28 (diff) | |
download | serverdata-2693a7f6b5810fa37934958a3f1858dc080f84ec.tar.gz serverdata-2693a7f6b5810fa37934958a3f1858dc080f84ec.tar.bz2 serverdata-2693a7f6b5810fa37934958a3f1858dc080f84ec.tar.xz serverdata-2693a7f6b5810fa37934958a3f1858dc080f84ec.zip |
Link Player Story 5 caves - Puzzles, Dynamics, etc. all missing, and quest
check still temporary.
Diffstat (limited to 'npc/023-3-2/logic.txt')
-rw-r--r-- | npc/023-3-2/logic.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/npc/023-3-2/logic.txt b/npc/023-3-2/logic.txt new file mode 100644 index 000000000..17ea27118 --- /dev/null +++ b/npc/023-3-2/logic.txt @@ -0,0 +1,28 @@ +// TMW2 scripts. +// Author: +// Jesusalva +// Description: +// 023-3-2 Isbamuth's Study Room Configuration File + +023-3-2 mapflag zone MMO + +023-3,39,59,0 script #Exit02332 NPC_HIDDEN,1,0,{ + end; +OnTouch: + .@q=getq(General_Narrator); + .@q2=getq2(General_Narrator); + // Cheater Detected + if (.@q < 13) { + warp "Save", 0, 0; + percentheal -100, -100; + return false; + } + if (.@q == 13) { + dispbottom lg("I'm not a coward! I must press forward!"); + end; + } + .@mapn$="023-3-1"; + warp .@mapn$, 45, 28; + end; +} + |