NWNDS/nwnds_module/ta_hasearthrelic.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

11 lines
187 B
Plaintext

// Check for Nadie's Earth Relic
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetItemPossessedBy(oPC, "QST_EARTHRELIC") == OBJECT_INVALID) return FALSE;
return TRUE;
}