// script for room: First time player enters screen
MoveCharacter (ALIEN, 88, 133);
MoveCharacterPath (ALIEN, 336, 139);
MoveCharacterPath (ALIEN, 88, 133);
So i want him to move back and forth and not stop , how ?
Right now he goes down the street and back to where he started .
You need to move your script to room's repeatedly execute:
// script for room: Repeatedly execute
if (character[ALIEN].walking == 0) { //if not walking
MoveCharacterPath (ALIEN, 88, 133);
MoveCharacterPath (ALIEN, 336, 139);
}
~Cheers
I saw that and was thinking ummm but was not to sure about it .
Thank you for the help again ..