8 lines
176 B
Plaintext
8 lines
176 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nPrice = GetLocalInt(oPC, "HouseToSell_p");
|
|
if(GetGold(oPC) < nPrice) return TRUE;
|
|
return FALSE;
|
|
}
|