Jaysyn904 2105778d4c Fixed creature hak name, added more quest persistence
Fixed creature hak name, added more quest persistence.

Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
2022-06-19 23:39:17 -04:00

27 lines
617 B
Plaintext

//::///////////////////////////////////////////////
//:: npcrecgnknows.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Returns true if this is not the first time
you've spoken to this character
*/
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220617
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetLocalInt(oPC,"Spoke2Greeter") > 0)
return TRUE;
return FALSE;
}