25 lines
688 B
Plaintext
25 lines
688 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Name codi_endcombat
|
||
|
//::
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
NPC EndCombatRound event script caller to run
|
||
|
CODI AI & PRC events.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20240331
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
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);
|
||
|
}
|