diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-22 01:05:04 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-22 01:05:04 +0100 |
commit | 65175e0e70eac3cc0204ad25356e7da5af777b46 (patch) | |
tree | 869aa6182278821b13682db5a91af1c8bb7fa811 /npc/003-1 | |
parent | 7d8390e8114ab796d9f35548674d0428f6fffc03 (diff) | |
download | serverdata-65175e0e70eac3cc0204ad25356e7da5af777b46.tar.gz serverdata-65175e0e70eac3cc0204ad25356e7da5af777b46.tar.bz2 serverdata-65175e0e70eac3cc0204ad25356e7da5af777b46.tar.xz serverdata-65175e0e70eac3cc0204ad25356e7da5af777b46.zip |
add new direction for north tulim guards
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 89 |
1 files changed, 79 insertions, 10 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index f151bd1c8..945272462 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -264,27 +264,96 @@ OnInit: }
003-1,50,36,0 script Guard Totor NPC_GUARD1,{
legiontalk;
+ if (getq(TulimsharQuest_WaterForGuard) == 1)
+ {
+ //CheckGuard(); // TODO: TBD
+ }
end;
+
+OnTimer1000:
+ domovestep;
+
OnInit:
- .sex = G_OTHER;
- .distance = 1;
- end;
+ initpath "move", 50, 36,
+ "dir", DOWN, 0,
+ "wait", 45, 0,
+ "move", 50, 39,
+ "dir", DOWN, 0,
+ "wait", 35, 0,
+ "move", 35, 40,
+ "dir", UP, 0,
+ "wait", 1, 0,
+ "move", 33, 34,
+ "dir", DOWN, 0,
+ "wait", 12, 0;
+ initialmove;
+ initnpctimer;
+ .distance = 5;
}
003-1,53,36,0 script Guard Roukin NPC_GUARD1,{
legiontalk;
+ if (getq(TulimsharQuest_WaterForGuard) == 1)
+ {
+ //CheckGuard(); // TODO: TBD
+ }
end;
+
+OnTimer1000:
+ domovestep;
+
OnInit:
- .sex = G_OTHER;
- .distance = 1;
- end;
+ initpath "move", 53, 36,
+ "dir", DOWN, 0,
+ "wait", 60, 0,
+ "move", 56, 59,
+ "dir", DOWN, 0,
+ "wait", 1, 0,
+ "move", 61, 76,
+ "dir", RIGHT, 0,
+ "wait", 5, 0,
+ "move", 61, 105,
+ "dir", RIGHT, 0,
+ "wait", 8, 0,
+ "move", 59, 129,
+ "dir", LEFT, 0,
+ "wait", 4, 0,
+ "move", 60, 103,
+ "dir", UP, 0,
+ "wait", 1, 0,
+ "move", 56, 82,
+ "dir", LEFT, 0,
+ "wait", 7, 0,
+ "move", 56, 59,
+ "dir", UP, 0,
+ "wait", 1, 0,
+ "move", 53, 39,
+ "dir", DOWN, 0,
+ "wait", 25, 0;
+ initialmove;
+ initnpctimer;
+ .distance = 5;
}
003-1,35,34,0 script Guard Falko NPC_GUARD1,{
legiontalk;
+ if (getq(TulimsharQuest_WaterForGuard) == 1)
+ {
+ //CheckGuard(); // TODO: TBD
+ }
end;
+
+OnTimer1000:
+ domovestep;
+
OnInit:
- .sex = G_OTHER;
- .distance = 1;
- end;
+ initpath "move", 35, 34,
+ "dir", DOWN, 0,
+ "wait", 60, 0,
+ "move", 51, 38,
+ "dir", DOWN, 0,
+ "wait", 10, 0;
+ initialmove;
+ initnpctimer;
+ .distance = 5;
}
003-3,39,37,0 script Guard Malindax NPC_GUARD1,{
legiontalk;
@@ -294,7 +363,7 @@ OnInit: .distance = 1;
end;
}
-003-1,111,101,0 script Guard Fromag NPC_GUARD1,{
+003-1,111,101,0 script Guard Froma NPC_GUARD1,{
legiontalk;
end;
OnInit:
|