Ancordia_PRC8/_module/nss/qz_chk3000.nss

11 lines
196 B
Plaintext
Raw Permalink Normal View History

2023-09-21 19:51:32 -04:00
//Checks if PC has at least 3000 gold. Used with the Chinchirorin script set.
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (!(GetGold(oPC) >= 3000)) return FALSE;
return TRUE;
}