Jump to content

Home

"Help "I need a Script to make a Twilek dance "Kotor 1"


Baadu Apprent

Recommended Posts

Ah Can anyone help out there , I don't know enough to start scripting yet ,but I need a quick script that will make a female character PC dance like one the twilek dancer for a mod i'm designing .Basically open up an option if she talks to someone "Do you want me to dance?"or something The character PC body and head are that of a twilek so I thought it would fit .

Link to comment
Share on other sites

you can try something like this:

 

void main()
{
object oPlayer = GetFirstPC();
float fDuration = 10.0f;  // time to dance in secs
NoClicksFor(fDuration);
AssignCommand(oPlayer, ClearAllActions());
AssignCommand(oPlayer, ActionPlayAnimation(ANIMATION_LOOPING_DANCE1, 1.0, fDuration));
}

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...