• 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!

Just testing with pasting code

  • Thread starter Clemens van Brunschot
  • Start date
Status
Not open for further replies.
C

Clemens van Brunschot

Guest
Let's give it a try
Code:
// Go to a room while testing
if ((keyboard_check_direct(vk_lcontrol) or keyboard_check_direct(vk_rcontrol))
&& global.testing
&& keyboard_check_pressed(ord("R"))) {
    destination = asset_get_index(get_string("Go to room with name: ", "rm_"));
    //Alternatively: destination = real(get_string("Go to room number: ", "1"));
    if (room_exists(destination)) room_goto(destination);
}
 
Status
Not open for further replies.
Top