RATDOG/_module/nss/npcrecognknows.nss
Jaysyn904 9e1780d1bc Journal & quest persistence
Journal & quest persistence
2022-06-18 01:53:20 -04:00

27 lines
615 B
Plaintext

//::///////////////////////////////////////////////
//:: npcrecgnknows.nss
//:: Copyright (c) 2022 Rappan Athuk
//:://////////////////////////////////////////////
/*
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;
}