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

22 lines
832 B
Plaintext

#include "x4_inc_functions"
int StartingConditional()
{
object oPC = GetPCSpeaker();
string sDB = CharacterDB(oPC);
if (GetLocalInt(OBJECT_SELF, "Quest_Halt") == TRUE) return FALSE; //We don't want to speak to anyone if the quest was halted
if (GetLocalString(OBJECT_SELF, "sPC") != sDB) return FALSE; //We don't want to speak to anyone but the questing PC
if (GetCampaignString(sDB, "QUEST_TEMPLATE") != "ransom") return FALSE; //We don't want to speak this line if we're not a target of a ransom quest
if (Random(3) != 0) return FALSE; //We don't want to speak this line 1/3 of the time
string sName = GetLocalString(OBJECT_SELF, "sName");
string sLastName = GetLocalString(OBJECT_SELF, "sLastName");
SetCustomToken(11001, sName);
SetCustomToken(11002, sLastName);
return TRUE;
}