Journal & quest persistence
Journal & quest persistence
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user