PWE_PRC8/_module/nss/cannotafford.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

14 lines
304 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
int iDiff = GetLocalInt(oPC, "MODIFY_DIFF");
if (iDiff = 1)
{
int iValue = GetLocalInt(oPC, "MODIFY_VALUE");
int iGold = GetGold(oPC);
return( iGold < iValue);
}
else
return FALSE;
}