generated from Jaysyn/ModuleTemplate
14 lines
343 B
Plaintext
14 lines
343 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Check if the player has atleast finished the Silfana quest.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = GetLocalInt(GetModule(), "nSuzailQuest")>= 14;
|
|
return iResult;
|
|
}
|