summaryrefslogtreecommitdiff
path: root/npc/functions/openbook.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
commitcf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch)
treef9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/functions/openbook.txt
parent8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff)
downloadserverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip
Override
Diffstat (limited to 'npc/functions/openbook.txt')
-rw-r--r--npc/functions/openbook.txt34
1 files changed, 0 insertions, 34 deletions
diff --git a/npc/functions/openbook.txt b/npc/functions/openbook.txt
deleted file mode 100644
index cb1a0b11..00000000
--- a/npc/functions/openbook.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-// Evol functions.
-// Author:
-// Reid
-// Description:
-// Narrator dialogue to show the selected book.
-
-function script openbook {
- .@book_name$ = getarg(0, getvariableofnpc(.book_name$, strnpcinfo(0)));
-
- narrator(S_LAST_NEXT,
- l("You open a book named \"%s\".", .@book_name$),
- l("Do you want to read it?"));
-
- return (select("Yes.", "No.") == 1);
-}
-
-function script openbookshelf {
- .@book_name$ = getarg(0, getvariableofnpc(.book_name$, strnpcinfo(0)));
-
- narrator(S_LAST_NEXT,
- l("You see a dust covered book on the shelf..."),
- l("The name of the book is \"%s\".", .@book_name$),
- l("Do you want to read it?"));
-
- return (select("Yes.", "No.") == 1);
-}
-
-function script openoldbook {
- narrator S_LAST_NEXT,
- l("You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing."),
- l("The old book seems to tell about the legend of Aemil. Would you like to read it?");
-
- return (select("Yes.", "No.") == 1);
-}