jump_to_position
Code
if(instance_exists(argument0))
{
argument0.x = argument1;
argument0.y = argument2;
}
else
{
x = argument0;
y = argument1;
}
return true;
Как-то так.
jump_to_position(object_name, x, y);
Перемещает object_name на новую позицию.
jump_to_position(x, y);
Перемещает объект из которого вызывается скрипт на новую позицию.