diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-25 10:49:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-25 10:49:15 -0300 |
commit | 31482a6fa24c4d4d5c34b7dbce97f9d7a2298992 (patch) | |
tree | 947f810d4d35870258cccd0b49c66dcf519c0bc8 /npc/006-6/core.txt | |
parent | 6af4c479fdc941725166fd4bf8a04510eb04d50c (diff) | |
download | serverdata-31482a6fa24c4d4d5c34b7dbce97f9d7a2298992.tar.gz serverdata-31482a6fa24c4d4d5c34b7dbce97f9d7a2298992.tar.bz2 serverdata-31482a6fa24c4d4d5c34b7dbce97f9d7a2298992.tar.xz serverdata-31482a6fa24c4d4d5c34b7dbce97f9d7a2298992.zip |
Add 006-6 Candor B3F, and allow warp to it
Diffstat (limited to 'npc/006-6/core.txt')
-rw-r--r-- | npc/006-6/core.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/npc/006-6/core.txt b/npc/006-6/core.txt new file mode 100644 index 000000000..b1dfffd8f --- /dev/null +++ b/npc/006-6/core.txt @@ -0,0 +1,21 @@ +// TMW2 Script +// Author: +// Jesusalva + +006-6,46,26,0 script Magic Barrier#0066 NPC_HIDDEN,0,0,{ + end; + +OnTouch: + //if (!getq(CandorQuest_Area1)) goto L_Reject; + //if (!getq(CandorQuest_Area2)) goto L_Reject; + //if (!getq(CandorQuest_Area3)) goto L_Reject; + + // FIXME: B4F is not ready, so fallthrough to L_Reject +L_Reject: + //warp "006-10", 49, 52; + specialeffect(5000, SELF, getcharid(3)); + dispbottom l("The power which lies in Candor rejects your strength."); + sleep2(3000); + specialeffect(5002, SELF, getcharid(3)); + end; +} |