27 lines
650 B
Plaintext
27 lines
650 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"
|
||
|
#include "NW_I0_tool"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object PC = GetNearestSeenOrHeardEnemy();
|
||
|
|
||
|
AssignCommand(OBJECT_SELF, ClearAllActions(TRUE));
|
||
|
|
||
|
AssignCommand(OBJECT_SELF, ActionAttack(PC, FALSE));
|
||
|
|
||
|
}
|