- Joined
- Sep 1, 2020
- Posts
- 100
- Age
- 22
I need a parallel process to check the ID of the map the player is currently located. Is there a script call or something i can use for it, or do i need to set up a variable myself?
if $game_map.map_id == 69
p "You're on Map 69"
end
if $game_map.map_id == 69
p "You're on Map 69"
end
Thank you, worked perfectly!$game_map.map_id should return the map ID of the map the player is on. It will return a number which can be used in conditional branches or script commandCode:if $game_map.map_id == 69 p "You're on Map 69" end