diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-04-12 10:38:06 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2015-04-12 10:38:06 +0530 |
commit | 5325463c76c0d710f3063faaa1f5deb006411374 (patch) | |
tree | d060cc1a0d87a3e51840833431cd8c438b151753 /npc | |
parent | 1b10c7ccd946aaa983d678f9aee6da5e0a315686 (diff) | |
download | hercules-5325463c76c0d710f3063faaa1f5deb006411374.tar.gz hercules-5325463c76c0d710f3063faaa1f5deb006411374.tar.bz2 hercules-5325463c76c0d710f3063faaa1f5deb006411374.tar.xz hercules-5325463c76c0d710f3063faaa1f5deb006411374.zip |
Fixed SealedShrine Instance trying to change quest without checking, Report #8619
Diffstat (limited to 'npc')
-rw-r--r-- | npc/instances/SealedShrine.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/instances/SealedShrine.txt b/npc/instances/SealedShrine.txt index 07e0634b5..240bc1ac4 100644 --- a/npc/instances/SealedShrine.txt +++ b/npc/instances/SealedShrine.txt @@ -348,7 +348,9 @@ prt_monk,261,91,3 script Rust Blackhand#edq 4_M_DWARF,{ next; mes "[Rust Blackhand]"; mes "You'll never know how great this hat is until you get one. If you understood, go and get the ingredients."; - changequest 3042,3043; + if (questprogress(3042)==1) + erasequest 3042; + setquest 3043; close; case 2: mes "[Rust Blackhand]"; @@ -403,8 +405,9 @@ prt_monk,261,91,3 script Rust Blackhand#edq 4_M_DWARF,{ next; mes "[Rust Blackhand]"; mes "You'll never know how great this hat is until you get one. If you understood, go and get the ingredients."; - //recall_completequest 3043 - changequest 3042,3043; + if (questprogress(3042)==1) + erasequest 3042; + setquest 3043; close; case 2: mes "[Rust Blackhand]"; |