Aantioch_Infernum/_module/nss/forgemoneycheck.nss
EpicValor 7770601b3e Modified some areas, items, creatures
Added a forge to make a weapon into another weapon of a different base type.
2023-09-25 18:15:41 -05:00

13 lines
297 B
Plaintext

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;
}