26 lines
725 B
Plaintext
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);
|
||
|
}
|