diff options
author | Reid <reidyaro@gmail.com> | 2015-08-05 14:56:30 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-08-05 14:56:30 +0200 |
commit | 28ce7954ad75dc8d96338ef27b71ba37108e8679 (patch) | |
tree | 56993edf99e8a9060a0a2432d9fafc57aa8c9a1a | |
parent | a8a140799331c802ec7d0b9cbf671d6773296ea1 (diff) | |
download | serverdata-28ce7954ad75dc8d96338ef27b71ba37108e8679.tar.gz serverdata-28ce7954ad75dc8d96338ef27b71ba37108e8679.tar.bz2 serverdata-28ce7954ad75dc8d96338ef27b71ba37108e8679.tar.xz serverdata-28ce7954ad75dc8d96338ef27b71ba37108e8679.zip |
Add Katja on the top-right part of Artis.
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/katja.txt | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index 64d224f2..aa3dd564 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -12,6 +12,7 @@ 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/katja.txt npc: npc/001-1/lozerk.txt npc: npc/001-1/panels.txt npc: npc/001-1/qonan.txt diff --git a/npc/001-1/katja.txt b/npc/001-1/katja.txt new file mode 100644 index 00000000..fe23f444 --- /dev/null +++ b/npc/001-1/katja.txt @@ -0,0 +1,36 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Little girl playing around the hill on top of the port. + +001-1,164,44,0 script Katja#001-1 123,{ + mesn; + mesq l("Hey"); + next; + mesq l("You look funny, do you want to play with me?"); + + switch (select("Of course!:What game do you want to play?:I don't have much time right now.")) + { + case 1: + + break; + case 2: + + break; + case 3: + + break; + } + + goto L_Close; + +L_Close: + close; + +OnInit: + setnpcsex G_FEMALE; + setnpcdistance 4; + end; +} + |