diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-21 23:55:32 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-21 23:55:32 +0100 |
commit | 7d8390e8114ab796d9f35548674d0428f6fffc03 (patch) | |
tree | 1df72da6db62131df38c4861ea88e677efe40fae /npc | |
parent | 8cf1b10c7cbbfde39e9d0098533fe1f5e8224ae5 (diff) | |
download | serverdata-7d8390e8114ab796d9f35548674d0428f6fffc03.tar.gz serverdata-7d8390e8114ab796d9f35548674d0428f6fffc03.tar.bz2 serverdata-7d8390e8114ab796d9f35548674d0428f6fffc03.tar.xz serverdata-7d8390e8114ab796d9f35548674d0428f6fffc03.zip |
guard maxim now move :D
Diffstat (limited to 'npc')
-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;
|