26 lines
751 B
Plaintext
26 lines
751 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Default On Heartbeat
|
|
//:: NW_C2_DEFAULT1
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
This script will have people perform default
|
|
animations.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: Nov 23, 2001
|
|
//:://////////////////////////////////////////////
|
|
#include "NW_I0_GENERIC"
|
|
|
|
void main()
|
|
{
|
|
|
|
//Run base bioware script..
|
|
ExecuteScript("nw_c2_default1", OBJECT_SELF);
|
|
|
|
if (!GetHasSpellEffect(SPELL_TRUE_SEEING, OBJECT_SELF))
|
|
AssignCommand(OBJECT_SELF, ActionCastSpellAtObject(SPELL_TRUE_SEEING,OBJECT_SELF, METAMAGIC_MAXIMIZE, TRUE, 40, PROJECTILE_PATH_TYPE_DEFAULT, TRUE));
|
|
|
|
}
|