RATDOG/_module/nss/npcrecognknows.nss

27 lines
617 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: 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;
}