generated from Jaysyn/ModuleTemplate
14 lines
332 B
Plaintext
14 lines
332 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Checks if the player has the Zhent Spy quest.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (GetLocalInt(GetModule(), "nWaymootQuest3")== 1);
|
|
return iResult;
|
|
}
|