summaryrefslogtreecommitdiff
path: root/npc/001-1/panels.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 11:00:49 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 11:00:49 -0300
commit8a4bf716002a017de77fe7df301ef8e4aaf00a2e (patch)
tree4947d0b015baad639fa07133369e9a09c8a468bc /npc/001-1/panels.txt
downloadserverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.gz
serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.bz2
serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.xz
serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.zip
Initial commit
Diffstat (limited to 'npc/001-1/panels.txt')
-rw-r--r--npc/001-1/panels.txt57
1 files changed, 57 insertions, 0 deletions
diff --git a/npc/001-1/panels.txt b/npc/001-1/panels.txt
new file mode 100644
index 00000000..19d1fb11
--- /dev/null
+++ b/npc/001-1/panels.txt
@@ -0,0 +1,57 @@
+// Evol scripts.
+// Author:
+// Reid
+// Description:
+// Panels to give advice and some random information to players.
+
+001-1,180,25,0 script #ArtisPanel1 NPC_NO_SPRITE,{
+ narrator S_LAST_NEXT,
+ 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;
+
+ closeclientdialog;
+ close;
+
+OnInit:
+ .distance = 2;
+ end;
+}
+
+001-1,95,51,0 script #ArtisPanel2 NPC_NO_SPRITE,{
+ narrator S_LAST_NEXT,
+ l("You step on something, a shaky and fragile panel with barely 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;
+
+ closeclientdialog;
+ close;
+
+OnInit:
+ .distance = 2;
+ end;
+}
+
+001-1,103,66,0 script #ArtisPanel3 NPC_NO_SPRITE,{
+ narrator S_LAST_NEXT,
+ 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 S_LAST_NEXT,
+ l("Somebody tried to stroke the word \"fish\" and tried to replace it with \"sharkes\".");
+
+ closeclientdialog;
+ close;
+
+OnInit:
+ .distance = 2;
+ end;
+}
+