Ancordia_PRC8/_module/nss/qz_chk300.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

11 lines
194 B
Plaintext

//Checks if PC has at least 300 gold. Used with the Chinchirorin script set.
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (!(GetGold(oPC) >= 300)) return FALSE;
return TRUE;
}