I'm still slaving away at my Yuthura recruit mod, and have run into a bit of a annoyance.
After the recruitment, you're stuck with the Juhani journal entry forever (Yuthura replaces Juhani).
Ideally, what I would like to do is get rid of the Juhani journal entries completely - ie: they don't show up anywhere.
If that's not possible, maybe set the Juhani quest to completed, just to get it off of the active quest list.
Is there a way to do this with scripts?
Ideally, what I would like to do is get rid of the Juhani journal entries completely - ie: they don't show up anywhere.
If that's not possible, maybe set the Juhani quest to completed, just to get it off of the active quest list.
A simple script like this should work to remove Juhani's journal entry:
void main() {
RemoveJournalQuestEntry("k_swg_juhani");
}
Thanks a lot stoffe - that's just what I was looking for, and it worked like a charm.