Area & spawner pass.

Updated Aragnak's Isle & Lair, Bard College, Cazrak's Lair.  Remade several items.
This commit is contained in:
Jaysyn904
2021-12-30 01:18:45 -05:00
parent b55c3cf1f3
commit 8c0a2224cb
85 changed files with 15182 additions and 20830 deletions

View File

@@ -176,6 +176,23 @@ string SpawnGroup(object oSpawn, string sTemplate)
// Only Make Modifications Between These Lines
// -------------------------------------------
// Aragnak in Lair
if (sTemplate == "grp_aragnak")
{
int iRnd = Random(9)+1;
if (iRnd >= 7) // 30% chance to be awake
{
sRetTemplate = "RA_DRAG_ARAGNAK1";
}
else // 70% chance to be sleeping
{
sRetTemplate = "RA_DRAG_ARAGNAK2";
}
}
//
if (GetStringLeft(sTemplate, 7) == "scaled_")
{
float fEncounterLevel;