diff options
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index 3d7c6dceb..cbd463543 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -123,7 +123,6 @@ OnInit: initnpctimer;
.distance = 5;
}
-
003-1,98,121,0 script Guard Defou NPC_GUARD1,{
legiontalk;
end;
@@ -173,12 +172,32 @@ OnInit: end;
}
003-1,58,100,0 script Guard Popaul NPC_GUARD1,{
- legiontalk;
+ if (getq(CandorQuest_HAS) == 1)
+ {
+ //CheckEnfant(); // FIXME and everywhere else: Missing Function
+ }
end;
+
+OnTimer1000:
+ domovestep;
+
OnInit:
- .sex = G_OTHER;
- .distance = 1;
- end;
+ initpath "move", 58, 100,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 62, 100,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 58, 104,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 56, 99,
+ "dir", DOWN, 0,
+ "wait", 1, 0;
+
+ initialmove;
+ initnpctimer;
+ .distance = 5;
}
003-1,51,73,0 script Guard Yen NPC_GUARD1,{
legiontalk;
|