RATDOG/_module/nss/npcrecognew.nss

24 lines
545 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: npcrecognew.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220617
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
//:: first time spoken to
if (GetLocalInt(oPC,"Spoke2Greeter") == 0)
{
return TRUE;
}
return FALSE;
}