summaryrefslogtreecommitdiff
path: root/npc/027-1/students.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/027-1/students.txt')
-rw-r--r--npc/027-1/students.txt45
1 files changed, 45 insertions, 0 deletions
diff --git a/npc/027-1/students.txt b/npc/027-1/students.txt
new file mode 100644
index 000000000..d1427f6d2
--- /dev/null
+++ b/npc/027-1/students.txt
@@ -0,0 +1,45 @@
+// TMW2 Scripts
+// Author:
+// Jesusalva
+// Description:
+// Random NPC (HF = Human Female)
+
+027-1,132,112,0 script Student#A01 NPC_ACADEMY_HF,{
+
+studenttalk();
+close;
+
+OnTimer1000:
+ domovestep();
+ end;
+
+OnInit:
+ initpath "move", 132, 112,
+ "dir", DOWN, 0,
+ "wait", 20, 0,
+ "move", 132, 122,
+ "dir", DOWN, 0,
+ "wait", 20, 0,
+ "dir", UP, 0,
+ "wait", 1, 0,
+ "move", 132, 102,
+ "dir", DOWN, 0,
+ "wait", 20, 0,
+ "dir", LEFT, 0,
+ "wait", 1, 0,
+ "move", 115, 102,
+ "dir", DOWN, 0,
+ "wait", 20, 0
+ "move", 112, 112,
+ "dir", DOWN, 0,
+ "wait", 20, 0,
+ "dir", RIGHT, 0
+ "wait", 2, 0;
+
+ initialmove;
+ initnpctimer;
+
+ .sex = G_FEMALE;
+ .distance = 5;
+ end;
+}