diff options
author | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-05 13:19:47 +0000 |
---|---|---|
committer | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-05 13:19:47 +0000 |
commit | 04e43423d0aef8009087f92ed557371f5981b471 (patch) | |
tree | f4c9cca120eb81abc795e0861bb66ea4729034fe /npc | |
parent | bba2dcdd71d8baa1041deb78be357b267b1a1c5f (diff) | |
download | hercules-04e43423d0aef8009087f92ed557371f5981b471.tar.gz hercules-04e43423d0aef8009087f92ed557371f5981b471.tar.bz2 hercules-04e43423d0aef8009087f92ed557371f5981b471.tar.xz hercules-04e43423d0aef8009087f92ed557371f5981b471.zip |
Two small fixes/updates
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5464 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/quests/quests_lighthalzen.txt | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 134c07a15..f8497d3de 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -28,6 +28,8 @@ Nexon Date Added
======
+03/05
+ * Used "Laboratory Passport" everywhere in the cube room quest, else how can ppl guess the name? xD [DracoRPG]
03/02
* Added Skotlex's updated marriage script [Vicious]
* Added eACC scripts, thanks to davidchak [Vicious]
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt index c0d9bbc26..66de44c5d 100644 --- a/npc/quests/quests_lighthalzen.txt +++ b/npc/quests/quests_lighthalzen.txt @@ -1140,7 +1140,7 @@ L_4: L4_1:
mes "There is a small card inside of it.";
next;
- mes "You acquired the 'Laboratory Permit'.";
+ mes "You acquired the 'Laboratory Passport'.";
set @gotkey,1;
getitem 2657,1;
close;
@@ -1186,12 +1186,12 @@ L_3: next;
input @answer$;
- if (@answer$ == "Laboratory Permit" || @answer$ == "permit") goto L_4;
+ if (@answer$ == "Laboratory Passport" || @answer$ == "laboratory passport" || @answer$ == "passport") goto L_4;
mes "Nothing happened.";
close;
L_4:
- mes "You inserted the 'Laboratory Keycard' in the hole,";
+ mes "You inserted the 'Laboratory Passport' in the hole,";
mes "and the stair leading down appeared on the floor.";
next;
menu "Go down.",L4_1,"Do not go down.",-;
|