Alangara_PRC8/_module/nss/jh_bnk_x_07.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

13 lines
154 B
Plaintext

/*
Make sure PC has 10 gold to give!
*/
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetGold(oPC) < 10) return FALSE;
return TRUE;
}