diff options
author | Reid <reidyaro@gmail.com> | 2015-12-31 05:45:21 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-12-31 05:45:21 +0100 |
commit | 3c28f390962e7bcf417ef966f9198c8e01e87a79 (patch) | |
tree | c5283b6762cbb6c177cdc35ca83bcd1f5c5985dc | |
parent | eb446e544dbde83f58d65d840d0ad3b4033d566d (diff) | |
download | serverdata-3c28f390962e7bcf417ef966f9198c8e01e87a79.tar.gz serverdata-3c28f390962e7bcf417ef966f9198c8e01e87a79.tar.bz2 serverdata-3c28f390962e7bcf417ef966f9198c8e01e87a79.tar.xz serverdata-3c28f390962e7bcf417ef966f9198c8e01e87a79.zip |
Add fancy panels on Artis.
-rw-r--r-- | npc/001-1/panels.txt | 43 |
1 files changed, 40 insertions, 3 deletions
diff --git a/npc/001-1/panels.txt b/npc/001-1/panels.txt index 102bb656..e764b910 100644 --- a/npc/001-1/panels.txt +++ b/npc/001-1/panels.txt @@ -5,12 +5,49 @@ // Panels to give advice and some random information to players. 001-1,180,25,0 script #ArtisPanel1 NPC_NO_SPRITE,{ - mesn "Narrator"; - mes col(l("You step on something, a panel half overgrown by moss, it has writing on it..."), 9); - next; + narrator 4, + l("You step on something, a panel half overgrown by moss, it has writing on it..."); + mesq l("Don't fall!"); next; mesq l("You've reached the highest natural place of Artis, enjoy the view."); + next; + + closedialog; + close; + +OnInit: + .distance = 2; + end; +} + +001-1,95,51,0 script #ArtisPanel2 NPC_NO_SPRITE,{ + narrator 4, + l("You step on something, a hard knocked panel with barelly visible inscriptions on it..."); + + mesq l("Beware of falling stones from the cliff!"); + next; + mesq l("The other part of this sign has been crushed by a rock."); + next; + + closedialog; + close; + +OnInit: + .distance = 2; + end; +} + +001-1,103,66,0 script #ArtisPanel3 NPC_NO_SPRITE,{ + narrator 4, + l("You step on something, a panel with a bitten corner and clear inscriptions on it..."); + + mesq l("Warning! Dangerous fish, do not fall into the lake!"); + next; + narrator 4, + l("Somebody tried to stroke the word \"fish\" and tried to replace it with \"sharkes\"."); + + closedialog; close; OnInit: |