2021-08-29 23:34:48 -04:00
|
|
|
//::///////////////////////////////////////////////
|
2022-06-18 01:53:20 -04:00
|
|
|
//:: npcrecgnknows.nss
|
2022-06-19 23:39:17 -04:00
|
|
|
//:: Copyright (c) 2022 Project RATDOG
|
2021-08-29 23:34:48 -04:00
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
/*
|
|
|
|
Returns true if this is not the first time
|
|
|
|
you've spoken to this character
|
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
2022-06-18 01:53:20 -04:00
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: Created By: Jaysyn
|
|
|
|
//:: Created On: 20220617
|
2021-08-29 23:34:48 -04:00
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
|
|
int StartingConditional()
|
|
|
|
{
|
2022-06-18 01:53:20 -04:00
|
|
|
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
|
|
|
|
if (GetLocalInt(oPC,"Spoke2Greeter") > 0)
|
2021-08-29 23:34:48 -04:00
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|