diff options
author | SinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-20 17:40:30 +0000 |
---|---|---|
committer | SinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-20 17:40:30 +0000 |
commit | 1a9e8d5552c9bf30a190e64795a42f2eba553119 (patch) | |
tree | 4cd24316a1b29cafd895e5d1b3e9a4d86f44984e /npc/quests/quests_lighthalzen.txt | |
parent | 504db5831b550a06487c2e7e583a26d91e75e53e (diff) | |
download | hercules-1a9e8d5552c9bf30a190e64795a42f2eba553119.tar.gz hercules-1a9e8d5552c9bf30a190e64795a42f2eba553119.tar.bz2 hercules-1a9e8d5552c9bf30a190e64795a42f2eba553119.tar.xz hercules-1a9e8d5552c9bf30a190e64795a42f2eba553119.zip |
* Small fixes to Hugel and Lighthalzen quests.
- 'gettimetick' checking in Schwartzvalt Trilogy now looks for both positive and negative values.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11528 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_lighthalzen.txt')
-rw-r--r-- | npc/quests/quests_lighthalzen.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt index b4a6ac3f7..9c8e8f71e 100644 --- a/npc/quests/quests_lighthalzen.txt +++ b/npc/quests/quests_lighthalzen.txt @@ -4,7 +4,7 @@ //= Persian, Vicious_Pucca, aoa00, Evera, MasterOfMupppets, //= Lupus, Lord Gywall //===== Current Version: ===================================== -//= 3.5a +//= 3.7 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -62,6 +62,8 @@ //= Added cutins for "Maku" npc, and changed "set HP" to percentheal. //= 3.5a Adjusted EXP given by "Benkasttein" to be the same as that given by Maku. [L0ne_W0lf] //= 3.6 Corrected NPC names to fall within proper restrictions. [L0ne_W0lf] +//= 3.7 Counter-fixed negative value checking to now look for both positive and negative values +//= since its symbol depends on the time. [SinSloth] //============================================================ lighthalzen,1,1,7 script sneakAddSuber -1,{ @@ -8671,7 +8673,7 @@ OnTouch: if((lhz_boss > 27) && (lhz_boss < 35)) { set @sneaktime,gettimetick(0) % 100; - if((@sneaktime > 10) && (@sneaktime < 59)) + if((@sneaktime > 10 && @sneaktime < 59) || (@sneaktime < -10 && @sneaktime > -59)) { mes "^3355FFAs you approach"; mes "the corner, you can"; |