HiddenTradition_PRC8/_module/nss/ro_n_checkgold.nss

14 lines
167 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetGold(oPC) >=50)
{
return FALSE;
}
else
{
return TRUE;
}
}