generated from Jaysyn/ModuleTemplate
14 lines
330 B
Plaintext
14 lines
330 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Check if the player has Item Number Four made.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = GetLocalInt(GetModule(), "nPerudocQuest")== 2;
|
|
return iResult;
|
|
}
|