Alangara_PRC8/_module/nss/conv_q_open04.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

16 lines
521 B
Plaintext

#include "mn_i_pwfunctions"
int StartingConditional()
{
int index = 4;
string questId = GetMarkerString(OBJECT_SELF, ExchangeVar(EXCHANGE_QUEST_ID, index), FALSE);
int questTimes = GetMarkerInt(OBJECT_SELF, ExchangeVar(EXCHANGE_QUEST_REPEAT, index), FALSE);
int numberCompleted = GetQuestCompletedTimes(GetPCSpeaker(), questId);
int iResult = CheckQuestStatus(GetPCSpeaker(), questId, QUEST_BEGUN) || (questTimes > 0 && numberCompleted > 0 && numberCompleted < questTimes);
return iResult;
}