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