Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

  • #008511

  • 0 - None Assigned

  • Fixed

Issue Confirmations

  • Yes (1)No (0)
Photo

Eclage Quest New Oz

Posted by Nihad on 27 January 2015 - 12:59 PM

Not sure if it is because of this update: https://github.com/H...737dd0de#diff-5

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.

changed status to: Confirmed

Will update the New Oz next day.
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.

changed status to: Fixed

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

Thank you. :D
I'll have my team test everything and confirm it today, I'll let you know if there are any other issues.

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.

Edited by nihadm89, 28 January 2015 - 06:58 AM.


changed status to: Started

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.

close2; is cause of something else, which is reported to respective dev, and let's see what will be appropriate solution for close2;
other will be fixed after close2

[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.

Been Fixed at https://github.com/H...fa891927f2351d6


[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)

changed status to: Fixed