15 lines
290 B
Plaintext
15 lines
290 B
Plaintext
|
#include "mn_i_pwfunctions"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int index = 5;
|
||
|
|
||
|
string questId = GetMarkerString(OBJECT_SELF, ExchangeVar(EXCHANGE_QUEST_ID, index), FALSE);
|
||
|
|
||
|
int iResult;
|
||
|
|
||
|
iResult = CheckQuestStatus(GetPCSpeaker(), questId, QUEST_COMPLETED);
|
||
|
|
||
|
return iResult;
|
||
|
}
|