Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if(global.item[8] && room != rInit && room != rTitle && room != rMenu && room != rLoad && room != rOptions && room != rSelectStage){
- if(keyboard_check_pressed(vk_pageup)){
- if(room_previous(room) != -1){
- room_goto_previous();
- with(player){ instance_destroy(); }
- if(instance_exists(bow)){ with(bow){ instance_destroy(); } }
- }
- }
- if(keyboard_check_pressed(vk_pagedown)){
- if(room_next(room) != -1){
- room_goto_next();
- with(player){ instance_destroy(); }
- if(instance_exists(bow)){ with(bow){ instance_destroy(); } }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement