There's no run animation by default. You simply create a run animation in the actor file. If you want to "run" on rightclick for example, you can do something like
on "RightClick" {
actor.WalkAnimName = "run"
}
on "LeftClick" {
actor.WalkAnimName ="walk"
}
Greets,
Spellbreaker