-
Posts
1188 -
Joined
-
Last visited
-
Days Won
17
Content Type
Profiles
Pokédex
Portal
Technical Documentation
Pages
Tutorials
Forums
Events
Downloads
Gallery
Blogs
Everything posted by codemonkey85
-
Quick update: I've made some architectural changes to the app, so now the first time you visit the page, it will run off the server using a persistent connection. The next time you visit, it will have silently downloaded an offline version, so it will run directly on your browser. The end result hopefully will be invisible to users, but it should mean that it starts a bit faster! This change has been reverted, as PKMDS for Web is now able to do everything in WASM, and to eliminate server costs to me.
-
It is not intentional. I'll need more info, such as which game you are working with. Not yet! I have a massive to-do list, and that's on there.
-
@Professor Mahoe Can you please share the save file with me so I can test it myself?
-
Thanks to everyone for your feedback! I can add drag and drop to move Pokémon around in boxes / the party within one game (I was already planning this), but I don't know if or how I can support transferring between games yet. Will have to think about that one. I've added this to the 'Issues' section in the repo. It will get attention when I have time. There is not yet a way to do this in the web app. I've added this to the 'Issues' section in the repo. It will get attention when I have time.
-
I’m not sure what this means. Do you mean the changes are not appearing? Or do you mean your save file is being erased? What do you mean by copying the box and party data? Do you mean copying a Pokémon from one slot into another?
-
Wow, I had no idea people were using this app! I checked on this topic several times and hadn't seen any activity. Then for whatever reason I never received any notifications that there were new posts. Sorry about the delayed response folks! I had moved hosting from Azure Static Web Apps to GitHub Pages, so I assume that's where you ran into the error. How to import saved Pokémon from where? Once you make changes to a save file, you can export the file, and the exported copy will have your changes. Can you please DM me your save file so I can take a look? Or, you can try again yourself - I just updated the app to the latest version of PKHeX.Core.
-
Find PKMDS for Web on... the web! https://pkmds.app/ Now supports Pokémon Legends: Z-A! Fully works offline after initial caching! GitHub Repo: https://github.com/codemonkey85/PKMDS-Blazor Issue tracker: https://github.com/codemonkey85/PKMDS-Blazor/issues Hello all. Some of you might remember me and / or PKMDS, but most likely not. But I have returned from years of quiet meditation (work and family) to bring PKMDS back to a modern generation of gamers. Introducing: PKMDS for Web! Built as an ASP.NET Core web app using Blazor WebAssembly for UI, and leveraging PKHeX.Core as the logical foundation, PKMDS for Web is intended to be a save editor for all Pokémon games, with support for all modern browsers (including mobile). Development will probably be very slow, since this is just a fun side-project for me. Contributions and suggestions are welcome - feel free to create an issue and / or pull request on the GitHub repo. Special thanks to @Kaphotics and everyone who contributed to PKHeX over the years. I'm standing on your collective shoulders (although feel free to steal as much as you want if you ever intend to make a web-based PKHeX ). If you have any issues, you may report them here, or feel free to create an issue on the GitHub repository. 12/23/2025 Update: As of version 2025.12.23.0, support for drag and drop has been added! This has been the top wishlist item on my mind since the beginning, and I finally got around to it (with a lot of help from GitHub Copilot). You can drag and drop Pokémon to reorder them in your party, to reorder them in a box, or to transfer between party and box. You can also drag and drop a Pokémon file (.pk9 etc.) into a slot to import it into your game. There are some limits: You cannot drag and drop a Pokémon out into your file system. Sorry! I tried, but there were complications. You cannot drag and drop to transfer between party and box in Let's Go Pikachu / Eevee. You can still drag and drop to reorder your party though. It doesn't look like iOS / iPadOS Safari supports drag and drop. Your mileage may vary on other mobile devices / browsers! Enjoy!
- 163 replies
-
- 10
-
-
-
@HomuraAkemi Honestly, you should just use PKHeX. It’s actually being maintained, and it’s better in every way. It also supports all generations.
- 107 replies
-
- c++
- development
-
(and 2 more)
Tagged with:
-
Pokémon Mystery Gift Editor (v1.4.3) (now with B/W support!)
codemonkey85 replied to Grovyle91's topic in Saves - Tools
Maybe if @Grovyle puts the source on GitHub, some enterprising developer will come along and port it to a UI framework that works on macOS... I'm thinking something like Blazor would be nice. -
PKHeX is open-source. Anyone could figure out a way to compile it on Android. No doubt a lot of work would go into redoing the UI, but I imagine the core logic would port right over. Best bet is to try something like Xamarin, which is built right into Visual Studio now. https://github.com/kwsch/PKHeX
-
Pokémon Battle Revolution save research thread
codemonkey85 replied to Tux's topic in Saves - Research
If you're on Windows, I recommend using HxD to look at the file. Then you'll want to seek out known values, like the Pokémon's PID or moves, etc. -
Closed.
- 3 replies
-
- eggs
- heart gold and soul silver
-
(and 1 more)
Tagged with:
-
If I were you, I'd put the source code on GitHub without the cries (ensuring of course that your code doesn't break without them) and host a zipped file somewhere else.
-
Hmm, I dunno about WPF, but I know there's no visible lag when drawing Spinda using my hacky LockBits approach in C#. Surely there's a way to do it quickly enough in WPF as well - but you've got the foundation, so at least you can set that aside for another day!
-
I'm fine with it, as long as GatorShark gets a mention too (since I wouldn't have gotten anywhere without that documentation).
-
FYI: http://www.freewebs.com/gatorshark/SpindaDocumentation.htm and http://www.freewebs.com/gatorshark/Spinda%20Painter.htm And one way to generate the graphics in C#: https://github.com/codemonkey85/PKMDS-Win32-DLL/blob/81a0900e43b3279342dabd4dc061fb589e0c6333/PKMDS-Win32-DLL/PKMDS_CS/PKMDS.cs#L2360
-
That's easy enough - the last 100 bytes are encrypted totally separately from the first 136. All you'd need is a way to truncate the files to 136 bytes.
-
Pokémon Battle Revolution save research thread
codemonkey85 replied to Tux's topic in Saves - Research
If it's so easy, make one yourself. -
PkmGCSaveEditor, a Pokémon Colosseum/XD save editor
codemonkey85 replied to Tux's topic in Saves - Tools
In Gen III, the Nature is tied directly to the PID. The only way to change it is to change the PID as well.