diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-28 14:54:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-28 14:54:30 -0300 |
commit | 5503e709f0d94e2ac25893763122d25072b799b4 (patch) | |
tree | 12613f56279482499a1736694aeb13fb5f11c79d /npc/018-2-1 | |
parent | 76636da1311ff7e7efbaaac7bddd4b3d37976ed4 (diff) | |
download | serverdata-5503e709f0d94e2ac25893763122d25072b799b4.tar.gz serverdata-5503e709f0d94e2ac25893763122d25072b799b4.tar.bz2 serverdata-5503e709f0d94e2ac25893763122d25072b799b4.tar.xz serverdata-5503e709f0d94e2ac25893763122d25072b799b4.zip |
Placeholder NPC, just to keep the seat hot
Diffstat (limited to 'npc/018-2-1')
-rw-r--r-- | npc/018-2-1/dustman.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/npc/018-2-1/dustman.txt b/npc/018-2-1/dustman.txt new file mode 100644 index 000000000..7a4fcd20f --- /dev/null +++ b/npc/018-2-1/dustman.txt @@ -0,0 +1,27 @@ +// TMW2/LoF scripts. +// Authors: +// TMW-LoF Team +// Jesusalva +// Description: +// Void NPC + +018-2-1,22,29,0 script Colonel DUSTMAN NPC_CRUSADER,{ + mesn; + mesq l("My man went down and still haven't returned."); + next; + mesn; + mesq l("I'm worried with them. Anyway, you need a special scroll to get to the Heroes Cave..."); + next; + mesn; + mesq l("Otherwise, well, I'm not sure what will happen. You'll probably be either thrown at the wolves or something. Duh."); + next; + mesn; + mesq l("Take care, adventurer!"); + close; + +OnInit: + .sex=G_MALE; + .distance=5; + end; +} + |