generated from Jaysyn/ModuleTemplate
14 lines
419 B
Plaintext
14 lines
419 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Checks if the player has finished the Jail Quest, either with Guurk dead or alive.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (GetLocalInt(GetModule(), "nWaymootQuest2")== 6 || GetLocalInt(GetModule(), "nWaymootQuest2")== 7);
|
|
return iResult;
|
|
}
|