diff options
author | Reid <reidyaro@gmail.com> | 2016-02-23 01:32:37 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-02-23 01:32:37 +0100 |
commit | b6565a398c76332a8734d9027ed98158fddb42f1 (patch) | |
tree | 3371af37b144bbfcc508fdc9426ff8ac729f63db /npc | |
parent | 7a78257a127e8f1aeffd7c272f13f6916e3f3af7 (diff) | |
download | serverdata-b6565a398c76332a8734d9027ed98158fddb42f1.tar.gz serverdata-b6565a398c76332a8734d9027ed98158fddb42f1.tar.bz2 serverdata-b6565a398c76332a8734d9027ed98158fddb42f1.tar.xz serverdata-b6565a398c76332a8734d9027ed98158fddb42f1.zip |
Add a test mouboo inside taree's fence.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/mouboo.txt | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index c062f849..f9c22215 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -19,6 +19,7 @@ npc: npc/001-1/juscare.txt npc: npc/001-1/katja.txt npc: npc/001-1/lucas.txt npc: npc/001-1/merlin.txt +npc: npc/001-1/mouboo.txt npc: npc/001-1/nalkri.txt npc: npc/001-1/panels.txt npc: npc/001-1/qonan.txt diff --git a/npc/001-1/mouboo.txt b/npc/001-1/mouboo.txt new file mode 100644 index 00000000..e4bfde4a --- /dev/null +++ b/npc/001-1/mouboo.txt @@ -0,0 +1,21 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Mouboo on Taree's fence. + +001-1,67,79,4 script Mouboo#Artis0 NPC_MOUBOO,{ + + if (Repeat_NPC_lock <= gettimetick (2)) + { + Repeat_NPC_lock = gettimetick (2) + 1; + moubootalk; + } + + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} |