Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Quest Matching - Missing BCU / ANI Quest

Initiate Mage
Joined
Jun 12, 2017
Messages
13
Reaction score
0
When i run my server's bins i get this error with field server. Checked my configs but everything is ok in them.
This is the error in my Field Log:

Code:
07-18 08:32:44|  [Notify] CFieldIOCP::IOCPInit# success to LoadQuestInfo
07-18 08:32:44|[ERROR] CQuestMatching::CheckQuestMatchingAndItemMatching# BCUQuestIndex(171) ANIQuestIndex(559), don't have BCUQuestInfo
07-18 08:32:44|[ERROR] CQuestMatching::CheckQuestMatchingAndItemMatching# BCUQuestIndex(171) ANIQuestIndex(559), don't have ANIQuestInfo
07-18 08:32:44|[ERROR] fail to call m_QuestMatching.CheckQuestMatchingAndItemMatching()
07-18 08:32:44|[Error] FieldServer IOCPInit Error
 
Last edited by a moderator:
[emoji848]
Legend
Joined
Dec 3, 2011
Messages
2,232
Reaction score
1,518
Re: [ERROR] FieldServer IOCIPInit Error

Modified quests? Mismatching server and DB?

This has already been discussed:

http://forum.ragezone.com/f908/3-5-error-strikes-major-932410

Questmatching validation failures root from quests existing for one Nation (ANI or BCU) but not for the other. The matches are found inside the ti_QuestMatching table in the account database. This basically ensures that you keep your quests when changing nations.

Check your quest files and matching table.
 
Upvote 0
[emoji848]
Legend
Joined
Dec 3, 2011
Messages
2,232
Reaction score
1,518
Code:
USE atum2_db_account
GO

DELETE FROM ti_QuestMatching
GO

You have been warned.
 
Upvote 0
Back
Top