16 lines
521 B
Plaintext
16 lines
521 B
Plaintext
#include "mn_i_pwfunctions"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int index = 3;
|
|
|
|
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;
|
|
}
|