20 lines
282 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
int iResult;
object oPC=GetPCSpeaker();
if (GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item2"))&&GetGold(oPC)>=20000)
{
iResult=TRUE;
}
else
{
iResult=FALSE;
}
return iResult;
}