summaryrefslogtreecommitdiff
path: root/npc/001-2-5/books.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/001-2-5/books.txt
parent8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff)
downloadserverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip
Override
Diffstat (limited to 'npc/001-2-5/books.txt')
-rw-r--r--npc/001-2-5/books.txt33
1 files changed, 0 insertions, 33 deletions
diff --git a/npc/001-2-5/books.txt b/npc/001-2-5/books.txt
deleted file mode 100644
index fc5e3abe..00000000
--- a/npc/001-2-5/books.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-// Evol scripts.
-// Author:
-// Reid
-// Description:
-// Gasaron
-
-001-2-5,30,32,0 script #001-2-5-Book1 NPC_NO_SPRITE,{
-
- function read_book {
- narrator S_FIRST_BLANK_LINE,
- l("There are two kinds of dialogue, the ones with regular citizens, and the ones with other adventurers."),
- l("When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key."),
- l("You can select a specific person with the [N] key, and then, press the [T] key when you are surrounded by more than one person."),
- l("You can also simply talk to any citizen around you by clicking on them."),
- l("Nevertheless, you can talk with another adventurer by pressing the [Enter] key and then type what you want to say!"),
- l("If you want to say something to a specific player, you can type \"/query Playername\" or \"/whisper Playername message\", this will create a new tab on your chat window.");
- }
-
-OnShelfUse:
- if (openbookshelf())
- read_book;
- close;
-
-OnUse:
- if (openbook())
- read_book;
- close;
-
-OnInit:
- .book_name$ = "Communication Theory";
- .distance = 1;
- end;
-}