summaryrefslogtreecommitdiff
path: root/npc/000-0-0
diff options
context:
space:
mode:
Diffstat (limited to 'npc/000-0-0')
-rw-r--r--npc/000-0-0/_import.txt1
-rw-r--r--npc/000-0-0/ronan.txt16
2 files changed, 17 insertions, 0 deletions
diff --git a/npc/000-0-0/_import.txt b/npc/000-0-0/_import.txt
index 437c86ca..84c9b8c9 100644
--- a/npc/000-0-0/_import.txt
+++ b/npc/000-0-0/_import.txt
@@ -3,3 +3,4 @@ npc: npc/000-0-0/_mobs.txt
npc: npc/000-0-0/_warps.txt
npc: npc/000-0-0/mapflags.txt
npc: npc/000-0-0/sailors.txt
+npc: npc/000-0-0/ronan.txt \ No newline at end of file
diff --git a/npc/000-0-0/ronan.txt b/npc/000-0-0/ronan.txt
new file mode 100644
index 00000000..1ac13d75
--- /dev/null
+++ b/npc/000-0-0/ronan.txt
@@ -0,0 +1,16 @@
+// Evol scripts.
+// Authors:
+// Vasily_Makarov
+
+000-0-0.gat,25,22,0,1 script Ronan 302,{
+ mesn;
+ set @q, rand(2);
+ if (@q == 0) goto l_Zzz;
+ goto l_Snoring;
+ l_Zzz:
+ mesq l("Zzzzzzzzzz");
+ close;
+ l_Snoring:
+ mesq l("Rrrr pchhhh...");
+ close;
+}