generated from Jaysyn/ModuleTemplate
15 lines
343 B
Plaintext
15 lines
343 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Checks if the player does not yet know of the Perudoc Quest
|
|
/////////////////////////////////////
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = GetLocalInt(GetModule(), "nPerudocQuest")< 1;
|
|
return iResult;
|
|
}
|