• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Serena, Kris, Dawn, Red - which Pokémon protagonist is your favorite? Let us know by voting in our grand final favorite protagonist poll!
  • PokéCommunity supports the Stop Killing Games movement. If you're a resident of the UK or EU, consider signing one of the petitions to stop publishers from destroying games. Click here for more information!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

No Method Error while warping.

Okay, well, I've been getting a really strange (But extremely annoying) error whenever I warp to two certain maps.
[PokeCommunity.com] No Method Error while warping.

It's very weird because it only does this with certain warps. (Yes I've tried deleting/making new warps)
Incidentally, these maps are connected to other maps, so at first I created a backup version of the map and deleted every event to make sure it wasn't just a mess up.
However, this error still persists. Whenever I delete the connection and then warp, everything is fine. So I'm not sure what to do...
And advice?
 
I've seen several people reporting this, on multiple versions of essentials, but I've never really seen a consensus on how exactly to fix it. Try finding this
Code:
def command_end
    # Clear list of event commands
    @list = nil
    # If main map event and event ID are valid
    if @main and @event_id > 0
      # Unlock event
      $game_map.events[@event_id].unlock
    end
  end
and change it to this
Code:
def command_end
    # Clear list of event commands
    @list = nil
    # If main map event and event ID are valid
    if @main and @event_id > 0 && $game_map.events[@event_id]
      # Unlock event
      $game_map.events[@event_id].unlock
    end
  end
Let me know what happens. I think this will bypass that error at least, but I'm unsure of what exactly the results will be afterwards. It seems to be some weird result of the Interpreter trying to do something to the transfer event, which is no longer within $game_map.
 
I've seen several people reporting this, on multiple versions of essentials, but I've never really seen a consensus on how exactly to fix it. Try finding this
Code:
def command_end
    # Clear list of event commands
    @list = nil
    # If main map event and event ID are valid
    if @main and @event_id > 0
      # Unlock event
      $game_map.events[@event_id].unlock
    end
  end
and change it to this
Code:
def command_end
    # Clear list of event commands
    @list = nil
    # If main map event and event ID are valid
    if @main and @event_id > 0 && $game_map.events[@event_id]
      # Unlock event
      $game_map.events[@event_id].unlock
    end
  end
Let me know what happens. I think this will bypass that error at least, but I'm unsure of what exactly the results will be afterwards. It seems to be some weird result of the Interpreter trying to do something to the transfer event, which is no longer within $game_map.
Thanks a lot. That worked!
 
I've seen several people reporting this, on multiple versions of essentials, but I've never really seen a consensus on how exactly to fix it. Try finding this
Code:
def command_end
    # Clear list of event commands
    @list = nil
    # If main map event and event ID are valid
    if @main and @event_id > 0
      # Unlock event
      $game_map.events[@event_id].unlock
    end
  end
and change it to this
Code:
def command_end
    # Clear list of event commands
    @list = nil
    # If main map event and event ID are valid
    if @main and @event_id > 0 && $game_map.events[@event_id]
      # Unlock event
      $game_map.events[@event_id].unlock
    end
  end
Let me know what happens. I think this will bypass that error at least, but I'm unsure of what exactly the results will be afterwards. It seems to be some weird result of the Interpreter trying to do something to the transfer event, which is no longer within $game_map.

Where do I find this?
 
Back
Top