Stuck in De'Arnise Stronghold Questline
Marte1980
Member Posts: 8
I've got to the point where I accepted the priest of Tempus, but now the quest is stuck. It's been more than 50 days since then, but Lord Roenall hasn't appeared. I could check/modifiy the related global variables with EEKeeper, if I knew what they were. Any help?
0
Comments
I didn't even need the 2nd command, since after spawning the messenger, he came to speak to me, which means the questline was alright, but the messenger wasn't spawning and it seems that without the messenger spawning first, the majordomo keeps saying that there's nothing new, so basically, if the messenger doesn't spawn, the questline hangs.
Can you tell me which files do I need to check to see which global variables are involved in which quest and what values do they need to have and the related events (like the spawning of a messenger). I mean, if something similar happens again in some other stage of this quest or some other quest, where do I need to look to see what's supposed to happen that is not happening? For example, where did you find the info about the global keepplot and that it neede to be at value 4 and about the messenger(kprunn01)?
Using NearInfinity, I did a CRE search for "keep messenger," then looked at the associated DLG file to see the trigger condition.
Thanks, I'll have to look into CRE files and learn how they're structured. I've done some item, spell and .2da modding, but I've never done that with CRE files. That will have to change! (Well, hopefully not, since I'd prefer to have no other similar problems, but ...)
P.S. Sorry for the late reply!
Thank you, this worked for me.
I wish to also say that I had this issue and when I created kprunn01 then the quest continued. He must have spawned somewhere and I escaped him before he had a chance to catch me - I wonder if I do bump into him if that would glitch things up with the stronghold quest (seeing as there are two of them now)?
I did a GetGlobal for keepplot and it was indeed already on 4 so it does seem like this was the issue.
"Spawn the keep messenger with C:CreateCreature("kprunn01")."
I'm using a Mac
Sorry, I know this isn't the answer you are looking for. I have no idea how to make the keep messenger spawn via a console command.
Then open that file up (it's a plain text file full of code, so a text editor is suitable) and add the following line:
SetPrivateProfileString('Program Options','Debug Mode','1')
Once you have that, it's Control-Option-Space to bring up the console, at which point you can type stuff like that command in.
The messenger stuff ... actually, based on my experience, the most common issue is that the block to spawn him gets interrupted and only partially executes. So the variable for "he's spawned already, don't do it again" gets set, but he doesn't actually spawn. The traces show up in a save file; if this happened, there's an invisible "BDOFFSCR" creature on some map where the messenger was supposed to spawn. That creature would normally be despawned by later actions in the same block that spawned it, but the interruption leaves it in place.
Greatly appreciate your assistance!
Welcome to the forum and have fun adventuring!