Removed JAI, added CODI AI. Fixed encounters & NPCs in Forest of Hope Central. Fixed Outcast store not opening. Added Druid Grove & associated NPCS.
26 lines
692 B
Plaintext
26 lines
692 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name ra_ai_onrested
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
NPC OnRested event script caller to run
|
|
CODI AI & PRC events.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20221201
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
|
|
//:: Execute the CODI AI NPC OnRested script
|
|
ExecuteScript("no_ai_rst", OBJECT_SELF);
|
|
|
|
//:: Execute the default NPC OnRested script
|
|
//ExecuteScript("nw_c2_defaulta", OBJECT_SELF);
|
|
|
|
//:: Execute the PRC NPC OnRested script
|
|
ExecuteScript("prc_npc_rested", OBJECT_SELF);
|
|
}
|