Where can i find full animation list like: Task.HandsUp;
-
every list where i go its like amb@world_human_aa_smoke@male@idle_a
isnt there nay list that says something like Task.Smoke
because Task.HandsUp DOES work
-
Task.HandsUp is not an animation, it is a task. If you want to play animations, use Task.PlayAnimation
-
@Jitnaught so it would be
Game.Player.Character.Task.PlayAnimation("amb@world_human_aa_smoke@male@idle_a");
-
Use IntelliSense or browse the source code to find out how to use functions. PlayAnimation requires at least 2 parameters: the animation dictionary string, and the animation name string. Most, if not all, animation lists will tell you both.
-
@Jitnaught thx so much