27 lines
628 B
Plaintext
27 lines
628 B
Plaintext
|
//:://////////////////////////////////////////////////
|
||
|
//:: NW_C2_DEFAULT1
|
||
|
/*
|
||
|
Default OnHeartbeat script for NPCs.
|
||
|
|
||
|
This script causes NPCs to perform default animations
|
||
|
while not otherwise engaged.
|
||
|
|
||
|
This script duplicates the behavior of the default
|
||
|
script and just cleans up the code and removes
|
||
|
redundant conditional checks.
|
||
|
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////////
|
||
|
//:: Copyright (c) 2002 Floodgate Entertainment
|
||
|
//:: Created By: Naomi Novik
|
||
|
//:: Created On: 12/22/2002
|
||
|
//:://////////////////////////////////////////////////
|
||
|
|
||
|
#include "nw_i0_generic"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ActionRandomWalk();
|
||
|
}
|
||
|
|