summaryrefslogtreecommitdiff
path: root/npc/001-2-2/moon.txt
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2015-06-25 02:22:36 +0200
committerReid <reidyaro@gmail.com>2015-06-25 02:22:36 +0200
commit91a96dafa61ff762bbcf8ef51b6cc572ca592c50 (patch)
tree2be907e7a5cc7c919168985ebd9225d085bd5680 /npc/001-2-2/moon.txt
parent08ed15a5865c5f969eb0e6052be868d5da3e310f (diff)
downloadserverdata-91a96dafa61ff762bbcf8ef51b6cc572ca592c50.tar.gz
serverdata-91a96dafa61ff762bbcf8ef51b6cc572ca592c50.tar.bz2
serverdata-91a96dafa61ff762bbcf8ef51b6cc572ca592c50.tar.xz
serverdata-91a96dafa61ff762bbcf8ef51b6cc572ca592c50.zip
Add moon walking NPC.
Diffstat (limited to 'npc/001-2-2/moon.txt')
-rw-r--r--npc/001-2-2/moon.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/npc/001-2-2/moon.txt b/npc/001-2-2/moon.txt
new file mode 100644
index 00000000..cfdc8f66
--- /dev/null
+++ b/npc/001-2-2/moon.txt
@@ -0,0 +1,29 @@
+// Evol scripts.
+// Author:
+// Reid
+// Description:
+// Moon, main NPC for the urchin quest.
+
+001-2-2,33,32,0 script Moon#001-2-2 427,{
+ npctalk3 l("Hi!");
+ close;
+
+OnTimer1000:
+ if (isunitwalking())
+ {
+ initnpctimer;
+ end;
+ }
+ movetonextpos;
+ initnpctimer;
+ end;
+
+OnInit:
+ initpath "move", 41, 30,
+ "dir", DOWN, 0,
+ "wait", 2, 0,
+ "move", 33, 32,
+ "wait", 10, 0,
+ initialmove;
+ initnpctimer;
+}