NWNDS/nwnds_module/ta_hasearthrelic.nss

11 lines
187 B
Plaintext
Raw Normal View History

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