Removed JAI

Removed JAI, added CODI AI.  Fixed encounters & NPCs in Forest of Hope Central.  Fixed Outcast store not opening.  Added Druid Grove & associated NPCS.
This commit is contained in:
Jaysyn904
2022-12-04 01:43:33 -05:00
parent 9a3a98bf52
commit f143ccfc24
353 changed files with 136542 additions and 85666 deletions

View File

@@ -1,6 +1,11 @@
//
// Spawn Check - PCs
//
// void main (){}
int ParseFlagValue(string sName, string sFlag, int nDigits, int nDefault);
int ParseSubFlagValue(string sName, string sFlag, int nDigits, string sSubFlag, int nSubDigits, int nDefault);
object GetChildByTag(object oSpawn, string sChildTag);
@@ -111,7 +116,19 @@ int SpawnCheckPCs(object oSpawn)
}
//
//:: #52 - Spawn if Drusilla isn't dead
if (nCheckPCs == 52)
{
// Check Journal Quest Entry
int nQuest = GetLocalInt(oPC, "VengefulDruid");
if (nQuest <= 89)
{
// Quest Entry is less to or equal to 89, Spawn!
nProcessSpawn = TRUE;
}
}
//:: #52 - Spawn if Drusilla isn't dead
// -------------------------------------------
// Only Make Modifications Between These Lines
//