Jump to content

Kaphotics

Helpful Member
  • Posts

    6883
  • Joined

  • Last visited

  • Days Won

    322

Everything posted by Kaphotics

  1. You'd either have to pm the pk6 or post more information regarding the event. Even if it's legit, if the wondercard was never contributed how would PKHeX know yours was obtained from ((unknown))?
  2. Kaphotics

    DexNav Question

    Yes, set the correct event flags/constants. Problem is, nobody cares to figure out what needs to be set.
  3. PKHeX is unable to find a matching wondercard, either it is not contributed or it is a hacked event. Only held item sprites are added (key items are unnecessary), missingno sprite implies it is not a pkm or held item.
  4. https://github.com/kwsch/PKHeX/issues/179
  5. Not able to replicate; are you using the latest version posted in the download thread?
  6. Load a save file first; future versions will have this interaction issue fixed. Setting >510 EVs is still disabled in HaX as they cannot be used in local link battles or Maison. You can get around this restriction by checking 'Hacked Stats' before setting back.
  7. Load a save file first; future versions will have this interaction issue fixed.
  8. Set the pokemon from tabs to a slot in the box/party.
  9. Kaphotics

    Item quantitiy

    PKHeX caps item quantities at 995 so that you can still receive a few in-game without rolling over to ?000.
  10. missing the checksum https://github.com/kwsch/PKHeX/blob/master/PKM/PK3.cs#L57
  11. ability n = 1<<n 1<<2 = 4 1<<1 = 2 1<<0 = 1 intensity: possibly offset by 1 to not have 0 index values
  12. 1. Not intentional, fixed in latest commit. Feel free to re-roll the Encryption Constant for >=gen6 PKM, and copy the PID to EC for <gen6 Future iterations of the code will consider the original generation (if it was imported up) when doing this copy. 2. Gen6 Event Pokemon should never have an OT Friendship other than the base friendship. When you inserted the Pokémon with an old version of PKHeX you didn't specify that the current handler was the HT not the OT, hence the OT friendship ticked up. The latest versions of PKHeX automatically sets the current handler value when you put a pkm into a save file.
  13. 4. be sure you're using the latest pkhex posted in the download thread; this was fixed earlier. others: did you ever install basehaxx to that save file? no idea otherwise
  14. Not possible. It's disabled for the user's protection, and is thus indication only.
  15. Causes game crashes and other unintended side effects related to ingame events.
  16. Too many characters, 11 is beyond the limit. You end up not having a "string terminator" so it keeps reading data which is likely invalid characters (?). Ensure your nicknames have the terminator!
  17. Thanks, was able to figure out what was causing the problem. The sticky download thread has been updated with this fix, thanks for reporting
  18. https://github.com/kwsch/PKHeX/blob/master/Saves/SaveUtil.cs#L185-L214 I can't know what is not happening based off 'it's not detecting', you'd need to provide a screenshot so I can see the list of drives and where the main file actually is.
  19. What's New? - Added: Gen III, IV, V Save Editing; Batch (Mass) Editor - Improvements & Fixes: Oodles. 8/7/16 - New Update - Added: TWLSaveTool folder auto-detection for past generation save files. - Changed: Save file auto-detection now detects the last saved file instead of a predefined order. Saving a NDS game after 3DS game will return the NDS save. - Fixed: Multiple gen3/4 save/pkm/transfer bugs. Thanks BeyondTheHorizon, JHorbach, Destinyy, MichiS97, ashrobb, IamAVeryNicePereson & javier_himura! - Fixed: Manaphy egg (non event) now correctly flagged as illegal. Thanks RustInPeace! - Changed: Updated Spanish Translation. Thanks ajtudela! - Fixed: Drag&Drop between box slots tweaked and improved. Thanks Warsen! - Fixed: Mystery Gift files can now be dragged into Box slots directly. - Fixed: Gen6 Trainer Info editor can now edit Vivillon forms again. Thanks Majickhat55! - Added: Cleaner 'delete' command to batch editor (set species to 0 to clear data). - Added: Specifying output folder when modifying a folder in the Batch Editor. Thanks \!
  20. 1) Fixed 2) Fixed 3) [color=#00ff00] // Remove HM moves; Defog should be kept if both are learned.[/color] [color=#0000ff]int[/color][] banned = Moves.Contains(250) [color=#00ff00]/*Whirlpool*/[/color] && !Moves.Contains(432) [color=#00ff00]/*Defog*/[/color] ? [color=#0000ff]new[/color][] {15, 19, 57, 70, 432, 249, 127, 431} [color=#00ff00]// No Defog[/color] : [color=#0000ff]new[/color][] {15, 19, 57, 70, 250, 249, 127, 431};[color=#00ff00]// No Whirlpool[/color] "No Whirlpool" is HGSS transfer, "No Defog" is DPPt transfer If pkm does not have Whirlpool, it uses the "No Whirlpool" banlist. (first false short circuit) If pkm has Whirlpool and has Defog, it uses the "No Whirlpool" banlist. (second false) If pkm has Whirlpool and not defog, it uses the "No Defog" banlist. (both true) It can be re-written as follows: [color=#00FF00] // Remove HM moves; Defog should be kept if both are learned.[/color] [color=#0000FF]int[/color][] banned = Moves.Contains(250) && Moves.Contains(432) [color=#00FF00]/*Whirlpool & Defog*/[/color] ? [color=#0000FF]new[/color][] {15, 19, 57, 70, 250, 249, 127, 431} [color=#00FF00]// No Whirlpool[/color] : [color=#0000FF]new[/color][] {15, 19, 57, 70, 249, 127, 431};[color=#00FF00]// Transfer via advantageous game[/color] So, instead of knowing which game it is transferred, we can just be ambiguous. Changed to reflect the second snippet of code. Thanks for the report
  21. Do note that a new browserhax was released, supporting 11.0. Be sure to set up the new menuhax a browserhax can be shut down with a firmware update
×
×
  • Create New...