Alangara_PRC8/_module/nss/jh_bnk_x_06.nss

13 lines
152 B
Plaintext
Raw Permalink Normal View History

2024-06-05 21:21:06 -04:00
/*
Make sure PC has 5 gold to give!
*/
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetGold(oPC) < 5) return FALSE;
return TRUE;
}