generated from Jaysyn/ModuleTemplate
15 lines
393 B
Plaintext
15 lines
393 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Check if the player has Item Number Four in his/her inventory.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC = GetPCSpeaker();
|
|
|
|
iResult = GetIsObjectValid(GetItemPossessedBy(oPC, "ItemNumberFour"));
|
|
return iResult;
|
|
}
|