diff options
author | Reid <reidyaro@gmail.com> | 2015-08-13 05:28:39 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-08-13 05:28:39 +0200 |
commit | 6b3f1d7d747c269fd2f9ae882719e1b74ddc4205 (patch) | |
tree | 9e217490daed0c8d988eddfd64f73e28f142499d | |
parent | 10c88f6039ecc4c12b1568aed3e40a2aabd6a7f7 (diff) | |
download | serverdata-6b3f1d7d747c269fd2f9ae882719e1b74ddc4205.tar.gz serverdata-6b3f1d7d747c269fd2f9ae882719e1b74ddc4205.tar.bz2 serverdata-6b3f1d7d747c269fd2f9ae882719e1b74ddc4205.tar.xz serverdata-6b3f1d7d747c269fd2f9ae882719e1b74ddc4205.zip |
Add carmie walking NPC on artis.
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/carmie.txt | 69 |
2 files changed, 70 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index 60c8e4fa7..a0a7fb2f0 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -4,6 +4,7 @@ npc: npc/001-1/_mobs.txt npc: npc/001-1/_warps.txt npc: npc/001-1/artaxe.txt npc: npc/001-1/beuss.txt +npc: npc/001-1/carmie.txt npc: npc/001-1/chelios.txt npc: npc/001-1/cookiemaster.txt npc: npc/001-1/doors.txt diff --git a/npc/001-1/carmie.txt b/npc/001-1/carmie.txt new file mode 100644 index 000000000..1f8680abb --- /dev/null +++ b/npc/001-1/carmie.txt @@ -0,0 +1,69 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Carmie, walking NPC of the legion of Aemil on the center part of Artis. + +001-1,86,66,0 script Carmie#001-1 NPC_RAIJIN_FEMALE_LEGION_ARTIS,{ + npctalk3 l("I'm busy right now, I will get back to you later."); + close; + +OnTimer1000: + if (isunitwalking()) + { + initnpctimer; + end; + } + movetonextpos; + initnpctimer; + end; + +OnInit: + initpath "move", 89, 68, + "move", 89, 77, + "move", 84, 81, + "dir", LEFT, 0, + "wait", 2, 0, + "dir", DOWN, 0, + "wait", 1, 0, + "dir", RIGHT, 0, + "wait", 1, 0, + "move", 89, 85, + "dir", LEFT, 0, + "wait", 1, 0, + "dir", DOWN, 0, + "dir", RIGHT, 0, + "wait", 1, 0, + "move", 94, 81, + "dir", RIGHT, 0, + "wait", 2, 0, + "dir", DOWN, 0, + "wait", 1, 0, + "dir", LEFT, 0, + "wait", 1, 0, + "move", 89, 76, + "move", 89, 68, + "dir", LEFT, 0, + "wait", 2, 0, + "dir", DOWN, 0, + "wait", 4, 0, + "dir", RIGHT, 0, + "wait", 2, 0, + "move", 92, 66, + "dir", RIGHT, 0, + "wait", 2, 0, + "dir", DOWN, 0, + "wait", 1, 0, + "dir", LEFT, 0, + "wait", 1, 0, + "move", 86, 66, + "dir", LEFT, 0, + "wait", 2, 0, + "dir", DOWN, 0, + "wait", 1, 0, + "dir", RIGHT, 0, + "wait", 1, 0; + + initialmove; + initnpctimer; +} |