2021-08-29 23:34:48 -04:00
|
|
|
//::///////////////////////////////////////////////
|
2022-06-18 01:53:20 -04:00
|
|
|
//:: npcrecognew.nss
|
2022-06-19 23:39:17 -04:00
|
|
|
//:: Copyright (c) 2022 Project RATDOG
|
2021-08-29 23:34:48 -04:00
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
/*
|
2022-06-18 01:53:20 -04:00
|
|
|
|
2021-08-29 23:34:48 -04:00
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
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();
|
|
|
|
//:: first time spoken to
|
|
|
|
if (GetLocalInt(oPC,"Spoke2Greeter") == 0)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
2021-08-29 23:34:48 -04:00
|
|
|
}
|
|
|
|
|