You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2Rogue/Export_Code/gml_Object_oTestKeys_KeyPre...

13 lines
315 B

var rm;
if (!instance_exists(oCharacter))
room_goto(rm_secretEnding)
if (instance_exists(oCharacter) && keyboard_check(vk_shift))
{
msg = get_string("WARP TO", "rm_a0h01")
rm = asset_get_index(msg)
if room_exists(rm)
room_goto(rm)
else
popup_text("Room index does not exist!")
}