23 lines
652 B
Plaintext
23 lines
652 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Name x2_def_heartbeat
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Default Heartbeat script
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Keith Warner
|
||
|
//:: Created On: June 11/03
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ExecuteScript("nw_c2_default1", OBJECT_SELF);
|
||
|
if (GetLocalInt(OBJECT_SELF, "nDoOnce") == 1)
|
||
|
return;
|
||
|
SetLocalInt(OBJECT_SELF, "nDoOnce", 1);
|
||
|
|
||
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_PROT_SHADOW_ARMOR), OBJECT_SELF);
|
||
|
|
||
|
}
|