RATDOG/_module/nss/codi_onconv.nss
Jaysyn904 37b68cf6b6 Updated TLK for PRC8 update
Updated TLK for PRC8 update.  Added placeable house blueprints.  Updated NWNxEE.  Full compile.
2024-08-31 20:38:17 -04:00

26 lines
679 B
Plaintext

//::///////////////////////////////////////////////
//:: Name codi_onconv
//::
//:://////////////////////////////////////////////
/*
NPC OnConversation event script caller to run
CODI AI & PRC events.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20240331
//:://////////////////////////////////////////////
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);
}