12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
if ((GetGold(GetPCSpeaker()) >= 8000) && (GetLocalInt(GetObjectByTag("px_prototype_wargolem"), "Loot") != 1))
|
||
|
return TRUE;
|
||
|
else
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
|
||
|
|