summaryrefslogtreecommitdiff
path: root/npc/001-2-6/christopher.txt
diff options
context:
space:
mode:
authorSaulc <lucashelaine14@gmail.com>2018-02-18 02:08:36 +0100
committerSaulc <lucashelaine14@gmail.com>2018-02-18 02:08:36 +0100
commit26faa9a208a15ea858f5069a4c0d92e8a0709bdb (patch)
tree7ef0a6a5e39cb63f72ea9a6742f5a4cb320b41b4 /npc/001-2-6/christopher.txt
parentb9416a07a0f085c64888ac02fecd47d43feee218 (diff)
downloadserverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.gz
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.bz2
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.xz
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.zip
delete evol maps
Diffstat (limited to 'npc/001-2-6/christopher.txt')
-rw-r--r--npc/001-2-6/christopher.txt69
1 files changed, 0 insertions, 69 deletions
diff --git a/npc/001-2-6/christopher.txt b/npc/001-2-6/christopher.txt
deleted file mode 100644
index 1bef67866..000000000
--- a/npc/001-2-6/christopher.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-// Evol scripts.
-// Author:
-// Reid
-// Description:
-// Librarian
-
-001-2-6,57,46,0 script Christopher NPC_CHRISTOPHER,{
- function ghost_in_the_library
- {
- narrator S_LAST_NEXT,
- l("Christopher is surrounded by the sunlight from the window.");
-
- speech
- l("To be a legend, you've either got to be dead or excessively old!"),
- l("I think that I am now both..."),
- l("I mean, I am very tired to move all of these books!");
-
- return;
- }
-
- function need_help
- {
- speech S_LAST_NEXT,
- l("Do you need help with something?");
-
- switch (select(l("What kinds of books are there here?"),
- l("You seem a bit tired sir."),
- l("Nothing.")))
- {
- case 1:
- npctalk3 l("You can find novels and poems on this floor.");
- break;
- case 2:
- mes "";
- ghost_in_the_library();
- break;
- case 3:
- npctalk3 l("I love peace and quiet, that's a good choice.");
- }
- return;
- }
-
- function not_so_loud
- {
- npctalkonce l("This floor is reserved for quiet reading, don't speak too loud.");
-
- return;
- }
-
- switch (rand(3))
- {
- case 0:
- ghost_in_the_library();
- break;
- case 1:
- need_help();
- break;
- case 2:
- not_so_loud();
- break;
- }
-
- close;
-
-OnInit:
- .sex = G_MALE;
- .distance = 2;
- end;
-}