18 lines
472 B
Plaintext
18 lines
472 B
Plaintext
void main()
|
|
{
|
|
object oActor;
|
|
object oTarget;
|
|
|
|
// Get the PC who is in this conversation.
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Have "Makishark2" perform a sequence of actions.
|
|
oActor = GetObjectByTag("Makoshark2");
|
|
AssignCommand(oActor, ActionMoveToObject(GetNearestObjectByTag("WP_Mk2Mv")));
|
|
|
|
oTarget = GetObjectByTag("Makoshark2");
|
|
DelayCommand(3.0, AssignCommand(oTarget, ActionPlayAnimation(ANIMATION_LOOPING_GET_LOW, 1.0f, 2.0f)));
|
|
|
|
}
|
|
|