in my game i want my character to approch a coorway and back away slowly. i know how to make him walk away. but that turns him around. i want him to actually reverse away from the door like, run the nanimation backwards
You need to make another "view" of your character with the loops reversed.
or do something like this :
AnimateCharacter(EGO,1,0,1);
while (character[EGO].x<100) {
character.x+=2;
Wait(1);
}
character[EGO].frame=0;
replace the number 100 with the one you want