diff options
author | j-tkay <j-tkay@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-09-02 14:09:41 +0000 |
---|---|---|
committer | j-tkay <j-tkay@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-09-02 14:09:41 +0000 |
commit | 8c18ee48ec9a1bce1a3fd004997f0933155cdf93 (patch) | |
tree | 57da469e75492bedead366d2a4648dc6729b27f9 /npc/quests/thana_quest.txt | |
parent | ace1dbb02c82cdf6de0c595e553ec76d9882243d (diff) | |
download | hercules-8c18ee48ec9a1bce1a3fd004997f0933155cdf93.tar.gz hercules-8c18ee48ec9a1bce1a3fd004997f0933155cdf93.tar.bz2 hercules-8c18ee48ec9a1bce1a3fd004997f0933155cdf93.tar.xz hercules-8c18ee48ec9a1bce1a3fd004997f0933155cdf93.zip |
- Fixed bugreport:6607, where a hidden warp still warp players to the next level. (npc/quests/thana_quest.txt)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16732 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/thana_quest.txt')
-rw-r--r-- | npc/quests/thana_quest.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/quests/thana_quest.txt b/npc/quests/thana_quest.txt index a01f15318..fcd3c5451 100644 --- a/npc/quests/thana_quest.txt +++ b/npc/quests/thana_quest.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= [Ishizu-chan] //===== Current Version: ===================================== -//= 2.6 +//= 2.7 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= @@ -29,6 +29,7 @@ //= 2.5 Cleaning. [Euphy] //= 2.5a Fixed an incorrect variable. [Euphy] //= 2.6 Merged identical timer labels. [Euphy] +//= 2.7 Fixed hidden warp (2nd floor) still warp players. [Joseph] //============================================================ hu_fild01,140,163,5 script Tower Keeper 852,3,3,{ @@ -889,7 +890,7 @@ tha_t02,227,163,0 script 3rdf_warp#tt 45,1,1,{ end; OnInit: - hideonnpc "3rdf_warp#tt"; + disablenpc "3rdf_warp#tt"; end; OnTouch: @@ -898,13 +899,13 @@ OnTouch: end; OnEnable: - hideoffnpc "3rdf_warp#tt"; + enablenpc "3rdf_warp#tt"; initnpctimer; end; OnTimer30000: stopnpctimer; - hideonnpc "3rdf_warp#tt"; + disablenpc "3rdf_warp#tt"; end; } |