diff options
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index bfccf5324..f151bd1c8 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -226,11 +226,41 @@ OnInit: }
003-1,54,52,0 script Guard Maxim NPC_GUARD1,{
legiontalk;
+ if (getq(TulimsharQuest_WaterForGuard) == 1)
+ {
+ //CheckGuard(); // TODO: TBD
+ }
end;
+
+OnTimer1000:
+ domovestep;
+
OnInit:
- .sex = G_OTHER;
- .distance = 1;
- end;
+ initpath "move", 54, 52,
+ "dir", DOWN, 0,
+ "wait", 85, 0,
+ "move", 54, 45,
+ "dir", DOWN, 0,
+ "wait", 70, 0,
+ "move", 67, 30,
+ "dir", LEFT, 0,
+ "wait", 11, 0,
+ "move", 49, 46,
+ "dir", DOWN, 0,
+ "wait", 55, 0,
+ "move", 31, 41,
+ "dir", LEFT, 0,
+ "wait", 6, 0,
+ "move", 35, 36,
+ "dir", UP, 0,
+ "wait", 9, 0,
+ "move", 49, 52,
+ "dir", DOWN, 0,
+ "wait", 70, 0;
+ initialmove;
+ initnpctimer;
+ .distance = 5;
+
}
003-1,50,36,0 script Guard Totor NPC_GUARD1,{
legiontalk;
|