Page 1 of 1

Mummy Wrappings Quest Bug [RESOLVED 0.10.23]

Posted: Thu Mar 05, 2020 10:25 pm
by kingink
Using version: 10.20 Linux 64-bit

On completion of the mummy wrappings quest for the mages guild, the mummy wrappings quest item is not removed from inventory resulting in mummy wrappings permanently stuck in inventory.

(Err... Any console command to get rid of this thing?)

Save from before turning in quest included.

Re: Mummy Wrappings Quest Bug

Posted: Sun Mar 08, 2020 9:36 pm
by Interkarma
Thank you for save and version number! :)

This one is a known side-effect of how the quest is tombstoned (marked for deletion) for a time prior to actual expiration. When quests end, sometimes items need to stick around (e.g. Morgiah's wedding invitation) while other items need to disappear instantly (e.g. mummy wrappings). Unless the quest itself specifies, there's no universal way for the quest system to make that call.

The best way to fix this one would be to rewrite the success task in N0B00Y06 to remove the item at hand-in time:

Code: Select all

_reward_ task:
	toting _wrappings_ and _qgiver_ clicked 
	give pc _gold_ 
	take _wrappings_ from pc
	end quest 
On your side, the item will disappear within a few game days when the quest expires. Fast travelling some distance will tick this over faster.

Re: Mummy Wrappings Quest Bug

Posted: Wed Mar 11, 2020 8:10 am
by Jay_H
Interkarma wrote: Sun Mar 08, 2020 9:36 pmThe best way to fix this one would be to rewrite the success task in N0B00Y06 to remove the item at hand-in time
I've added it to my list.

Re: Mummy Wrappings Quest Bug

Posted: Wed Mar 11, 2020 9:07 am
by Interkarma
Thank you Jay! :)

Re: Mummy Wrappings Quest Bug

Posted: Mon Apr 20, 2020 5:18 pm
by pango
Just saw in DFQFIX list of fixes:

Code: Select all

S0000015
    The reward you get from Barenziah, Eadwyre or Helseth is not made permanent, which means it will vanish from your inventory as soon as the quest is over.
        This issue has been fixed.
So I guess the classic approach is to make quest items disappear when a quest is over, but can be overridden so that some items stay in inventory?
Also, checking the original quest with and without that patch could give some infos about how this is achieved...

Re: Mummy Wrappings Quest Bug

Posted: Mon Apr 20, 2020 6:48 pm
by Interkarma
Non permanent items like this used to be cleared immediately on tombstone in DFU as well. Not sure exactly when that changed. I don't believe this issue existed back in 2017/18 when the quest system was in early progress, it's something that happened later.

I'll need to look at this soon in any case as I don't want this issue in Beta.

Re: Mummy Wrappings Quest Bug

Posted: Tue Apr 21, 2020 1:20 am
by Interkarma
Have investigated this and worked out why it's broken. Regression fixed in following commit.

https://github.com/Interkarma/daggerfal ... 77677f6c47

Re: Mummy Wrappings Quest Bug

Posted: Tue Apr 21, 2020 6:16 am
by pango
Excellent!