REO-EE/_module/nss/questownercheck1.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

17 lines
186 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
object oNPC = OBJECT_SELF;
if (GetLocalString(oNPC, "QuestOwner1") == GetName(oPC))
{
return TRUE;
}
else
{
return FALSE;
}
}