summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/002-3/note.txt1
-rw-r--r--npc/003-2/lua.txt1
-rw-r--r--npc/017-1/roger.txt4
-rw-r--r--npc/019-2/_import.txt1
-rw-r--r--npc/019-2/harry.txt15
5 files changed, 22 insertions, 0 deletions
diff --git a/npc/002-3/note.txt b/npc/002-3/note.txt
index 310b39d0f..9864ad55e 100644
--- a/npc/002-3/note.txt
+++ b/npc/002-3/note.txt
@@ -38,6 +38,7 @@
narrator S_NO_NPC_NAME,
l("Following these lines are some other writings on this paper."),
l("Do not give your password to anybody! Keep it secret and try not to use the same one anywhere else in the future. - Juliet"),
+ l("People from the press always know what is happening in the world. Talk to them to learn about the latest news! - Jerican from the Press"),
l("I love you, Silvia! - Swezanne"),
l("Other things are written but are not legible anymore.");
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt
index ff5991259..99e25102b 100644
--- a/npc/003-2/lua.txt
+++ b/npc/003-2/lua.txt
@@ -28,6 +28,7 @@
mesn;
mesq l("Hello, I act on the Alliance's behalf.");
+ mesc l("If you want to know what the Alliance is up to, you might have better luck talking to Jerican, from the Press.");
L_Menu:
mes "";
diff --git a/npc/017-1/roger.txt b/npc/017-1/roger.txt
index 94947c3ae..ec89a06c5 100644
--- a/npc/017-1/roger.txt
+++ b/npc/017-1/roger.txt
@@ -132,6 +132,7 @@ L_ShowHat:
close;
L_MadMag:
+ /*
mesn;
mesq l("I have my favorite book of all times, Moby Dick. Let me read some of it to you....");
next;
@@ -142,6 +143,9 @@ L_MadMag:
mesn;
mesq l("I don't really understand it either, but it's not for sale. Maybe you could come back later so I can read more of it to you.");
next;
+ */
+ Journalman(.name$);
+ // >> Will never go past this line
mesn;
mesq l("Have a nice day!");
close;
diff --git a/npc/019-2/_import.txt b/npc/019-2/_import.txt
index 6d964fb0a..a9e9c04c1 100644
--- a/npc/019-2/_import.txt
+++ b/npc/019-2/_import.txt
@@ -4,5 +4,6 @@
"npc/019-2/_warps.txt",
"npc/019-2/angela.txt",
"npc/019-2/guards.txt",
+"npc/019-2/harry.txt",
"npc/019-2/ship.txt",
"npc/019-2/sign.txt",
diff --git a/npc/019-2/harry.txt b/npc/019-2/harry.txt
new file mode 100644
index 000000000..bafc00aea
--- /dev/null
+++ b/npc/019-2/harry.txt
@@ -0,0 +1,15 @@
+// TMW2 scripts.
+// Author:
+// Saulc
+// Jesusalva
+// Description:
+// Harry gives the player latest news on the world
+
+019-2,92,116,0 script Harry NPC_JOURNALMAN,{
+ Journalman(.name$);
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}