diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-10 11:04:01 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-10 11:04:01 +0100 |
commit | e21a128f652c822e6f65a082897e66fe69747d20 (patch) | |
tree | 0d8b576347e11ac8d7752f8ef55cfae887f9d439 /npc | |
parent | d902d42b09adc424839e15f7a0282afc7971429c (diff) | |
download | serverdata-e21a128f652c822e6f65a082897e66fe69747d20.tar.gz serverdata-e21a128f652c822e6f65a082897e66fe69747d20.tar.bz2 serverdata-e21a128f652c822e6f65a082897e66fe69747d20.tar.xz serverdata-e21a128f652c822e6f65a082897e66fe69747d20.zip |
change guards direction
Diffstat (limited to 'npc')
-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;
|