int StartingConditional()
{

object oPC = GetPCSpeaker();
object oNPC = OBJECT_SELF;

if (GetLocalString(oNPC, "QuestOwner1") == GetName(oPC))
{
return TRUE;
}
else
{
return FALSE;
}

}