18 lines
541 B
Plaintext
18 lines
541 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name x2_def_onblocked
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Default OnBlocked script
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Keith Warner
|
|
//:: Created On: June 11/03
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
if(GetLocalInt(OBJECT_SELF, "X4_VANILLA_AI") == TRUE) ExecuteScript("nw_c2_defaulte_v", OBJECT_SELF);
|
|
else ExecuteScript("nw_c2_defaulte", OBJECT_SELF);
|
|
}
|