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

@@ -0,0 +1,29 @@
/************************ [On Spawn: Low Intelligence] *************************
Filename: j_sp_lowintel
************************* [On Spawn: Low Intelligence] *************************
Low intelligence creatures, such as Goblins, might not have an advanced a
way of picking who to best attack, nor as much AI intelligence.
************************* [On Spawn: Low Intelligence] ************************/
// This is required for all spawn in options!
#include "j_inc_spawnin"
void main()
{
// 1 or 2 intelligence.
SetAIInteger(AI_INTELLIGENCE, d2());
SetAIInteger(AI_MORALE, 10);
// Probably worse for the AI to have these set - acts less intelligently.
SetSpawnInCondition(AI_FLAG_OTHER_LAG_EQUIP_MOST_DAMAGING, AI_OTHER_MASTER);
SetSpawnInCondition(AI_FLAG_OTHER_LAG_TARGET_NEAREST_ENEMY, AI_OTHER_MASTER);
// Lots of other stuff is affected by having 1 or 2 intelligence anyway.
// Removed a few of the immunity-checking bits, to lower effectivness.
SetSpawnInCondition(AI_FLAG_OTHER_DONT_RESPOND_TO_EMOTES, AI_OTHER_MASTER);
// This will ignore ALL chat by PC's (Enemies) who speak actions in Stars - *Bow*
AI_SetUpEndOfSpawn();
DelayCommand(2.0f, SpawnWalkWayPoints());
}