Jump to content

Jiggy-Ninja

Former Staff
  • Posts

    326
  • Joined

  • Last visited

Everything posted by Jiggy-Ninja

  1. To further clarify this, a Blue OT name means that the Original Trainer is a boy. A Red name means the OT is a girl.
  2. What he said was that al least one IV must match one of the parent's IVs, but since there is no possible way to verify what a Pokemon's parents were, it's not relevant.
  3. If you have Firefox, the ChatZilla extension works too.
  4. The Shiny Encounter and Nature Modification codes don't work well together. This has been known for quite a while, and I don't think there is a way around it.
  5. 94000130 FCFF0000 B2101D40 00000000 00000644 03E7005D D2000000 00000000 That'll just change the first item.
  6. Slightly incorrect. The template for the code is: 9XXXXXXX ZZZZYYYY : 16 bit "Is Equal To" conditional instruction. XXXXXXX is the address to look at, YYYY is the value to check against, and ZZZZ is a mask. I'll get to that. Each of the 16 bits at 0x04000130 represents one button. All of the values are 1 by default, and are changed to 0 as long as the button is pressed. The value for YYYY should always be 0, and the mask singles out specific bits to look at so that the other bits don't affect the value. All the bits that are 1 in the mask "cover up" the real bits in the value and make them look like 0s, while the 0s are like holes in the mask that let the real value through. FEFF in Binary is 1111 1110 1111 1111 FDFF in Binary is 1111 1101 1111 1111 This means bit 9 refers to the R button, and bit 8 to the L button. In order to make a code that only activates when both are pressed, you need to combine the masks to make: 1111 1100 1111 1111, which is FCFF. By setting bits in the YYYY value equal to one, you can make codes that activate when a button is pressed as long as another button is not pressed at the same time. For example: 94000130 FCFF0100 (Binary for 0100 is 0000 0001 0000 0000) This makes a code that will activate when R is pressed and L is not pressed. Try it by holding L, pressing R, then releasing L. The code won't activate that way. This happens because: 1) When neither button is pressed, the masked value is 0300. 2) When L is pressed, the masked value is 0200. 3) When R is pressed while L is held, the masked value is 0000. Since this isn't equal to 0100, it won't trigger the code. ---------- Post added at 03:06 PM ---------- Previous post was at 03:06 PM ---------- They go before the value.
  7. Anytime you see a line that starts with 94000130, that means it's looking at what buttons are pressed. All of the GBA buttons are located at the area. X, Y, whether the touch screen is pressed, and whether the screen is flipped up are at a different location.
  8. Those same people probably dismissed The Legend of Zelda: Wind Waker due to it's kiddy graphics. A shame, since that was a nice game. I haven't had much of a problem with Pokemon haters, and even met a couple people at school (high school) that played Pokemon as well. If I did meet one... "I like it. It's fun for me. If you don't like it, I'm not forcing you to play it, so shut up."
×
×
  • Create New...