11 lines
175 B
Plaintext
11 lines
175 B
Plaintext
int StartingConditional()
|
|
{
|
|
int nPrice = GetLocalInt(OBJECT_SELF, "CURRENTPRICE");
|
|
|
|
if(GetGold(GetPCSpeaker()) >= nPrice)
|
|
{ return TRUE; }
|
|
|
|
return FALSE;
|
|
|
|
}
|