Advertisement
Torchickens

Celebi turning into Mew in the Time Capsule notes

Jan 1st, 2016
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. Remember to have no Pokémon in the party with Generation II moves.
  2.  
  3. Using this set up of Crystal_'s Coin Case as a memory editor method https://www.youtube.com/watch?v=Y9r9Gy3Shi8
  4. (possibly this set up too, I have not confirmed) https://www.youtube.com/watch?v=ffZjCabeNr4
  5.  
  6. ..You can use the Coin Case with certain box 9 nicknames to write the following code at $FB0E+:
  7.  
  8. FB0E+
  9. 26 FF 2E 86 3E 18 22 3E 71 22 2E F9 3E 3D 22 3E 20 22 3E FD 22 3E C3 22 3E 2D 22 3E DB 22 C9 3E FB EA 3A 80 C9
  10.  
  11. -We also use write 06 to D67E (Pokédex mode) to get glitch Pokédex mode 06. Valid Pokémon modes include old Pokédex, new Pokédex and A-Z mode.
  12. Viewing glitch Pokédex mode 06 serves as an access point for executing the code at $FB0E.
  13.  
  14. -We also write FF to DA23 to get a ????? (FF) for Johto guard glitch.
  15.  
  16.  
  17. This is @FB0E:
  18.  
  19. ld h, FF
  20. ld l, 86
  21. ld a,18
  22. ldi (hl),a
  23. ld a,71
  24. ldi (hl),a
  25. ld l,F9
  26. ld a,3D
  27. ldi (hl),a
  28. ld a,20
  29. ldi (hl),a
  30. ld a,FD
  31. ldi (hl),a
  32. ld a,C3
  33. ldi (hl),a
  34. ld a,2D
  35. ldi (hl),a
  36. ld a,DB
  37. ldi (hl),a
  38. ret
  39. ld a,FB
  40. ld (803A),a
  41.  
  42. What it does:
  43.  
  44. 1) Writes dec a (3D) jr nz,FFF9 (20 FD), jp DB2D (C3 2D DB) to FFF9+ (an address that executes by itself).
  45.  
  46. When the processor gets to FFF9, it:
  47. - Jumps only until the register 'a' is 0. Apparently gives the processor enough time for DMA to complete, for the trick to work on a real console.
  48. - Jumps to DB2D to activate code.
  49.  
  50.  
  51. 2) Writes ld a,FB; ld (803A),a to DB2D.
  52.  
  53. ld a, FB; ld (803A), a - makes the game write FB to 803A until the game is powered off, allowing Celebi to convert into Mew.
  54.  
  55.  
  56. Thanks luckytyphlosion for his RNG plays Pokémon trick for Red and Blue; the basis of this. I altered the jump address at FFFC and used it on Pokémon Gold.
  57. http://forums.glitchcity.info/index.php/topic,7155.msg197313.html#msg197313
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement