generated from Jaysyn/ModuleTemplate
14 lines
351 B
Plaintext
14 lines
351 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Checks if the player has solved the jail quest and Guurk is alive.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = GetLocalInt(GetModule(), "nWaymootQuest2")== 7;
|
|
return iResult;
|
|
}
|