RATDOG/_module/nss/ra_ai_endcmbtrnd.nss
Jaysyn904 f143ccfc24 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.
2022-12-04 01:43:33 -05:00

26 lines
725 B
Plaintext

//::///////////////////////////////////////////////
//:: Name ra_ai_endcmbtrnd
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
NPC EndCombatRound event script caller to run
CODI AI & PRC events.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20221201
//:://////////////////////////////////////////////
void main()
{
//:: Execute the CODI AI NPC OnCombatRoundEnd script
ExecuteScript("no_ai_cmb", OBJECT_SELF);
//:: Execute the default NPC OnCombatRoundEnd script
//ExecuteScript("nw_c2_default3", OBJECT_SELF);
//:: Execute the PRC NPC OnCombatRoundEnd script
ExecuteScript("prc_npc_combat", OBJECT_SELF);
}