Help with instance change

V

Vincent

Guest
In my platform game, you have to move from rm_1 to rm_2 using stairs. That works fine. But when You return from rm_2 to rm_1, I want the object to appear in the stairs, not in the start of the level. How do I do it?

Code:
if (place_meeting (x, y+1, obj_barrier)) //obj_barrier teleports you
and (room == rm_2)
{
room_goto (rm_1)
//There i want to move the rm_1 instance to the stairs
}
 
V

Vincent

Guest
I tried using
instance_destroy ()
instance_create (x, y, obj)
but it doesen't work
 
Top