Hello everyone, I want to create an animation on the map. For example, an Archangel and an Archdevil are standing there. First, the Archangel attacks, the Devil takes the hit, the Archangel is happy, then the Devil attacks, and so on. You get the idea. I tried to do it, but it didn't work. They just froze in one position and that's it...
function circle()
while 1 do
sleep(?);
PlayObjectAnimation(creature name 1, "attack00", ONESHOT);
sleep(?);
PlayObjectAnimation....
..............and so on
end;
end;
startThread(circle);