Glitch City Laboratories Archives

Glitch City Laboratories closed on 1 September 2020 (announcement). This is an archived copy of an article from Glitch City Laboratories wiki.

A live version of this article is available at the Glitch City Wiki here.

You can join Glitch City Research Institute to ask questions or discuss current developments.

You may also download the archive of the wiki in .tar.gz or .xml.gz formats.

ItemDex/RB:106

(↑ Back to the ItemDex index.) Template:ItemInfoGenI

(hex:6A), or -gm for short, is a glitch item in Pokémon Red and Blue.

Its name is taken from the untranslated string "ゴールドバッヂ" (GoldBadge) from the Japanese versions, resulting in mojibake in English versions. ゴールドバッヂ is also the name of the hex:6A glitch item in Japanese versions.

This glitch item's effect pointer is DA47 in WRAM, which stores the number of Safari Balls remaining, followed by the Day Care data and stored Pokémon data, similar to Japanese Red/Green/Blue's なかよしバッヂ. However, it is slightly harder to use for arbitrary code execution than its Japanese counterpart, because in the English version, none of the characters available for Pokémon nicknames corresponds to a useful jump instruction.

Regardless, using the Day Care data for bootstrapping can result in a quicker and less obtrusive setup than other ACE items like 8F (whose bootstrapping setup takes up space in the party). A setup, designed by luckytyphlosion, gets around the character set problem by nicknaming the Day Care Pokémon with a glitch character (corresponding to a jump instruction) after the 0x50 terminator, which is achieved through manipulation of a text buffer.-gm ACE setup (Pokémon Red/Blue EN, FR, ES, HR, IT) by luckytyphlosion

Bootstrapping

Bootstrapping for -gm can work from the Day Care status (1 means a Pokémon is in the Day Care) and the Day Care Pokémon nickname, which are stored immediately after the Safari Ball count. In the setups below, the Safari Ball count is assumed to be 0, which can be achieved by running out of steps, balls or using an Escape Rope/Dig in the Safari Zone. The Safari Ball count is not reset when leaving early, so to be safe, the player should make sure to do one of the above before attempting to use -gm with these setups.

General procedure

The player needs to have another glitch item ("Item2") for text buffer manipulation. For the English versions, this can be #Q r# 4ァ h ェエ##.

1. Go to the Game Corner with enough coins to buy an Abra (180 coins in Red, 120 coins in Blue).

2. Open the item menu, and press A on Item2 to bring up the Use/Toss options. Press B to cancel. (Don't actually use it.)

3. Immediately close the menu and buy an Abra.
  • This also works with other in-game events that give the player a Pokémon, including other Game Corner prizes, Eevee, Magikarp, and the Hitmons. The Fossil Pokémon are an exception because the text just before receiving them overwrites the text buffer at CF4B. In general Abra is the most convenient, because it is cheap and infinite.

    4. Give Abra a specific nickname for the bootstrap, without ever entering a name longer than specified at any point.
  • Entering a name longer than specified will usually irreversibly mess up the setup. For example, if the player enters a 7th character for the nickname, then the 8th character in the buffer at CF4B becomes a 0x50 terminator, overwriting a byte from the name of Item2. Even if the 7th character is then deleted, the 8th character remains 0x50. If this happens, the easiest fix is to retry the setup from the beginning, getting another Abra.

    5. Store Abra in the Day Care.

    If the setup is correct, using -gm thereafter will execute code at the desired jump target. The setup will work for as long as Abra remains in the Day Care.

    Bag Items, hl=D320

    Item2: #Q r# 4ァ h ェエ##.

    Nickname: MMCA♀ᴘᴋ (ᴘᴋ is the PK symbol)

    Jump target: D320 (second item in item pack)

    Note: This setup is slightly unconventional in that it jumps to the second item in item pack instead of the third. However, it does set hl to the jump target, so most stock item codes should work with minimal to no modification.

    ASM Translation:

    ; Initial a = 47, de = 0001 $DA47 <- 00 || nop $DA48 <- 01 8C 8C || ld bc, 8C8C $DA4B <- 82 || add d ; a = 47 $DA4C <- 80 || add b ; a = D3, f = 20 $DA4D <- F5 || push af $DA4E <- E1 || pop hl ; hl = D320 $DA4F <- 50 || ld d, b $DA50 <- E9 || jp hl ; pc = D320

    References

    Categories