Issue Information
-
#008511
-
0 - None Assigned
-
Fixed
Issue Confirmations
-
Yes (1)No (0)
But the New Oz NPC on line 13054 is kinda messed up.
You can repeat the Food support one infinite times and if you look while the server is running when trying to do any of the quests you get missing quest errors.
Edit:
Also
Slot Expert Nattuer NPC all enchantment attempts will fail now.
Issue was at line 935
if ( .@luckyday%20 ){
Changed to:
if ( .@luckyday < 5 ){
However I am not sure if that chance matches the official.
About slot enchanter, in official it's like, if you have got numbers like 20,40,60,80,.. then only it will pass, so I guess that's the official implementation.
You should confirm that though, we did a lot of testing and failed 100% of the time. Also had players report that they were failing 100% of the time. Maybe it's just our insane bad luck. Soon as I changed it things went back to normal.
Condition for passing as per data we have
if ((ur_luckyday == 20) | (ur_luckyday == 40) | (ur_luckyday == 60) | (ur_luckyday == 80) | (ur_luckyday == 100))(though was missing the 100 check in hercules repo)
Fixed @ https://github.com/H...fe05da136bbed3d
I'll have my team test everything and confirm it today, I'll let you know if there are any other issues.
Oz is still a bit wacky.
[Error]: quest_delete: Character ##### doesn't have quest 13062.
Got this error when attempting to do the quest the first time.
And I was still able to do the quest twice in a row, after that it seems to have gone back to normal.
Also minor issue:
[Warning]: misuse of 'close2'! trying to use it without prior dialog! skipping...
[Debug]: Source (NPC): New Oz#1 at ecl_tdun03 (68,80)
When trying to do the other quests:
[Error]: quest_change: Character ##### doesn't have quest 13066.
[Error]: quest_change: Character ##### doesn't have quest 13064.
So it seems the check for which quests you have is still a bit off.
Edited by nihadm89, 28 January 2015 - 06:58 AM.
close2; is cause of something else, which is reported to respective dev, and let's see what will be appropriate solution for close2;Slot enchanter is good now.
Oz is still a bit wacky.
[Error]: quest_delete: Character ##### doesn't have quest 13062.
Got this error when attempting to do the quest the first time.
And I was still able to do the quest twice in a row, after that it seems to have gone back to normal.
Also minor issue:
[Warning]: misuse of 'close2'! trying to use it without prior dialog! skipping...
[Debug]: Source (NPC): New Oz#1 at ecl_tdun03 (68,80)
When trying to do the other quests:
[Error]: quest_change: Character ##### doesn't have quest 13066.
[Error]: quest_change: Character ##### doesn't have quest 13064.
So it seems the check for which quests you have is still a bit off.
other will be fixed after close2
Been Fixed at https://github.com/H...fa891927f2351d6[Error]: quest_delete: Character ##### doesn't have quest 13062.
Got this error when attempting to do the quest the first time.
And I was still able to do the quest twice in a row, after that it seems to have gone back to normal.
Also minor issue:
When trying to do the other quests:
[Error]: quest_change: Character ##### doesn't have quest 13066.
[Error]: quest_change: Character ##### doesn't have quest 13064.
[Warning]: misuse of 'close2'! trying to use it without prior dialog! skipping... [Debug]: Source (NPC): New Oz#1 at ecl_tdun03 (68,80)^ Will be fixed very soon(since its core mistakes, rather than script)