generated from Jaysyn/ModuleTemplate
14 lines
430 B
Plaintext
14 lines
430 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Checks if the player has Jenaks Scroll and the quest has been initiated.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(), "JenaksScroll")) && (GetLocalInt(GetModule(), "nJenakQuest")== 1));
|
|
return iResult;
|
|
}
|