Upload the file to mediafire and someone will have a lookOriginally Posted by Lillmissthang

Upload the file to mediafire and someone will have a lookOriginally Posted by Lillmissthang

make sure yur using build 248 of mmf, for your version standard or developer, next you might need to try to make some ideas of your own, because it seems like you are very new to MMF.
If you can't get an object to look in the direction of another object and move toward it, you really will keep running into road block after road block and you'll just give up.
start with some easy tutorials they can be found on the Clickteam homepage.
Clickteam Hompage
i used this in one of my games.
Set the object as bouncing ball.
If you want it to chase from the beggining make an event:
Always: (the object that should chase)look in direction of....
when you press it takes you to the frame editor.
select relative to..
choose the object that you want to be chased
position the box with the x on the center of the object and hit okay.
This worked for me hope it works for you.

there are hundreds of ways to make A.I. for an enemy, MMF leaves the door wide open with it's variable coding allowances.
The basic methods are the easiest to do such as making a large active circle and filled shaped object that floats over top of your enemies, and when the player is overlapping the circle related to the enemy, have the enemy look inthe direction of the player and move to them.
To the more complex formula methods that use distances to calculate what enemy should chase a player.


There's even ways for the enemy to chase the player after the player hides, because it goes to the last point where the player was seen and sees the player again.

"because it goes to the last point where the player was seen and sees the player again."
If the player is still there... [laugh]
If the player is gone, then you'd set the enemy to a wander/patrol setting, or with MMF's neat new multiple movements you could have the enemy create an "i'm leaving my position waypoint, and switch to a ball movement, to chase the player or go to the players last location waypoint, once there, and no player is detected, the enemy could reverse course and head back to the "i'm leaving my position waypoint" once back at that waypoint the enemy could switch back to it's patrol "path movement".
Of course you'll have to be proficient with variables and flags, so you can turn waypoints on and off, and such.


Haha, yes. If the player is still there.
There's an article at the TDC about this, you should take a look.
I think it was called the "Last Known Pursuit" method.