diff options
author | Katelyn Gigante <clockwork.singularity@gmail.com> | 2021-09-17 17:26:48 +1000 |
---|---|---|
committer | Katelyn Gigante <clockwork.singularity@gmail.com> | 2021-09-17 17:26:48 +1000 |
commit | 60139b87450ecc15c47314224cd8e33357885606 (patch) | |
tree | b4febd36624105ddb5e4e935b78ba64f88c250f5 | |
parent | 5bbba92ebd6c4bd9740835b300310aed05034b60 (diff) |
A more efficient way to disable the cable club check
-rw-r--r-- | Disabling-Union-Room-check-when-entering-Pokémon-Centers..md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Disabling-Union-Room-check-when-entering-Pokémon-Centers..md b/Disabling-Union-Room-check-when-entering-Pokémon-Centers..md index 30d5e0d..e0f7701 100644 --- a/Disabling-Union-Room-check-when-entering-Pokémon-Centers..md +++ b/Disabling-Union-Room-check-when-entering-Pokémon-Centers..md @@ -2,9 +2,14 @@ Every time the player enters a Pokémon Center, the game checks for players that However, this has the side effect of pausing the game mid-transition to do this. As there's currently no support for the GBA Wireless Adapter in emulators, we're gonna ommit this check to avoid having this awkward pause in the middle of the game. -You first need to look every instance of the following line and comment it: +First, go to [data/scripts/cable_club.inc](../blob/master/data/scripts/cable_club.inc) and comment out the following line: -`map_script MAP_SCRIPT_ON_RESUME, CableClub_OnResume` +```diff +CableClub_OnResume: +- special InitUnionRoom ++ @ special InitUnionRoom + end +``` After that, go to [data/scripts/pkmn_center_nurse.inc](../blob/master/data/scripts/pkmn_center_nurse.inc) and change the following two scripts: |