I was wondering if it would be possible to have a script require two entries from different journal topics to be passed before executing an action.
Example of a working script that checks one journal entry at a time:
begin bsQuest20HelpScript
if (GetJournalIndex AH_Quest20 < 10)
disable
elseif (GetJournalIndex AH_Quest20 == 10)
enable
elseif (GetJournalIndex AH_Quest20 > 10)
disable
endif
end bsQuest20HelpScript
if (GetJournalIndex AH_Quest20 < 10)
disable
elseif (GetJournalIndex AH_Quest20 == 10)
enable
elseif (GetJournalIndex AH_Quest20 > 10)
disable
endif
end bsQuest20HelpScript
Nonworking script with what I'm trying to do:
begin bsQuest20JoldiScript
if (GetJournalIndex AH_Quest20 < 10)
disable
elseif (GetJournalIndex AH_Quest20 == 10)
elseif (GetJournalIndex AH_JoldiQuest == 100)
enable
elseif (GetJournalIndex AH_Quest20 > 10)
disable
endif
end bsQuest20JoldiScript
if (GetJournalIndex AH_Quest20 < 10)
disable
elseif (GetJournalIndex AH_Quest20 == 10)
elseif (GetJournalIndex AH_JoldiQuest == 100)
enable
elseif (GetJournalIndex AH_Quest20 > 10)
disable
endif
end bsQuest20JoldiScript
The idea in the second script is to enable the object only if AH_Quest20 == 10 AND AH_JoldiQuest == 100 and disable it in any other case.
Any help provided would be greatly appreciated. Thanks in advance!