diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-2-9/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-2-9/janus.txt | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/npc/001-2-9/_import.txt b/npc/001-2-9/_import.txt index 3503809b..7e72fe1e 100644 --- a/npc/001-2-9/_import.txt +++ b/npc/001-2-9/_import.txt @@ -1,2 +1,3 @@ +// npc: npc/001-2-9/janus.txt npc: npc/001-2-9/mapflags.txt npc: npc/001-2-9/_warps.txt diff --git a/npc/001-2-9/janus.txt b/npc/001-2-9/janus.txt new file mode 100644 index 00000000..add99ebc --- /dev/null +++ b/npc/001-2-9/janus.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Party NPC + +001-2-9,30,28,0 script Janus NPC_JANUS,{ + speech 4, + l("Croc!"); + + closedialog; + goodbye; + close; + +OnInit: + .sex = G_MALE; + .distance = 3; + end; +} + |