generated from Jaysyn/ModuleTemplate
15 lines
402 B
Plaintext
15 lines
402 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Checks if the player has been allowed inside the jail but has not spoken to
|
|
// warden fratz about the orcish problem.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = GetLocalInt(GetModule(), "nWaymootQuest2")== 2;
|
|
return iResult;
|
|
}
|