Aantioch_Infernum/_module/nss/forgemoneycheck.nss

13 lines
297 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
// Get the PC who is involved in this conversation
object oPC = GetPCSpeaker();
// The PC must have at least 1000000 gold.
if ( GetGold(oPC) < 1000000 )
return FALSE;
// If we make it this far, we have passed all tests.
return TRUE;
}