Area Cleanup. Added CEP3 Skyboxes. Beholder AI fix. NPC & Mook pass. Added QN OnHit script. Add XP for Traps system.
23 lines
582 B
Plaintext
23 lines
582 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name x2_def_onconv
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Default On Conversation script
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Keith Warner
|
|
//:: Created On: June 11/03
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
|
|
//:: Execute the default NPC OnConversation script
|
|
ExecuteScript("nw_c2_default4", OBJECT_SELF);
|
|
|
|
//:: Execute the PRC NPC OnConversation script
|
|
ExecuteScript("prc_npc_conv", OBJECT_SELF);
|
|
|
|
}
|