summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorSinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-08-13 09:25:55 +0000
committerSinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-08-13 09:25:55 +0000
commit9635520ca3850e702ef26c5189ef39e39324dedc (patch)
tree08ad9cebf167b6396e86494614536ff6f0479492 /npc
parentf7390b98e9b1d4f23d522bfeb2575201ee85f467 (diff)
downloadhercules-9635520ca3850e702ef26c5189ef39e39324dedc.tar.gz
hercules-9635520ca3850e702ef26c5189ef39e39324dedc.tar.bz2
hercules-9635520ca3850e702ef26c5189ef39e39324dedc.tar.xz
hercules-9635520ca3850e702ef26c5189ef39e39324dedc.zip
* Fixed a wrong negative value checking in Schwartzvalt Trilogy quest.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10993 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r--npc/Changelog.txt1
-rw-r--r--npc/quests/quests_lighthalzen.txt4
2 files changed, 4 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt
index 64248d0b8..7abf13f89 100644
--- a/npc/Changelog.txt
+++ b/npc/Changelog.txt
@@ -1,6 +1,7 @@
Date Added
======
2007/08/13
+ * Fixed a wrong negative value checking in Schwartzvalt Trilogy quest. [SinSloth]
* Changed "item names" into item ID constants, added missing [] and fixed a bug in bs skill quest [Lupus]
2007/08/12
* Rev. 10989 Merchant job quest bug fixes. Thanks to Barron-Monster. [L0ne_W0lf]
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt
index 1410f90da..c1803a081 100644
--- a/npc/quests/quests_lighthalzen.txt
+++ b/npc/quests/quests_lighthalzen.txt
@@ -56,6 +56,7 @@
//= 3.2 Updated some NPCs regarding Hugel Rebellion Quest. [SinSloth]
//= 3.2 Removed the NPC "#kiz03-4" as I couldn't find any [L0ne_W0lf]
//= reference to it in the Aegis script.
+//= 3.3 Fixed a wrong negative value checking in Schwartzvalt Trilogy quest. [SinSloth]
//============================================================
lighthalzen,1,1,7 script sneakAddSuber -1,{
@@ -7250,6 +7251,7 @@ L_Mission:
mes "find. I'm sorry that I can't";
mes "tell you more, but we've got";
mes "to protect our security...";
+ next;
mes "[Karl]";
mes "And don't worry...";
mes "She'll know exactly";
@@ -8645,7 +8647,7 @@ OnTouch:
if((lhz_boss > 27) && (lhz_boss < 35))
{
set @sneaktime,gettimetick(0) % 100;
- if((@sneaktime < -10) && (@sneaktime > -59))
+ if((@sneaktime > 10) && (@sneaktime < 59))
{
mes "^3355FFAs you approach";
mes "the corner, you can";