Jump to content

All Activity

This stream auto-updates

  1. Today
  2. The information is all collated over various sites. The problem is that it needs to be in a format that is easily parsable and applied by the program. So for example, every event (which is currently a wc6) could be custom made as a wc6full to bypass this problem. Or alternatively, the data would need to be stored as a csv. I believe it'll be implemented as long as the file/data is created.
  3. I understand, thank you for the reply.Do you have any plans to add individual restrictions for this event in the future?I don't have the wc6full data myself, but since my native language is Japanese, I can help by reading through old Japanese blogs and official images to provide additional information if needed.
  4. No `wc6full` data was ever dumped/simulated for the event in question, so PKHeX does not have any version restriction data available to flag it as not receivable on said game. EventsGallery/Released/Gen 6/Wondercards/JPN at master · projectpokemon/EventsGallery Same for Gen5 events.
  5. The Diancie (ポケセン, TID 12125) obtained from the Random Encounter Database or Mystery Gift Database is now outputting for both XY and ORAS, even though it was originally supposed to be available only on ORAS.It can be transferred to Pokémon HOME, but the displayed region of origin shows Kalos instead of Hoenn, which should correspond to the original receiving game.I’ve heard that even if you move it to XY, the region of origin remains Hoenn and doesn’t change. Which one is correct?
  6. Thanks. I've already found working player coordinates and what appears to be the encounter slot table in RAM. Do you happen to know a documented address for: In battle / not in battle state. Current wild Pokémon species. Current battle Pokémon structure. before I start searching through RAM dumps manually?
  7. Use this Get into a battle then dump the RAM. Run the RAM through the application. Save the wild Pokemon unencrypted .pk5 file. Open the Pokemon in PKHeX and export the Pokemon as an encrypted Pokemon file .ek5. Open both the RAM dump and ek5 in a hex editor like HXD. Use the hex editors search function to find the wild Pokemon in RAM (there will be at least 2 instances of the wild Pokemon) This might place you near the address that you are looking for. You can also try comparing the same block in RAM of in battle and outside of battle to see how they differ from one another. This may help you narrow down your search.
  8. Hi, I'm using Pokémon Black (USA) in BizHawk and I'm trying to find RAM addresses for: Whether I'm currently in battle. The wild Pokémon species that was encountered. PID or shiny-related data. I've already tried RAM searching and looked through Bond697's address list but haven't had much luck. Does anyone know the addresses or a Gen 5 RAM map that contains this information? Thanks.
  9. Fixed. Similar 0x1F displacement/missing from specific blocks which misplaces the rest of the blocks. Notably, the last occupied box slot in box 3 is corrupt. Seems everything after it for a few dozen slots was zeroed out (by a write failure?), not sure if it's something you'd want recovered (partially; dunno how much of its data is actually usable or worth spending the time on). main
  10. Yesterday
  11. Hello! I've recently encountered an issue with my save of Pokemon Ultra Sun being 'corrupted' when I try to start it on my 3ds. I also can't open the save in PKHeX (I get an error). I've added the 'main' file from checkpoint which was moved to my PC with FileZilla (with transfer type set to binary). I've checked and the 'main' file is the only file in the folder. Any help would be greatly appreciated! main
  12. Try it and see. Gen9 uses csprng for each individual random value, so there is no correlation to detect.
  13. Not able to replicate on the latest release. Be sure you are trying to generate an encounter that can be shiny.
  14. can i freely modify eggs data like iv, ht/wt shiny etc in scarlet and violet and still make it legal? also legal to edit HT/WT of wild/static pokemon? becauce i want large size paradoxes and legendaries also
  15. Hey, it would be worth posting a sample of what you've collected so the team can assess its value and determine the best way to archive it.
  16. Thanks for the report. For now, use the one from BDSP. Have you tried opening it on PKHeX's blank save (instead of your own save)?
  17. Hey @SmolJoltik, this is fantastic work! That per-slot forme-check the facility scripts run on your selected team was the issue, and ripping it out lets Giratina keep its forme in the Frontier. Thank you for laying out the precise script/function/segment for every facility (367/fn90, 377/fn79, 378/fn29, 379/fn29) - that saved a ton of blind digging. I implemented your fix a slightly different way that might help anyone who'd rather not recompile scripts in DSPRE. Instead of deleting the CMD_798 segments out of each facility script one by one, I patched the command's handler directly. CMD_798 maps to the routine that reverts a single team member's forme (the one that checks species == Giratina/Rotom/Shaymin and snaps them back to base/Altered/Land, and also hands the Griseous Orb back to the bag). That routine already has a clean early-out, so flipping one branch makes it always return "nothing to revert." A single 2-byte edit and every facility (Tower, Hall, Castle, Arcade) stops reverting, no script recompile needed: overlay 5, RAM address 0x021F6DC2: change 01 D1 (bne) to C0 46 (nop) Two things I found while I was in there that build on your discovery: 1. There is a SECOND Giratina revert I don't think your script fix reaches. The battle engine itself snaps Giratina-Origin back to Altered "before the turn" when it isn't holding the Griseous Orb - which is exactly the leftover symptom you mentioned for Castle and Arcade, where the facility strips your held item. That one lives in the battle overlay and you can kill it too: overlay 16, RAM address 0x02259FBD: change D1 (bne) to E0 (b) After that, Origin stays Origin even with no orb, so the Castle/Arcade caveat goes away. 2. While I was unbanning everything I also removed the species clause and item clause at all facilities, and un-nerfed Soul Dew in the Frontier (the game secretly switches off its +50% boost there). I wrote the whole thing up in a bigger thread - and I put together a single xdelta patch so people don't have to touch a hex editor at all. I also credited you in my post for discovering this! Thanks again. -IS2L
  18. Hey @MasterKirby1982 sorry it took me ages but I finally cracked both halves of this - the PWT freeze AND the clauses - and it is tested working now. Those a/1/0/6 files (20-22 Subway, 33-36 PWT, plus the Battle Institute set) are not just a banlist. Each is a fixed 188-byte regulation STRUCTURE. I decoded the whole thing: - 0x02, 0x03 = party size, i.e. how many you bring (3 single / 4 double / 6 triple). This is the LEGAL LIMIT. Leave it alone - if you raise it you can pick too many Pokemon and the game crashes on team confirm. That is the "submitting more than 3 freezes the game" bug; the old edits were bumping this. - 0x04 = 0x32, the Lv50 cap - 0x05 = facility id (02 Institute, 03 Subway, 04 PWT) - 0x08 = the SPECIES clause (00 = enforced, 01 = duplicates allowed) - 0x09 = the ITEM clause (00 = enforced, 01 = duplicates allowed) - 0x1C to 0x77 = the species banlist bits (MeroMero's C0 / 0E / C0 07 / 98 7E / D8 03) - 0xBA = the per-mode / cup index: 0/1/2/3 for PWT single/double/triple/rotation (0/1/4 for Subway) Two separate things were tangled together: The freeze. The old "zero everything from C0 to the end" wipes 0xBA along with the bans. 0xBA is how the PWT bracket loader knows which tournament this regulation is for - zero it and it loads a broken/duplicate regulation and black-screens exactly where you saw it. Keep 0xBA and the freeze is gone. The Subway never froze because the Subway edits never touched 0xBA. The clauses. They are NOT in the banlist and NOT at 0x78 / 0xB5 / 0xB8 (I tried all of those and the "Some Pokemon are holding identical items" message kept firing). They are the two adjacent flags 0x08 (species) and 0x09 (item). Set both to 01 to drop "no duplicate Pokemon" and "no duplicate items." The game itself ships the link/wifi regulations with these at 01, so it is a known-good value. So the clean recipe, per banning file (Subway 20-22, Institute 10-14, PWT 33-36, every mode): - zero the banlist bitfield, 0x1C through 0x77 - set 0x08 = 01 (species clause off) - set 0x09 = 01 (item clause off) - LEAVE 0xBA alone (cup index - stops the PWT freeze) - LEAVE 0x02 and 0x03 alone (party size - keeps the 3/4 limit so it does NOT crash on team confirm) Same file length, no bytes added or removed. Legends unbanned + both clauses off, on all the offline facilities at once, with the party limit and tournament structure intact - no freeze, no crash. This is confirmed working in-game (Black 2 and White 2): banned legends register in Subway and PWT, you can run duplicate Pokemon and duplicate items, the team caps at the legal size, and PWT loads its bracket instead of black-screening. Thanks for documenting your freeze in such detail. I created a patch you can use on a clean black/white 2 in my Github repository. -IS2L
  19. Ooh okay so I just got the stressful intensity of mysteriosity flygon doesnt have much to say about it other than fixed damage and floors of reviver seeds considering its a 1/4000 chance I feel as though I should do some testing (wish I got this luck when terra cognita is added but I won't complain). Did a run of amp plains noticed nothing aside from the expected forced embargo Did a run of crevice cave got a grey floor with no items a monster house and drastically increased spawns Deep crevice cave had a floor of only shiny jynx on floor 2 I was under the impression they only spawned on floor 10 of the first half of crevice cave (I do not know if it effects shinies more often at this level or it just happened to pick shiny jynx out of the pool of all pokemon that coukd spawn to be the singular spawn) I only knew they were shiny when I saw a normal one on the next floor next to the one I had recruited I'll attach a picture of both side by side (sorry for the bad quality i'm on original hardware) I will still reset to test more jynx isnt really my cup of tea nor do I think I have seen very much of this intesity yet this was also extra confusing as one pokemon floors aren't suppsed to happen past a intensity of 5 but it happened dispite the intesity being a 6? Did a run of chasm cave in the future to test if it effected the usually unaffected future dungeons I saw no embargo however I did get a floor of only graveler weirdly The recruit list still listed grimer and porygon despite them never spawning I doubt this was due to mysteriosity due to the lack of other mysterious things happening Serenity river despite not being tied to the story at all wasn't mysterious in the slightest Im convinced there may just be something wrong with shiny jynx spawns as during yet another crevice cave run I found a shiny jinx on floor 4 of deep crevice cave thats 3 different locations so far floor 10 of cc 2 of dcc and 4 of dcc unless stressful mysteriosity makes shinies spawn on all floors not just there designated ones this is strange Does anyone know if its possible to use mystery parts to set it to stressful? I assumed not considerings its 1/4000 naturally but its possible as I have not got any mystery parts yet to test that with after doing around 20 runs of various dungeons I never did get a floor of only reviver seeds either its super rare even on top of the rarity of getting the stressful mysteriosity level or I simply got really unlucky to never find one I had many instances of the grey room only 2 instances of a gold hall I never did find another instance of a shiny only floor nor a species only floor outside of future dungeons which mysteriosity shouldnt effect anyway I do however want to continue playing the game so I have backed up my save for this point to hopefully test out terra cognita when it is added as well as test out this level of mysteriosity on the side
  20. Sorry about the triple post, but the LGPE bin does not work. It gives an error: "Binary not compatible with save file, Current SAV Generation: 7". The previous version before you cleaned up the files works fine.
  21. thanks! I have no idea what that is lol
  22. I created an account just to thank you for the work you've put into this amazing ROM hack. I think it deserves much more recognition. Have you considered adding it to hackdex.app? Have a great day/night!
  23. Electivire is seemingly missing from Legends Arceus.
  24. Thank you! Though I admit, I went ahead and added them myself like a week after that post... lol Now I gotta figure out how to modify my save file to change them to the Tepig in the updated slots. Dunno if any old save editor will do. Oh well, that one is on me, haha. Something to learn when im not busy with work. Thank you for such a wonderful rom hack, im really having fun!
  25. Last week
  26. 51 downloads

    This gift was distributed to attendees of the 2026 Pokémon Japan Championships via the Pokémon HOME mobile application's Mystery Gift NFC feature. Wonder Card ID #9035: Pokémon HOME Gift Species Garchomp TID 260606 Distribution NFC Location Pokémon HOME Dates June 6 to 7, 2026 PID (Specified) 4C9F1F6F (Not Shiny) Games HOME (origin game SL) Nature Adamant Ability Rough Skin (HA) Item None Tera: IVs EVs HP 20 ALL 0 ATK 31 DEF 20 SPA 31 SPD 20 SPE 31 Lv. 50 Moves (ITALIC means Relearnable) Earthquake Dragon Claw Rock Slide Protect Event Ribbon Lang Slot Mon's Lang Nickname OT Name OT's Lang JPN (lang' tag default) PJCS26 - ENG (lang' tag default) PJCS26 - FRE (lang' tag default) PJCS26 - ITA (lang' tag default) PJCS26 - GER (lang' tag default) PJCS26 - SPA (lang' tag default) PJCS26 - KOR (lang' tag default) PJCS26 - CHS (lang' tag default) PJCS26 - CHT (lang' tag default) PJCS26 - Only One Redemption Allowed Format Ver.3.0.1-5, Post Updated Date:20260609_0153
  27. 14 downloads

    Event description This is an event raid held by Scarlet and Violet. Notably, with this event you get a chance to encounter Tera raids featuring a level 100 (Shiny locked) Rillaboom with the Normal Tera type. This event ran from June 5 to 11, 2026. How to encounter Mighty raid in-game For 7-Stars Raids to be findable by players, they must first have unlocked 6-Stars Raids through story progression. This requires completing the entire game story and the post game until the academy tournament. Players must then complete 10 4-stars or 5-stars raids. Only after all these steps have been performed, the player will receive a call from Jacq, which he will proceed to tell you about dangerous black crystal raids. What can be done with these files The files to be imported into your save file are placed in the Files directory. We also provide human-readable data in Json format, and an Identifier.txt file containing the event index. Use our tutorial to import these files into your save. After importing you might need to advance one day in the Date/Time from your console System Settings, to reroll the dens. To see other Poké Portal Events, here.
  28. it's a lot harder than changing a couple colors in the palette, and spritework is not my forte. that said, I know someone who's made it and am hoping to get it from them.
  1. Load more activity
×
×
  • Create New...