Ancordia_PRC8/_module/nss/quest_isransnpc.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

9 lines
245 B
Plaintext

#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;
return TRUE;
}