Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -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;
}