Issue Information
-
#006761
-
0 - None Assigned
-
Fixed
Issue Confirmations
-
Yes (1)No (0)
0
Cannot validate the Conquer Orc Village! quest
Posted by Hercules Bot on 05 October 2012 - 06:52 PM
Originally posted by iluvatar
Well,
I got the Conquer Orc Village! quest with a merchant about level 40. Because the quest is quite hard, I kill others type of monster. Then I do the blacksmith quest, and I am now level 66, without validating this quest. Then i went to Eden Group, and talk with Instructor Ur, who give me a quest (to hunt stalactic golem). Then I killed all my orc babies, but cannot validate the Conquer Orc Village! quest anymore.
I made some research, and I found why (all happened in /npc/re/quests/eden/eden_quests.txt):
- I take the Conquer Orc Village! quest, and that set the variable para_suv01 to 24.
- I speek to NPC Hooksha, and continue the Conquer Orc Village! quest. Variable para_suv01 is now 25.
- I speek to Instructor Ur (code begins at line 3843 of the file).
- Because I'm lvl >= 60 and < 70, and para_suv01 < 39, he gives me the quest (to go to Romeo in Comodo). Then para_suv01 is set to 39.
And the Conquer Orc Village! quest is unvalidable, because I'm in the para_suv01 > 32 case (line 2110).
To correct this bug, we should make Instructor Ur verify that the player don't have any Eden quest active before give this quest. So the condition must be : para_suv-1 >= 38 && para_suv01 < 39, so para_suv01 == 38.
I hope you will resolve this bug as soon as possible, and my research were useful.
Well,
I got the Conquer Orc Village! quest with a merchant about level 40. Because the quest is quite hard, I kill others type of monster. Then I do the blacksmith quest, and I am now level 66, without validating this quest. Then i went to Eden Group, and talk with Instructor Ur, who give me a quest (to hunt stalactic golem). Then I killed all my orc babies, but cannot validate the Conquer Orc Village! quest anymore.
I made some research, and I found why (all happened in /npc/re/quests/eden/eden_quests.txt):
- I take the Conquer Orc Village! quest, and that set the variable para_suv01 to 24.
- I speek to NPC Hooksha, and continue the Conquer Orc Village! quest. Variable para_suv01 is now 25.
- I speek to Instructor Ur (code begins at line 3843 of the file).
- Because I'm lvl >= 60 and < 70, and para_suv01 < 39, he gives me the quest (to go to Romeo in Comodo). Then para_suv01 is set to 39.
And the Conquer Orc Village! quest is unvalidable, because I'm in the para_suv01 > 32 case (line 2110).
To correct this bug, we should make Instructor Ur verify that the player don't have any Eden quest active before give this quest. So the condition must be : para_suv-1 >= 38 && para_suv01 < 39, so para_suv01 == 38.
I hope you will resolve this bug as soon as possible, and my research were useful.