diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-28 17:42:44 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-28 17:42:44 +0000 |
commit | 0d0c5a73f479344f3edb45d75fbfd94638b3453d (patch) | |
tree | 0dfd44743cfe4f1ced4486abd68b4883b5ecd60d /npc/quests | |
parent | 19c38d0bf9b6fe53a4f23c1394ea66e8c6ad1e76 (diff) | |
download | hercules-0d0c5a73f479344f3edb45d75fbfd94638b3453d.tar.gz hercules-0d0c5a73f479344f3edb45d75fbfd94638b3453d.tar.bz2 hercules-0d0c5a73f479344f3edb45d75fbfd94638b3453d.tar.xz hercules-0d0c5a73f479344f3edb45d75fbfd94638b3453d.zip |
Scripts:
* Fixed doors not resetting in kh_kiehl01 after 30 second timer is up.
Database:
* Added remaining 11.3 Equipment.
* Added Known-Effect Cash Shop items.
* Added Valentine's Day (2007) event items with info
* Added St. Patrick's Day (2007) items.
* Added a list of problems with 11.3 equipment and cash shop items to changelog.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10392 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/Kiel_Hyre_Quest.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/npc/quests/Kiel_Hyre_Quest.txt b/npc/quests/Kiel_Hyre_Quest.txt index 8e4c1c37b..7006e636f 100644 --- a/npc/quests/Kiel_Hyre_Quest.txt +++ b/npc/quests/Kiel_Hyre_Quest.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf (Script), DZeroX (Timer) //===== Current Version: ===================================== -//= 1.3 +//= 1.4 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -18,6 +18,7 @@ //= several variables that handle strings to @KHInput$. [L0ne_W0lf] //= 1.2 Removed duplicate NPCs. [Toms] //= 1.3 More Bug fixes, fixed typo. Updated Additional comments. [L0ne_W0lf] +//= 1.4 Fixed doors not resetting in kh_kiehl01 after 30 second timer is up. [L0ne_W0lf] //============================================================ @@ -6175,6 +6176,7 @@ OnTimer30000: stopnpctimer; misceffect 215; disablenpc "Big_Door_1_Warp"; + set getvariableofnpc(.KHDoor1Opened,"Big Door::BigDoorKHQ1"),0; end; OnTouch: @@ -6238,6 +6240,7 @@ OnTimer30000: stopnpctimer; misceffect 215; disablenpc "Big_Door_2_Warp"; + set getvariableofnpc(.KHDoor2Opened,"Big Door::BigDoorKHQ2"),0; end; OnTouch: @@ -6300,6 +6303,7 @@ OnTimer30000: stopnpctimer; misceffect 215; disablenpc "Big_Door_3_Warp"; + set getvariableofnpc(.KHDoor3Opened,"Big Door::BigDoorKHQ3"),0; end; OnTouch: @@ -6363,6 +6367,7 @@ OnTimer30000: stopnpctimer; misceffect 215; disablenpc "Big_Door_4_Warp"; + set getvariableofnpc(.KHDoor4Opened,"Big Door::BigDoorKHQ4"),0; end; OnTouch: @@ -6602,6 +6607,7 @@ OnTimer30000: stopnpctimer; misceffect 215; disablenpc "Big_Door_5_Warp"; + set getvariableofnpc(.KHDoor5Opened,"Big Door::BigDoorKHQ5"),0; end; OnInit: |