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