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