-
Content Count
5656 -
Joined
-
Last visited
-
Days Won
148
Kaphotics last won the day on January 21
Kaphotics had the most liked content!
Community Reputation
1285 ExcellentAbout Kaphotics
-
Rank
how do i hak
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Exefs and Romfs
Kaphotics replied to ExeFs and romfs's topic in ROM - Switch Guides and Other Resources
Sure, dump the game from your legitimately purchased copy of the game via your hacked switch. -
Just download one of their releases on GitHub.
-
Thanks for reporting, fixed in latest commit: https://github.com/kwsch/PKHeX/commit/6d0da504d5c416a5aa4104b1b586c194357bf2a6 Wasn't fun tracking it down, haha. Was probably a typo error in noting the location ID via numpad.
-
Modifying individual block flags is possible with the Block Data editor; there are thousands of possible flags to change, and localizing all of them for each supported language would be tedious. We have a guide on manually editing flags (which includes the Dynamax Adventures values): Clothing is again an issue with localization; having to detail what each piece of clothing is for each language is a large amount of bloat when 99% of users just want to "unlock all" clothing options. Unlocking all can be done by importing a block obtained from the forums. With each DLC / patch, the g
-
pkhex issue Editing PBR Save with PKHex
Kaphotics replied to Greunch's topic in Saves - Editing Help
You can download the bleeding edge Development build for testing; for the latest release, you'd have to make sure there's a save in the first slot. Second slot was occupied- 4 replies
-
- 1
-
-
- pbr pokemon battle revolution
- pbr
-
(and 1 more)
Tagged with:
-
pkhex issue Editing PBR Save with PKHex
Kaphotics replied to Greunch's topic in Saves - Editing Help
Thanks, I've made some alterations to the save handling for PBR to account for saves that have an empty save slot before a filled save slot (based on your provided save).- 4 replies
-
- pbr pokemon battle revolution
- pbr
-
(and 1 more)
Tagged with:
-
Regarding integrating plugins into the main branch, there's upsides and downsides. * Plugins can be updated independently of the main executable, and can be developed independently and with different coding styles the author is more comfortable with. * Plugins can use external dependencies or string resources, which may bloat the overall size of the executable. Most plugins are niche use, and majority of the users never use them. * More features added to PKHeX is more for me to maintain and clean. Not all implementations are reusable/extendable... If users ask about functionalit
-
The reported issue was already fixed, but the template's OT names were swapped. The static constructor runs afterwards, fixing it. I've un-swapped them and removed the static constructor logic since it's no longer needed. https://github.com/kwsch/PKHeX/commit/9964c91dc66956c398e7fd5fe4633e4c7304a908
-
HT_Name is reset to whatever the current savefile's OT is, assuming it's the current handler. Individual move suggestion is not a thing, hence the error. You have to .Moves=$suggest
-
Oh boy¡ look at the stickies please
-
Help, i can´t read stickies
-
Using Batch Edit Commands for the Battle-Ready Symbol?
Kaphotics replied to wolfiemuse's topic in Saves - Editing Help
You can browse the source code to see what properties are exposed for editing. https://github.com/kwsch/PKHeX/blob/bfd948ee2b38a30394123a5b018c4b3c25bafcab/PKHeX.Core/PKM/PK8.cs#L428 BattleVersion is an int, so you need to set a number rather than true/false. It's the same kind of value as Version, just indicating on what version it was made "Battle Ready" on (which wipes its relearn moves and resets the current moves).- 5 replies
-
- 1
-
-
- batch editor
- swordandshield
-
(and 3 more)
Tagged with:
-
Using Batch Edit Commands for the Battle-Ready Symbol?
Kaphotics replied to wolfiemuse's topic in Saves - Editing Help
Selecing BattleVersion in the drop-down tells you it's an int32, not a boolean. You need to set a version ID, same as the pkm's version.- 5 replies
-
- 1
-
-
- batch editor
- swordandshield
-
(and 3 more)
Tagged with:
-
PkHex marks legality errors with an Ash Greninja
Kaphotics replied to Lunos's topic in Pokémon Legality
Sun/Moon Demo rewards were only receivable on Sun/Moon, not US/UM. -
Cannot open Pokemon Red .sav in PKHeX
Kaphotics replied to PokeManiac Cooper's topic in Saves - Editing Help
Open it in a hex editor; the first thousand or so bytes appear non-random, but the rest of the file is FF. Not a valid save file dump; PKHeX working as intended.