20 lines
261 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
int iResult;
object oPC=GetPCSpeaker();
if (GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item3")))
{
iResult=TRUE;
}
else
{
iResult=FALSE;
}
return iResult;
}