Jump to content

Home

Animations


harIII

Recommended Posts

Posted

I am trying to make a cut scene and need to locate the two animations that were used when Hanhar was choking Mira on Nar Shaddaa at the Docking Bay. I'm having trouble trying to locate the animations, would anyone know what they are?

Posted

I'm sorry, but I can't give you a definite answer. Perhaps someone else will know. What I do know is that the name of the animation on the supermodel is CUT021 and CUT022L the animation of him dropping Mira is CUT023.

Posted

Also that animation may be exclusive to Hanharrs' model. Check the dialog file for that cutscene to see what animations are being used. If it's not done with a dialog animation check the scripts that are fired during the scene.

Posted

I would check the scripts that are fired but the problem is that they're aren't any scripts; they don't show up in the script boxes of the dialog. Any ideas anyone?

Posted

The animation names are (for Hanharr) 1425LIFT_CHOKE_HOLD and for Mira, 1421SIT_CHAIR_DRINK

is how they are called apon in the .dlg file. I did use these animations once for the Sion/Atton fight so they will work for some other models also.

Posted

Doesn't the DLG file also specify 1020_APPROACH_CHOKE for Hanharr and 1024_LIFTED_CHOKE for Mira? Both sets of animations might need to be used. At any rate, is it possible to use these animations outside of a dialog?

 

- Star Admiral

Posted

ANIMATION_LOOPING_SIT_CHAIR_DRINK is listed in nwscript.nss so it could be used outside the .dlg file. I can't find the LIFT_CHOKE_HOLD listed in there so I'm not sure about this one.

Posted

I found something that I can use for the Mira animation but I'm having trouble locating something that will send Hanhar through a "choker" animation. Just having a Force Choke looping animation would work, would anybody know of something or have a script?

Posted

you could try a simple script as this

void main() {
AssignCommand(GetObjectByTag("[color="Red"]npc1[/color]"), ActionPlayAnimation(ANIMATION_LOOPING_SIT_CHAIR_DRINK , 1.0, (-1.0)));
       AssignCommand(GetObjectByTag("[color="red"]npc2[/color]"), ActionPlayAnimation(ANIMATION_LOOPING_LIFT_CHOKE_HOLD, 1.0, (-1.0)));
}

Posted
What about just a simple script that make the npc use Force Choke in a looping fashion?

 

Sure ,just change ANIMATION_LOOPING_LIFT_CHOKE_HOLD to one that is listed in nwscripts.nss ANIMATION_LOOPING_CHOKE I think is listed in the file.

Posted

there's only one other animation listed in nwscripts.nss and this is it ,ANIMATION_LOOPING_CHOKE_WORKING not sure if that will do it. maybe if someone knows how the list of animations for .dlg's are stored you could figure out which one to use. I looked in the animations.2da and dialoganimations.2da and if it's there it's not clearly listed.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...