diff options
-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; +} + |