So a glitch occurred the other night where after I was done levelling up Bishop, I got a journal update… for The Wizard’s Arsenal. The one quest that upon completion disappears into nothing appeared out of nowhere in my journal. This isn’t even the first time. A couple days ago, I found it lying around in my journal for no reason, even though it was in the middle of Act 2. Fortunately, I fixed it by going into Tarmas’ house, ‘completing’ the quest.
This time, however, I can’t do the same, because I’m in Arvahn. So I can’t go back to West Harbor.
I remember the discussion; it’s related to the fact that the flag is set onEnter but you can enter before getting the quest, so Tormas resets the flag and you can’t advance it again.
Copy the code below to a new textfile in /Override and call it “ga_deletequest.nss”. [edit: add extension]
in the toolset goto File->OpenConversation/Script …
open “ga_deletequest”
click the Compile button and check the bottom of the window for success.
// 'ga_deletequest'
/*
Dialog script (can also be run from the console etc on OBJECT_SELF).
Removes 'sQuestTag' from the Party Journal.
*/
// kevL 2019.2.23
void main(string sQuestTag)
{
object oPc = GetPCSpeaker();
if (!GetIsObjectValid(oPc))
oPc = OBJECT_SELF;
RemoveJournalQuestEntry(sQuestTag, oPc);
}
Then load your save. It doesn’t matter where your party is. Open the console and run
If you want, check out my party DM tool. It has an operation that should allow a party to jump around a module/campaign (as long as you know the module-name and/or waypoint-tag in advance)
probly not – Edit: but the game may have to be closed and re-loaded from desktop after adding a resource … though a simple area transition usually catches a re-compiled script
try closing and re-opening the toolset …
oh, sorry : the filename should be
ga_deletequest.nss
.nss is the extension for NwScripts (and after compiling, its binary file should appear in the same directory and have extension .ncs)