I have a class that holds a two dimensional array that is essentially a cplane for a player to navigate as a map. Is there a way that when, for example, player reaches map[3][3], it will be directed to a different map? I hope this makes sense. Any help is truely appreciated
Is there something special about 3,3 or is this just a special case of reaching the edge of the map?
In either case, you are going to need to check with an if statement. The complexity or generality of the if is going to depend on what you're trying to do.