Journal & quest persistence

Journal & quest persistence
This commit is contained in:
Jaysyn904
2022-06-18 01:53:20 -04:00
parent a5776c69e1
commit 9e1780d1bc
80 changed files with 1972 additions and 45731 deletions

View File

@@ -1,19 +1,26 @@
//::///////////////////////////////////////////////
//:: x2_con_notfirst
//:: Copyright (c) 2003 Bioware Corp.
//:: npcrecgnknows.nss
//:: Copyright (c) 2022 Rappan Athuk
//:://////////////////////////////////////////////
/*
Returns true if this is not the first time
you've spoken to this character
*/
//:://////////////////////////////////////////////
//:: Created By:
//:: Created On:
/*
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220617
//:://////////////////////////////////////////////
int StartingConditional()
{
if (GetLocalInt(OBJECT_SELF,"NW_L_TALKTIMES") > 0)
object oPC = GetPCSpeaker();
if (GetLocalInt(oPC,"Spoke2Greeter") > 0)
return TRUE;
return FALSE;
}