diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-09 15:30:39 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-09 15:30:39 +0100 |
commit | 2bbbacacf8cdf8a06a95b3346207ea72b9917da0 (patch) | |
tree | 4e196287df37bf726202d63e621511850e723850 /npc/003-1/lieutenantdausen.txt | |
parent | dbae57213f3e949ef43ab1533f4616e6b6f9a9f6 (diff) | |
download | serverdata-2bbbacacf8cdf8a06a95b3346207ea72b9917da0.tar.gz serverdata-2bbbacacf8cdf8a06a95b3346207ea72b9917da0.tar.bz2 serverdata-2bbbacacf8cdf8a06a95b3346207ea72b9917da0.tar.xz serverdata-2bbbacacf8cdf8a06a95b3346207ea72b9917da0.zip |
add moving guard
Diffstat (limited to 'npc/003-1/lieutenantdausen.txt')
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 45 |
1 files changed, 39 insertions, 6 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index 9144aac2d..3d7c6dceb 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -1,7 +1,14 @@ -// Author:
+// TMW2 scripts.
+// Authors:
// Saulc
-
-
+// Description:
+// Help Tulimshar guards
+// Quest variable:
+// TulimsharQuests_Guards
+// Quest stages:
+// 0 - not started
+// 1 - Lieutenant Dausen asked for help Tulimshar guards
+// 2 - completed
003-1,111,84,0 script Lieutenant Dausen NPC_PLAYER,{
@@ -86,11 +93,37 @@ function script CheckGuard { //CheckEnfant(); // FIXME and everywhere else: Missing Function
}
end;
+
+OnTimer1000:
+ domovestep;
+
OnInit:
- .sex = G_OTHER;
- .distance = 1;
- end;
+ initpath "move", 98, 104,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 84, 100,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 93, 110,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 101, 106,
+ "dir", RIGHT, 0,
+ "wait", 1, 0,
+ "move", 98, 104,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 93, 110,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 111, 109,
+ "dir", DOWN, 0,
+ "wait", 1, 0;
+ initialmove;
+ initnpctimer;
+ .distance = 5;
}
+
003-1,98,121,0 script Guard Defou NPC_GUARD1,{
legiontalk;
end;
|