diff options
author | Reid <reidyaro@gmail.com> | 2015-02-18 06:04:41 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-02-18 06:04:41 +0100 |
commit | 89e6536f8f2c6f67474eaea5c191cee814618429 (patch) | |
tree | 9a8b0012467af95b9d801c0e0011cc3d27ece2d6 | |
parent | 2f9494be0ec2ad77c3ec64aa8c2a6952d36fd141 (diff) | |
download | serverdata-89e6536f8f2c6f67474eaea5c191cee814618429.tar.gz serverdata-89e6536f8f2c6f67474eaea5c191cee814618429.tar.bz2 serverdata-89e6536f8f2c6f67474eaea5c191cee814618429.tar.xz serverdata-89e6536f8f2c6f67474eaea5c191cee814618429.zip |
Add a panel NPC on Artis.
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/panels.txt | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index 390f88ba..938de95a 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -5,3 +5,4 @@ npc: npc/001-1/artaxe.txt npc: npc/001-1/cookiemaster.txt npc: npc/001-1/doors.txt npc: npc/001-1/harbours.txt +npc: npc/001-1/panels.txt diff --git a/npc/001-1/panels.txt b/npc/001-1/panels.txt new file mode 100644 index 00000000..fc1bb7a0 --- /dev/null +++ b/npc/001-1/panels.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Panels to give advice and some random information to players. + +001-1,180,25,0 script #ArtisPanel1 999,{ + mesn "Narrator"; + mes col(l("A weeds covered panel draws your attention, a message is visible concealed behind the leaves..."), 9); + next; + mesq l("Don't fall!"); + next; + mesq l("You've reached the highest natural place of Artis, enjoy the view."); + close; + +OnInit: + setnpcdistance 2; + end; +} + |