20 lines
282 B
Plaintext
20 lines
282 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
object oPC=GetPCSpeaker();
|
||
|
|
||
|
if (GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item3"))&&GetGold(oPC)>=20000)
|
||
|
{
|
||
|
iResult=TRUE;
|
||
|
}
|
||
|
|
||
|
else
|
||
|
|
||
|
{
|
||
|
iResult=FALSE;
|
||
|
|
||
|
}
|
||
|
|
||
|
return iResult;
|
||
|
}
|