• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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