22 lines
565 B
Plaintext
22 lines
565 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Name x2_def_rested
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Default On Rested script
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Keith Warner
|
||
|
//:: Created On: June 11/03
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
//:: Execute the default NPC OnRested script
|
||
|
ExecuteScript("nw_c2_defaulta", OBJECT_SELF);
|
||
|
|
||
|
//:: Execute the PRC NPC OnRested script
|
||
|
ExecuteScript("prc_npc_rested", OBJECT_SELF);
|
||
|
}
|