Hello,
You could do this:
-Create a global int: flag = 0
-Create the first item in room 1 and set it to visible
-Create the second item in room2 and set it to Invisible
-On the first item 'interact event' just make it invisible and set flag to 1
Code: ags
Now in the room2 'entersroomafterfadein' event just put:
Code: ags
Something like that would do?
You could do this:
-Create a global int: flag = 0
-Create the first item in room 1 and set it to visible
-Create the second item in room2 and set it to Invisible
-On the first item 'interact event' just make it invisible and set flag to 1
obj1.visible = fasle;
flag =1;
Now in the room2 'entersroomafterfadein' event just put:
if (flag == 1)
{
obj2.visible = true;
}
Something like that would do?