summaryrefslogtreecommitdiff
path: root/npc/000-0-1
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2015-12-27 23:21:39 +0100
committerReid <reidyaro@gmail.com>2015-12-27 23:21:39 +0100
commite8881e6af2c36dadbb1ffa5e5b55b547f9332c07 (patch)
tree0446df29844afc69f91c645d19353b81446bfdd1 /npc/000-0-1
parent92fe2e8c1e6be81f035149a1ab9e077a8a40405b (diff)
downloadserverdata-e8881e6af2c36dadbb1ffa5e5b55b547f9332c07.tar.gz
serverdata-e8881e6af2c36dadbb1ffa5e5b55b547f9332c07.tar.bz2
serverdata-e8881e6af2c36dadbb1ffa5e5b55b547f9332c07.tar.xz
serverdata-e8881e6af2c36dadbb1ffa5e5b55b547f9332c07.zip
Add Narrator script on 000-0-1.
Diffstat (limited to 'npc/000-0-1')
-rw-r--r--npc/000-0-1/narrator.txt33
1 files changed, 33 insertions, 0 deletions
diff --git a/npc/000-0-1/narrator.txt b/npc/000-0-1/narrator.txt
new file mode 100644
index 00000000..5cfff139
--- /dev/null
+++ b/npc/000-0-1/narrator.txt
@@ -0,0 +1,33 @@
+// Evol scripts.
+// Author:
+// Reid
+// Description:
+// Narrator explain to the player that he is dreaming.
+// Variable:
+// 0 General_Narrator
+// Values:
+// 0 PC is in the game introduction.
+// 1 PC arrived Artis.
+
+000-0-1,25,28,0 script Narrator#000-0-1 NPC_NARRATOR,{
+
+ narrator 4,
+ l("Look, we finally meet."),
+ l("I think that you already understood, you are asleep."),
+ l("The ship left the island, finally, Nard's crew is heading to Artis, and you are onboard don't worry."),
+ l("I'm sure that you wonder a lot of things, you will discover them soon, don't you worry..."),
+ l("Ah, seagulls, we are arriving..."),
+ l("..."),
+ l("Wake up!");
+
+ if (countitemcolor(718) == 1) delitem 718, 1;
+ setq General_Narrator, 1;
+ savepoint "001-2-22.gat", 50, 38;
+ warp "001-2-22.gat", 50, 38;
+ closedialog;
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ end;
+}