Ancordia_PRC8/_module/nss/quest_isransresc.nss

11 lines
363 B
Plaintext
Raw Permalink Normal View History

2023-09-21 19:51:32 -04:00
#include "x4_inc_functions"
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetLocalObject(OBJECT_SELF, "oPC") != oPC) return FALSE;
if (GetLocalInt(OBJECT_SELF, "RansomQuest") == FALSE) return FALSE;
if (GetLocalInt(OBJECT_SELF, "Rescued") == FALSE) return FALSE;
if (GetIsInCombat(oPC) == TRUE) return FALSE;
return TRUE;
}