diff options
author | Reid <reidyaro@gmail.com> | 2015-08-13 05:09:00 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-08-13 05:09:00 +0200 |
commit | 10c88f6039ecc4c12b1568aed3e40a2aabd6a7f7 (patch) | |
tree | 3268e5fa5a046f926d11e1ba096c5511bad5cb91 | |
parent | 5a435060e4c8f27613e2f01dd6b0aab196a229da (diff) | |
download | serverdata-10c88f6039ecc4c12b1568aed3e40a2aabd6a7f7.tar.gz serverdata-10c88f6039ecc4c12b1568aed3e40a2aabd6a7f7.tar.bz2 serverdata-10c88f6039ecc4c12b1568aed3e40a2aabd6a7f7.tar.xz serverdata-10c88f6039ecc4c12b1568aed3e40a2aabd6a7f7.zip |
Add nalkri walking NPC on artis.
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/nalkri.txt | 66 |
2 files changed, 67 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index 52c93348..60c8e4fa 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -14,6 +14,7 @@ npc: npc/001-1/eugene.txt npc: npc/001-1/harbours.txt npc: npc/001-1/katja.txt npc: npc/001-1/lozerk.txt +npc: npc/001-1/nalkri.txt npc: npc/001-1/panels.txt npc: npc/001-1/qonan.txt npc: npc/001-1/taree.txt diff --git a/npc/001-1/nalkri.txt b/npc/001-1/nalkri.txt new file mode 100644 index 00000000..4d0a26bd --- /dev/null +++ b/npc/001-1/nalkri.txt @@ -0,0 +1,66 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Nalkri, walking NPC of the legion of Aemil on the west part of Artis. + +001-1,35,84,0 script Nalkri#001-1 NPC_DEMON_MALE_LEGION_ARTIS,{ + npctalk3 l("Stay clear."); + close; + +OnTimer1000: + if (isunitwalking()) + { + initnpctimer; + end; + } + movetonextpos; + initnpctimer; + end; + +OnInit: + initpath "move", 56, 84, + "move", 60, 93, + "move", 68, 98, + "dir", DOWN, 0, + "wait", 1, 0, + "move", 68, 100, + "dir", RIGHT, 0, + "wait", 1, 0, + "dir", DOWN, 0, + "wait", 1, 0, + "dir", LEFT, 0, + "wait", 1, 0, + "dir", UP, 0, + "move", 67, 98, + "dir", RIGHT, 0, + "wait", 2, 0, + "move", 51, 101, + "dir", LEFT, 0, + "wait", 1, 0, + "dir", DOWN, 0, + "wait", 1, 0, + "dir", RIGHT, 0, + "wait", 1, 0, + "dir", UP, 0, + "move", 48, 100, + "dir", RIGHT, 0, + "wait", 1, 0, + "dir", DOWN, 0, + "wait", 1, 0, + "dir", LEFT, 0, + "wait", 1, 0, + "dir", RIGHT, 0, + "move", 55, 96, + "move", 43, 88, + "move", 35, 84, + "dir", LEFT, 0, + "wait", 1, 0, + "dir", DOWN, 0, + "wait", 4, 0, + "dir", RIGHT, 0, + "wait", 1, 0; + + initialmove; + initnpctimer; +} |