diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-04 10:56:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-04 10:56:08 -0300 |
commit | 2bec6e61b98e9d86b6962dfa075de5b220835ca9 (patch) | |
tree | 18403e519f59f82e46b8513293daf208205490b1 /npc/015-8-1 | |
parent | a6d8f61dbc90021de9a2a77d5cc1a1f20bae5e36 (diff) | |
download | serverdata-2bec6e61b98e9d86b6962dfa075de5b220835ca9.tar.gz serverdata-2bec6e61b98e9d86b6962dfa075de5b220835ca9.tar.bz2 serverdata-2bec6e61b98e9d86b6962dfa075de5b220835ca9.tar.xz serverdata-2bec6e61b98e9d86b6962dfa075de5b220835ca9.zip |
Add dummy NPCs for the objects in 015-8-1 which cannot be interacted with.
They are meaningless but players could get confuse and fail to trigger the quest.
Diffstat (limited to 'npc/015-8-1')
-rw-r--r-- | npc/015-8-1/puzzle.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/npc/015-8-1/puzzle.txt b/npc/015-8-1/puzzle.txt index f0827c2cf..7d556ccd6 100644 --- a/npc/015-8-1/puzzle.txt +++ b/npc/015-8-1/puzzle.txt @@ -74,3 +74,38 @@ OnInit: 015-8-1,0,0,0 duplicate(#SaggyBossTrap01) #SaggyBossTrap12 NPC_TRAP,0,0 // twelve traps should be enough +// Transitional, dummy NPCs +015-8-1,25,34,0 script #LockedDoor01581A NPC_NO_SPRITE,0,0,{ + end; +OnTouch: + npctalkonce l("This door is locked."); + end; +} + +015-8-1,26,68,0 duplicate(#LockedDoor01581A) #LockedDoor01581B NPC_NO_SPRITE,0,0 +015-8-1,37,68,0 duplicate(#LockedDoor01581A) #LockedDoor01581C NPC_NO_SPRITE,0,0 + +015-8-1,53,31,0 script #PaperNote01581A NPC_NO_SPRITE,{ + npctalkonce any(l("You cannot decipher what's written in there."), l("It's written in Mananese, you cannot read."), l("It's full of Mouboo drawings."), l("This note is too old and difficult to read."), l("The only readable thing is an old stain of blood."), l("This note is not interesting, maybe the obelisk is more.")); + end; +OnInit: + .distance=2; + end; +} + +015-8-1,56,31,0 duplicate(#PaperNote01581A) #PaperNote01581B NPC_NO_SPRITE +015-8-1,59,31,0 duplicate(#PaperNote01581A) #PaperNote01581C NPC_NO_SPRITE +015-8-1,62,31,0 duplicate(#PaperNote01581A) #PaperNote01581D NPC_NO_SPRITE +015-8-1,65,31,0 duplicate(#PaperNote01581A) #PaperNote01581E NPC_NO_SPRITE +015-8-1,68,31,0 duplicate(#PaperNote01581A) #PaperNote01581F NPC_NO_SPRITE +015-8-1,71,31,0 duplicate(#PaperNote01581A) #PaperNote01581G NPC_NO_SPRITE + +015-8-1,42,51,0 script #Sign01581A NPC_NO_SPRITE,{ + npctalkonce l("It's a strange drawing of a Mouboo."); + dispbottom l("Where is here? What was this place used for?!"); + end; +OnInit: + .distance=2; + end; +} + |