blob: 7cf87dd40294df52bb30aceda17b0a2ef69b7690 (
plain) (
tree)
|
|
// Evol functions.
// Author:
// Reid
// Description:
// Narrator dialogue to show the selected book.
// Variables:
// @book_name$ = The name of the book to read.
function script openbook {
.@book_name$ = "\"" + l(getarg(0, getvariableofnpc(.book_name$, strnpcinfo(0)))) + "\"";
mesc l("You open a book named @@. Do you want to read it?", .@book_name$);
next;
return (select("Yes.", "No.") == 1);
}
function script openbookshelf {
.@book_name$ = "\"" + l(getarg(0, getvariableofnpc(.book_name$, strnpcinfo(0)))) + "\"";
narrator S_LAST_NEXT,
l("You see a dust covered book on the shelf... The name of the book is @@.", .@book_name$),
l("Do you want to read it?");
return (select("Yes.", "No.") == 1);
}
|