-
Posts
344 -
Joined
-
Last visited
Content Type
Profiles
Pokédex
Portal
Technical Documentation
Pages
Tutorials
Forums
Events
Downloads
Gallery
Blogs
Everything posted by M@T
-
I did NOT create that code, I converted the Japanese one. Electric Dragon, a Pokémon's shininess is determined according to it's PID, which is also used for the Pokémon's nature and gender. So, making a Pokémon shiny has great chances of changing its nature and gender, and vice-versa: changing a shiny Pokémon's nature or gender will remove its shininess. The risk isn't with the TMs, it's with the HMs: if a NPC gives you a HM while you already have it in your bag, the game freezes or something similar.
-
Cloning Pokémon Using the Pokéwalker
M@T replied to Riolu Aura Sphere Now's topic in RAM - NDS Guides and Other Resources
You can also stop after step 3, then make the Pokémon in the Pokéwalker level up, and take it back to the game: it will be cloned. -
REQUEST: Pokémon Platinum (U) Action Replay Codes
M@T replied to Baka_Kyuubi84's topic in RAM - NDS Cheats
No activation needed. The code seems to be good too, it should work properly. What Pokémon did you want to catch with the code? -
Pokémon HeartGold and SoulSilver (U)/(J) Action Replay Codes
M@T replied to Fallen's topic in RAM - NDS Cheats
Press Select to get the National Dex: 94000130 FFFB0000 B2111880 00000000 200015FF 00000001 D2000000 00000000 All TMs + HMs (L+R): 94000130 FCFF0000 B2111880 00000000 D5000000 005A0148 C0000000 00000063 D6000000 000009B0 D4000000 00000001 D2000000 00000000- 1532 replies
-
Pokémon HeartGold and SoulSilver (U)/(J) Action Replay Codes
M@T replied to Fallen's topic in RAM - NDS Cheats
Go to Bill's PC, choose "Move Pokémon", then select the Pokémon, use "Marking" and "Confirm". Nothing more to do, the Pokémon's happiness will be 255.- 1532 replies
-
Yes, it is missing a line in the middle of the code. The right code is on this thread : http://projectpokemon.org/forums/showthread.php?9332-VCG-2010-Shiny-Eevee-Action-Replay-Code-Request
-
Pokémon HeartGold and SoulSilver (U)/(J) Action Replay Codes
M@T replied to Fallen's topic in RAM - NDS Cheats
All mails (L+R): 94000130 FCFF0000 B2111880 00000000 D5000000 03DE0089 C0000000 0000000B D6000000 00000B44 D4000000 00000001 D2000000 00000000- 1532 replies
-
Pokémon HeartGold and SoulSilver (U)/(J) Action Replay Codes
M@T replied to Fallen's topic in RAM - NDS Cheats
All Seals x99 (L+R): 94000130 FCFF0000 B2111880 00000000 C0000000 00000013 00004E30 63636363 DC000000 00000004 D2000000 00000000- 1532 replies
-
I found this : ::Alternate move anywhere Press R+B to enable, L+B to disable :::this lets you walk, bike and bike anywhere 94000130 FCFD0200 12056C06 00002000 D2000000 00000000 94000130 FCFD0100 12056C06 00001C20 D2000000 00000000
-
Please use punctuation in your sentences, you'll make me die reading your posts. :bidoof: The original code had "(USED AT OWN RISK)", so I kept it.
-
Scenario Item v1 (USED AT OWN RISK) [select+Up] Scenario Item v2 (USED AT OWN RISK) [select+Up] The first code gives you all Key Items, the second one is safer as it does not give important items such as Machine Part.
-
These values are useless for AR code making, unless you want to work with raw Pokémon data. It is only used in programs such as Pokesav, PokeGen, etc., because it refers to offsets at which data are located in .PKM's. It has nothing to do with AR codes and RAM.
-
GTS: website research (support thread)
M@T replied to Vlad's topic in RAM - NDS Research & Development
@ASuch : It seems OK, you don't have anything listening on port 80. What program are you using? (sendpkm.py, GTS_Nuker, HyperGTS...) -
Both codes you wrote are truncated, an "E" code type MUST have the right number of bytes after it, which is 0xE8 here. It works because you overwrite only the first items with null bytes, which makes the game believe there is nothing after. But, the AR will take the 0xE8 bytes following the "E" line as the data to write to the RAM, so it will take the "D2" line, and it won't act as a code-terminator. You could read a guide that explains AR code types, you seem not to know them all, as if your knowledge was only based on deductions about already existing codes.
-
After an "E" code type, you must put the exact number of bytes you set (which is 0xE8 = 232 here). You can't say "zeros are useless", they are not. Here, the only bytes you put are 0xD2 0x00 0x00 0x00 0x00 0x00 0x00 0x00. So you must either put 232 0x00's or make a loop, as I did in my code. Your code fixed is: Using a loop is far more interesting here.
-
GTS: website research (support thread)
M@T replied to Vlad's topic in RAM - NDS Research & Development
The program closes? Then, another program might be listening on port 80. Close any webserver and instant messaging program, then retry. If it still doesn't work, run netstat -ano in a Command Prompt and paste the result here. -
GTS: website research (support thread)
M@T replied to Vlad's topic in RAM - NDS Research & Development
It uses ports UDP/53 and TCP/80. To open them simply add a firewall exception for both ports. -
GTS: website research (support thread)
M@T replied to Vlad's topic in RAM - NDS Research & Development
Haha, you're welcome! -
GTS: website research (support thread)
M@T replied to Vlad's topic in RAM - NDS Research & Development
It is the process called "System", which is a pseudo-process that refers to several Windows services, including IIS. I think that your computer is running an IIS server. Try opening http://127.0.0.1/. If a page is shown, then IIS is running. To stop it, in the Start menu, run InetMgr.exe to launch the IIS Manager. Then, on the right side of the window, press "Stop". -
How is this code supposed to delete all items ? The code means "write the next 0 byte at address [0x000008E8 + offset]", which makes no sense. It simply does nothing. Try this code instead: Remove all key items (Select): 94000130 FFFB0000 B2111880 00000000 C0000000 00000031 000008E8 00000000 DC000000 00000004 D2000000 00000000
-
GTS: website research (support thread)
M@T replied to Vlad's topic in RAM - NDS Research & Development
Then try using this: netstat -ano | find "0.0.0.0:80" You should see a number, il the last column, which is the PID of the process that is listening on port 80. Then run the Task Manager and tell us what is the name of the process with this PID. -
GTS: website research (support thread)
M@T replied to Vlad's topic in RAM - NDS Research & Development
Actually your port 80 IS used : What PID do you get when you run netstat -ano | find "0.0.0.0:80" (the column on the right) ? -
I think he meant "how can I make a copy of my save file on my computer". You need a NDS Adaptor Plus, it is the only save-backup device that supports HG/SS.