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!

Real Quest Fix (Completing NEXTQUEST)

Custom Title Activated
Loyal Member
Joined
Jun 30, 2008
Messages
3,451
Reaction score
1,616
I thought I had fixed it. But I was wrong. Oh well fixed it anyways.

In MapleQuest.complete:

Replace:
PHP:
            for (MapleQuestAction a : completeActs) {
                a.run(c, selection);
            }
            forceComplete(c, npc);
With:
PHP:
            forceComplete(c, npc);
            for (MapleQuestAction a : completeActs) {
                a.run(c, selection);
            }

Checked packets and saw that I first need to update the Quest Status (which is pretty logic lol).

Anyways have fun :3
 
Newbie Spellweaver
Joined
Jan 17, 2008
Messages
57
Reaction score
8
This was causing that bug that you could complete a quest more then one time?
 
Experienced Elementalist
Joined
Aug 27, 2008
Messages
256
Reaction score
81
Is this already in the latest version of MoopleDev?
 
Back
Top