• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

[Solved]Going to the wrong room

Xer0botXer0

Senpai
On obj_Btn_Connects step event I've got a button:
(I haven't changed anything since this morning when the program was running fine :/) or have i.

scr_Button
Code:
if distance_to_point(mouse_x,mouse_y) < 1
{
if mouse_check_button_released(mb_left)
{
    return 1;
}
else
{
    return 0;
}
}
Code:
if scr_Button(var_Clicked) == 1
{
//Clicked 
room_goto(rm_Connect);
}
instead of going to rm_Connect, it goes to rm_Register..
 

Xer0botXer0

Senpai
Well this one was my own silly fault.
I forgot to make a button within the room rm_Connect a button, instead it just went to the next room!
 
Top