diff options
Diffstat (limited to 'npc/027-1')
-rw-r--r-- | npc/027-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/027-1/students.txt | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/npc/027-1/_import.txt b/npc/027-1/_import.txt index d964d0a64..6e000d9f7 100644 --- a/npc/027-1/_import.txt +++ b/npc/027-1/_import.txt @@ -8,3 +8,4 @@ "npc/027-1/luca.txt", "npc/027-1/saves.txt", "npc/027-1/statue.txt", +"npc/027-1/students.txt", 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; +} |