Hi!

I have inventory, menu and all other interface done but now I would need help again.
I have this sequence in my object's (bench_left) script.
on "Take"
{
actor.GoTo(548, 449);
actor.TurnTo(DI_UPLEFT);
Game.Interactive = false;
actor.Talk("Blaa Blaa.");
actor.PlayAnim("actors\pulsu\ur\take.sprite");
Game.TakeItem("bench_left");
var EntBench_left = Scene.GetNode("bench_left");
EntBench_left.Active = false;
actor.PlayAnim("actors\pulsu\ur\take2.sprite");
Game.Interactive = true;
}
You see easily what is it all about. Problem is: Take-sprite doesn't end (It continues and continues...). I tried solve problem but now I think I need help from "professionals".