Lankhmar_PRC8/_module/nss/cnv_mkosshk_kdow.nss

18 lines
472 B
Plaintext
Raw Permalink Normal View History

2025-04-03 12:54:47 -04:00
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)));
}