diff options
author | Reid <reidyaro@gmail.com> | 2015-07-09 03:33:49 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-07-09 03:34:16 +0200 |
commit | c87fcba567a39cda0135f2e1fbbe3905cfadbfb2 (patch) | |
tree | 8144deb1a5665dd9b798b78bbd4ffa4f23a8628a | |
parent | 5983d3172e9d82ce2ef69584b7968d386fad317d (diff) | |
download | serverdata-c87fcba567a39cda0135f2e1fbbe3905cfadbfb2.tar.gz serverdata-c87fcba567a39cda0135f2e1fbbe3905cfadbfb2.tar.bz2 serverdata-c87fcba567a39cda0135f2e1fbbe3905cfadbfb2.tar.xz serverdata-c87fcba567a39cda0135f2e1fbbe3905cfadbfb2.zip |
Add Eugene blank NPC on 001-1.
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/eugene.txt | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index 58ac598b..17f9f512 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -8,6 +8,7 @@ npc: npc/001-1/cookiemaster.txt npc: npc/001-1/doors.txt npc: npc/001-1/elmo.txt npc: npc/001-1/enora.txt +npc: npc/001-1/eugene.txt npc: npc/001-1/harbours.txt npc: npc/001-1/lozerk.txt npc: npc/001-1/panels.txt diff --git a/npc/001-1/eugene.txt b/npc/001-1/eugene.txt new file mode 100644 index 00000000..6a03a534 --- /dev/null +++ b/npc/001-1/eugene.txt @@ -0,0 +1,21 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Fishman NPC + +001-1,113,120,0 script Eugene 428,{ + mesn; + mesq l("Ahoi."); + + goto L_Close; + +L_Close: + close; + +OnInit: + setnpcsex G_MALE; + setnpcdistance 2; + end; +} + |