Jump to content

codemonkey85

Innovator
  • Posts

    1181
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by codemonkey85

  1. I've spoken to some of the folks in IRC about that Pokecheck announcement, and no one I talked to knows for sure what it entails. However, as research is still progressing, I doubt an accurate ETA can be made. A noble effort in science indeed. This is my philosophy as well.
  2. Most of us are pretty open about sharing this sort of info. If you ever have any questions, feel free to post again or jump in the IRC. Most information you are looking for is probably in that wiki, though (thanks LEGOanimal).
  3. I was more referring to the fact that you own 3 Nintendo DS consoles but seem to have a problem with spending $40 on something else. At any rate, I don't know anything about the hardware that you specifically have, but I can vouch for the thing I suggested.
  4. I'm seeing a bit of a contradiction here.
  5. You can use the NDS Adapter Plus. It works for me at least. http://www.amazon.com/gp/aw/d/B007QVG3LG
  6. 02-12-2014: The last several posts of mine have been merged for cleanup purposes.
  7. This seems like a solution in desperate need of a problem. It's easy enough to figure this stuff out without having to create a complicated program. Honestly it would be more work to type in the information that would be necessary then it would be to just look at your game and figure it out.
  8. That's still not very clear explanation. Are you looking for a program that will do the same breeding calculations the game itself would do? Or simply a program that will tell you what to breed? Because frankly, the latter seems rather useless if you're accessing the save file anyway.
  9. What specifically are you looking for? RNG manipulation?
  10. Not a great idea to continue a line of conversation that borders on piracy in public.
  11. Another satisfied customer.
  12. An entire save with one code? No freaking way. Not possible.
  13. Today I rolled back the veekun-pokedex.sqlite file to a version from before X and Y came out to fix some compatibility issues with regard to type changes, etc. going from Gen V to Gen VI.
  14. Pokegen does not support Gen III at all. If you want to convert those files from Gen III to Gen IV / V you may want to pay attention to this thread: http://projectpokemon.org/forums/showthread.php?33354-Gen-I-II-to-Gen-III-IV-V-Conversion. Alternatively, Gen III conversions are pretty close to possible with my PKMDS library, and it's something I've thought about looking into, but if you're a programmer you can just clone my repo and do it yourself. I'm not sure about getting Pal Park to work in an emulator - sorry.
  15. This isn't meant aggressively, but software development isn't just some magic wand that you can wield to do your will. If you don't put in the time, you won't learn, and you won't really develop much of anything. There's no way to know for certain what "reader" is just from this snippet. However, my guess is it's the BinaryReader class I mentioned earlier: http://msdn.microsoft.com/en-us/library/system.io.binaryreader.readstring(v=vs.110).aspx Did you see the link I'd posted before? Not to sound like a broken record, but you have to put in some time and thought to be successful at development.
  16. Just out of curiosity, if you're "restarting" programming now, why not simply learn a language better suited for the job (i.e. C++)? Anyway, there are many different ways of reading binary files in C#. I think probably the easiest way to just get at the data itself is to use a BinaryReader class: http://msdn.microsoft.com/en-us/library/system.io.binaryreader(v=vs.110).aspx. However, my personal preference is binary serialization. You can check out this page for some info: http://stackoverflow.com/questions/3537583/properly-copy-c-sharp-structs-with-byte-arrays-in-them
  17. PokeTransporter is region-free, so you should be able to use your existing Gen V carts. Sent from my XT1060 using Tapatalk
  18. Quick update again - move deletion was a little overactive, but that's been fixed now. Carry on! EDIT: Just pushed out one last bugfix. As mentioned earlier this feature has also been added to my PKMDS: Desktop Edition application, so I think I'm pretty much set to leave the app as-is. If there are any questions, feel free to PM me!
  19. QUICK UPDATE: I updated the application today to fix an issue with calculating the party checksum. It should be all good now! QUICK UPDATE 2: I also fixed move PP upon move deletion. Yay!
  20. Hi all, In order to help people use PokeTransporter, I have created a Windows application to remove all HM moves from all Pokemon in a save file. This way, all Pokemon will be transferrable right away. To use it just drag and drop your save file onto the .exe, and your modified save will be created as "OUT.sav". In the case a Pokemon has 4 HM moves, the only move they will know is Return. You can grab the .exe here: http://goo.gl/xlgxLp I'm still testing this for bugs, so if you spot any, let me know. EDIT: This feature has also been added to my PKMDS: Desktop Edition application, so I'll go ahead and close this thread soon.
  21. Bam. void calcchecksum(gbapokemon * pkm) { uint32 sum = 0; uint16 * word = new uint16(); word = reinterpret_cast<uint16*>(&(pkm->encrypted)); for(int i = 0; i < 24; i++) { sum += word[i]; } pkm->checksum = sum; } This is in C++. I used some structs and typedefs but you should get the idea. If you have any questions ask away. You can find me on the IRC as well.
  22. Hey Metropolis - could you provide me with a test Pokemon from Gen III? Or better yet, maybe a quick app that just dumps a bunch from a Gen III save file? I'd like to try doing the checksum myself, and I need some test cases to test it out. If I find any success I'd be happy to share my code with you.
  23. Well according to Bulbapedia, the Pokemon data checksum "is computed by simply adding all the unencrypted values one word at a time". Are you having trouble doing that?
  24. It's safe to say an invalid Gen V species will not be allowed into Transporter.
  25. It is true - the whole reason we use decrypted PKM files is because COM (creator of Pokesav) did it. He didn't do many things correctly, but we learned some of his bad habits all the same. Really? Cleaner than just defining the binary layout in a multi-tier structure then creating a pointer at the memory location of the save file? I find my way so easy to work with in code! struct pokemon_obj : pkmunencryptblock,pkmblocka,pkmblockb,pkmblockc,pkmblockd {}; //... struct box_obj { // size: 0x1000 public: std::array<pokemon_obj,30> pokemon; // uint16 : 16; uint16 checksum; byte buf[0x0c]; box_obj() { memset(this,0,sizeof(box_obj)); } }; //... struct bw2savblock_obj { // //... std::array<box_obj,24> boxes; // size: 0x18000 //... }; Then I get to do nifty stuff like: std::cout << "The Attack IV of the Pokemon stored in Box 1, slot 1 is " << sav->cur.boxes[0].pokemon[0].ivs->attack << "\n";
×
×
  • Create New...