Hi

Don't use my.x and my.y values to change the position of your object. Use ent_move like so:

code:
var dist[3];
function move_obect
{
while (1)
{
dist.x = 10 * key_force.x; //controll with cursor key
dist.y = 10 * key_force.y; //controll with cursor key
dist.z = 0;
move_mode = ignore_passable + glide;
ent_move(dist, nullvector);
wait(1);
}
}

This is a part of wdlman.pdf you've got it.


************************************************************
Fantasie ist nicht die Flucht aus dem wahren Leben sondern die Erholung davon.
Imagination is not an escape from the real life. It's a relaxation.