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