Initial Commit

Initial Commit [v1.32PRC8]
This commit is contained in:
Jaysyn904
2025-04-03 13:38:45 -04:00
parent 1213977d8c
commit b464d8da05
6922 changed files with 6176025 additions and 2 deletions

34
_module/nss/qst_c_3_2.nss Normal file
View File

@@ -0,0 +1,34 @@
int StartingConditional()
{
object oPC;
object oHench;
string sTarget;
int iResult;
int iQuest;
int iFlag;
int iIndex;
oPC = GetPCSpeaker();
sTarget = GetLocalString(oPC,"QuestTargetNPC");
iQuest = GetLocalInt(oPC,"QuestType");
iResult = FALSE;
iFlag = 0;
iIndex = 1;
while (iIndex < 5)
{
oHench = GetHenchman(oPC,iIndex);
if (GetTag(oHench) == GetLocalString(oPC,"QuestEscort"))
{
iFlag = 1;
}
iIndex++;
}
if (iQuest == 3 && sTarget == GetTag(OBJECT_SELF) && iFlag == 0)
iResult = TRUE;
return iResult;
}