diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-10 21:59:47 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-10 21:59:47 +0100 |
commit | 1c317a4bdb9e834b19661b7a2c5a000e3f9c57c4 (patch) | |
tree | 8ff56f88167717b5fea509102c13b68a21707ac0 /npc/003-1 | |
parent | 6eb3add1aad3d61e8e3ec0ffccb2d309ddb5e388 (diff) | |
download | serverdata-1c317a4bdb9e834b19661b7a2c5a000e3f9c57c4.tar.gz serverdata-1c317a4bdb9e834b19661b7a2c5a000e3f9c57c4.tar.bz2 serverdata-1c317a4bdb9e834b19661b7a2c5a000e3f9c57c4.tar.xz serverdata-1c317a4bdb9e834b19661b7a2c5a000e3f9c57c4.zip |
add 004-1
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 54 |
1 files changed, 50 insertions, 4 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index cbd463543..397c1abf3 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -264,12 +264,58 @@ OnInit: end;
}
003-1,102,80,0 script Guard Tetric 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", 110, 84,
+ "dir", RIGHT, 0,
+ "wait", 1, 0,
+ "move", 110, 101,
+ "dir", RIGHT, 0,
+ "wait", 0, 0,
+ "move", 99, 121,
+ "dir", LEFT, 0,
+ "wait", 1, 0,
+ "move", 89, 136,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 65, 152,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 71, 139,
+ "dir", RIGHT, 0,
+ "wait", 1, 0,
+ "move", 59, 128,
+ "dir", LEFT, 0,
+ "wait", 1, 0,
+ "move", 47, 79,
+ "dir", LEFT, 0,
+ "wait", 1, 0,
+ "move", 80, 73,
+ "dir", RIGHT, 0,
+ "wait", 1, 0,
+ "move", 53, 52,
+ "dir", RIGHT, 0,
+ "wait", 1, 0,
+ "move", 52, 37,
+ "dir", RIGHT, 0,
+ "wait", 1, 0,
+ "move", 35, 35,
+ "dir", RIGHT, 0,
+ "wait", 1, 0,
+ "move", 62, 105,
+ "dir", DOWN, 0,
+ "wait", 1, 0;
+ initialmove;
+ initnpctimer;
+ .distance = 5;
}
003-1,107,80,0 script Guard Biscop NPC_GUARD1,{
legiontalk;
|