summaryrefslogtreecommitdiff
path: root/scripts/lua/avatar.lua
blob: 7c419a740c9bbde6e30b8293c339238ffdc0626b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function call_once_func()
  run_ui_command("World.EnvSettings", "midnight")
  sleep(1)
  run_ui_command("World.EnvSettings", "noon")
  sleep(1)
  wear_by_name("* AVL")
  run_ui_command("Avatar.ResetSelfSkeletonAndAnimations")
  sleep(5)
  wear_by_name("* Elephant")
  sleep(5)
  play_animation("Elephant_Fly");
  sleep(5)
  play_animation("Elephant_Fly",1);
end