Jump to content

Kaphotics

Helpful Member
  • Posts

    6885
  • Joined

  • Last visited

  • Days Won

    322

Everything posted by Kaphotics

  1. If it has an illegal ribbon and the Pokemon is in your battle box (for battling) = DQ ONLY IF IT IS USED FOR BATTLING (and you get hack checked). Any stuff in your boxes won't be checked. you can clone on GTS if you register your save file, and those won't come with ribbons. Alternatively, you can download the PKM and use another fakegts to deliver without a ribbon.
  2. Error 13275: "The Nintendo Wi-Fi Connection is currently experiencing problems due to a high amount of players, or is temporarily down. Please try again later." you should set both your primary and secondary to ensure you're connecting to Pokemon selector. Please refrain from bumping a thread
  3. Teleportation script 2E 00 - Start Interaction Script .. other data BF 00 - Warp (spinning upwards, fade, spinning downwards, land) MXYF 89 00 - M 1F 00 - X 30 00 - Y 00 00 - Face 30 00 - Do Instant 2F 00 - Close Crap 02 00 - End BE - Soundless Map Change (no animation, just fade to black and to new position) C0 - Door exit sound warp, might use stored variables for positions (doesn't MXYF) After checking the DPP scripting wiki, I noticed that most of BW's are in the same relative order as DPPHS's format. Of course there are new/deleted commands & parameters, but it's a good resource to get a general idea of what a particular command does.
  4. there's nothing wrong with it it's just a notice that it doesn't have typical trashbytes & was renamed. default strain is the most commonly hacked strain edited/rng abused only appears with ~5 IVs >=30 they aren't issues, just things to watch out for.
  5. so many post bumps, but hey im doin shit [video=youtube;SYCTHahfzFA] Getting into more custom stuff: Modified zonedata to change the battlepads and allowing the bike on the map Modified overworld to change the NPC sprite to Mew Modified script to trigger encounter with a level 10 Mew Didn't bother trying to change the playsound to mew's cry, rather not waste time searching for that hex... additionally didn't bother changing the text as it's trivial 002F - close text 0178 - proc battle 0097 - pokemon # 000A - level 8021 - I have no idea what this shit is but it makes the overworld pop back up after the battle 017B - it also removes the NPC from the map 8010 - since the NPC spawn doesn't depend on any flags, the NPC will re-appear when the map is refreshed. 0009 - taken from musharna's spawn, maybe each map has its own set of flags which can disable events? 8010 0008 0001 0011 0001 001F FF 0010 0000 006C - this might be the flag setting to prevent re-spawning 0000 0023 02EC 0179 0002 - originally 001E, changing to 0002 gave player control back asap 0002 - end
  6. more scripting adventures; this time: warping other commands functions I've finally nailed down: 2F 00 - clear dialog box After recording that video, I realized I forgot to clear the text from the screen. So, I added that line right before the warp script after the 0030... so the proper ending part of her script was 0030 - do instant 002F - clear dialog 00C2 - warpto with fadetoblack (64 bits following with conditions m,x,y,f) 0078 - map 01A9 - x coord 00AE - y coord 0000 - facedirection (0 up, 1 down, 2 left, 3 right) 0002 - end ====== I looked at other scripts and there's some that determine the variables for the displayed text. The Rotom for Ditto trade has this: 57 00 01 DF 01 Trade Recieve Rotom -- TextVar1 = Rotom 57 00 00 84 00 Trade Give Ditto -- TextVar0 = Ditto thus, 0057 xx YYYY is the structure of this function 0057 - get-text pokedex(i) 01 - text variable number 01DF - i ~ pokemon hex This makes it display what Pokemon the person wants to trade. edit: some more instructions similar to the warp command, haven't bothered figuring out the condition structure after the instruction though: C1 SandPit Falling (directionals?)->position C2 WarpTo M,X,Y,Face (auto level) With FadeToblack/Sound C3 WarpTo Union Room C4 WarpTo MXYZ,Face No FadeToBlack/Sound change C5 Start Surfing? C6 Gooey Directional? (Bug Gym) C7 Cut Animation and Subsequent text? C8 Warp Out animation.... maybe the undersea "out of breath"?
  7. no that person said IR-GTS can send 3rd gen PKM files to 4th gen.
  8. Still looking at script structures, namely the headers this time. As we already know, there's data before 0xFD13. But what does it mean? It's the offset pointers for each script. Here's an example image -- first portion being for the above post (with only one script for one NPC on the map). ============ ============ As you can see, the NPC scriptstart pointer is 0x00000002, which means "2 bytes after this position, my script starts". ~~ For the latter 3 examples, we have 3 NPCs in the Rest Home @ Route 6. Script0 has a value of 0x0000000A, and the image confirms this is where the script starts (with 2E 00) Script1 has a value of 0x00000091, and the image confirms this is where the script starts (...) Script2 has a value of 0x00000022, and ..... As you can see, when adding new scripts to the script file, you have to insert the offset distance to it correctly! edit: make sure the script file is padded correctly at the end such that (amount of data after pointers)%4 = 0, pad with 00 as necessary..... (this would include FD13 and all following data in the total amount) basically just ensure that the file has n amount of dwords. ~~~~~~~~~~~~~ pretty much that's it for 'hacking' the scripts and overworlds, all that's left is to pound out the rest of the script functions (like above post) and have tools
  9. Lostlorn Forest -- Inside the Motor Home, not the Zoroark Script. Trying to figure out more structure of scripts scriptfile_772 02 00 00 00 (Header) 13 FD (START Scripts) 2E 00 (Script Start) A6 00 (Start NPC Interaction) 47 05 (Play Sound, 0547) 74 00 (Turn NPC to face Player)? 3D 00 (Open White Text Dialog with)~couldnt get 3C to do anything.. 00 04 (Text Line)~ 00 00 (0) 00 00 (Screen Anchor Bitflag) 00 00 (Special Textbox Flag) 32 00 (WaitForInput) 3E 00 (WindowClose?) 30 00 (DoInstantly) 2F 00 (RestorePlayersAbilitytoMove) 02 00 (End Script) 00 00 (nothing) Now that I kind of know scripts a little better, going to mod certain ones: ~~~~ A6 set to anything else makes the NPC not interact with you, the script goes off but nothing happens. This means that this is the "Start NPC Interaction" line. ~~~~ 0547 -> 0546 == soundless textbox pops up, changing it to 48 makes it play a different clonk sound, 49 makes it bzzbep etc So this part determines what sound is played for the textbox ~~~~ Screen Anchoring of text message: 00 00 displays it where the player isnt (so the interaction between NPC and player is shown) 01 00 always has it anchored to the top 02 00 always has it anchored to the bottom ~~~~ Textbox Flag 00 00 has the default chat bubble 01 00 plays the !!! jagged edge sound and window border, imagine Belle's father. 02 xx is broken Essentially these are just bitflags that cause something else to happen for the displayed text. Regardless of start sound, the game plays the jagged box sound instead. ~~~~ 32 means wait for input (AB) to proceed 31->2E & 33 is close ASAP without input (there might be a slight variation in text speed) 34++ breaks ~~~~ 30 is do instantly. Right after 2F looks like it restores player input for movement. So long as the script doesn't call the game to hang, the 02 00 at the end restores movement so I really couldn't figure out what the ending hexes signified Here's a little demo of the special textbox editing. For now it's simple hacks [video=youtube;p19VtiuMLNY]
  10. http://www.pokecheck.org/?p=detail&uid=1446601 error: Found trash bytes from gen 4 name "뿔카노" (traded egg). it's a gen 3 rhydon from Colo/XD and ^ shouldn't be considered as an option
  11. sparse list of map -> location (~26%, major locations) 0 White Forest 1 Black City -- 6 Striaton City 28 Castelia City 36 Castelia Left Pier (victini) 37 Castelia Leftmid Pier 38 Castelia Mid Pier 62 Nimbasa City 63 Nimbasa Gym 64 Outside Ferris Wheel 65 Nimbasa Pokecenter 66 Gear Station 67 Single Line (regular) 68 Super Single Line 69 Double Line (regular) 70 Super Double 71 Multi 72 Super Multi 73 WiFi Train 74 Train to Anville 77 Musical Building 79 Big Staduim Lobby 80 Big Stadium Bleachers 82 Big Stadium Field 84 Small Stadium Lobby 85 Small Stadium Bleachers 87 Small Stadium Field 88 House where Guy gives strength HM 91 Route Link Left from Nimbasa 92 Route Link Right from Nimbasa 93 Battle Institute 94 House next to guy who gives STR 96 Driftveil Town 97 Driftveil Town B1F++ 98 Driftveil Gym Ground Floor 99 Driftveil Pokecenter 100 Driftveil House (2nd right above with patrat) 101 Driftveil House (right above) 102 Driftveil House (2nd right) 103 Driftveil House (rightmost) 104 Driftveil Advice House (town hall?) 105 Driftveil Market 106 Driftveil House (left above) 107 Mistralton City 109 Mistralton Pokecenter 120 Opelucid City 136 Pokemon League 152 Dreamyard 154 Pinwheel Forest 157 Desert Resort 158 Desert Resort Deep 159 Desert Resort Route Link 160 Relic Castle 1F 191 Cold Storage (South Driftveil) 192 Cold Storage Interior 193 Cold Storage Crate (sage) 194 Chargestone Cave Exterior 195 Chargestone Cave Interior (1F) 198 Twist Mountain 205 Dragonspiral Tower 214 Victory Road 230 Giant Chasm 235 Liberty Garden 236 Victini Outer Chamber 237 Victini Inner Chamber 238 P2 Lab 240 Undella Bay 249 Skyarrow Bridge 253 Driftveil Drawbridge 255 Village Bridge 263 Marvelous Bridge 279 Entralink 317 Route 1 319 Route 2 321 Route 3 323 Inside the Daycare 324 Wellspring Cave 326 Route 4 329 Route 5 330 Route 5 Motor Home (ingredient) 331 Route 6 332 Season Research Lab 333 Mistralton Cave 336 Route 6 Rest House 337 Route 7 352 Challenger's Cave 355 Route 10 365 Route 11 368 Route 12 370 Route 13 374 Route 14 375 Route Link above White Forest 376 Abundant Shrine 378 Route 15 379 Route Link Left White Forest 380 Marvelous Bridge Route Link to Route 15 381 Poketransfer Place 382 Motor Home on Route 15 (Rotom Ditto Trade) 383 Route 16 384 Marvelous Bridge Route Link to Route 16 385 Lostlorn Forest 386 Lostlorn Forest Motor Home (Zoroark Event) 387 Route 18 389 Numeva Town 397 Accumula Town 406 Lacunosa Town 412 Undella Town 418 Anville Town 419 Middle House in Anville 420 Bottom Left house in Anville 421 Bottom Right house in Anville (lost item guy) 423 Route 17 425 White Forest Pokecenter 426 White Forest House
  12. k so the daycare has 0xA-0xB = 0x163, which corresponds to text file 355. The first four bytes of this text file are [01 00 01 00], which means there is one line of text script for the one roughneck NPC -- I'm sure you already know this! We need to add 8 lines to the text file in addition to the 1 pre-existing line... so we need a 9 long text file! Search the narc for [01 00 09 00]... The first text file with 9 lines is file 31; so we copy it, make it the new 355, and then restore the old 355 text line that it had to restore compatibility. Here's the new text file for 355 if you want to rebuild the narc with this one and test it out.
  13. flame orb inflicts a burn after the burn 10% damage check happens, that's why that error is also present in GBZero's video -- other errors in his video are flame body trying to burn an already statused Conkeldurr and heat wave trying to status a mon whose substitute faded from the attack
  14. So I took the time to figure out why PPTXT is refusing to add the lines... here's why. The amount of lines in the file is predetermined from the header of the text file. PPTXT won't edit it, and makes sure that the amount of lines is the same. So PPTXT can't directly add or remove lines. However, I was able to think up a little trick to change the amount of lines a given file has: Create a backup copy of the text script narc, dubbed "dummy". Extract all a/0/0/3 text files into a folder. Open up the dummy narc file in PPTXT, find the text file you have to edit, then determine how many new lines you have to add. Close PPTXT Open the individual text file (from step 2) in HxD or hex viewer, and look at 0x2. That's how many lines are currently programmed into that file. Current Lines Lines + New Lines Required = Total Lines Find a Text File with 0x2 == Total Lines Required Open the dummy narc in HxD and search hex "01 00 XX 00", where XX is for how many lines you want (in hex) -- you'll find it right after encrypted hex not in the middle of other similar hex. That is the start of a given text file; open kiwids with the dummy narc and find what file has that region of data... Make a copy of this text file that has the total lines required (files from step 2) Delete the textfile you want to expand, and rename the copy from the above step to effectively replace the deleted file. kiwids make a new narc of all the text files Open new narc with PPTXT, go to the textfile that you originally intended to edit. In another PPTXT window (run 2 copies), open original narc with PPTXT, go to the textfile that you originally intended to edit. Restore the dummy narc with the text from the original; you will be left with extra lines of text from the copied textfile. The remaining lines of text are yours to edit! Dummy narc becomes the actual narc with the extended lines!!! with this you essentially copy other textfiles with bigger linecounts. copypaste restore the original text back and do whatever with the remaining lines, new lines to play with!
  15. Bulbapedia and Veekun note that Toxicroak can learn Helping Hand by tutor, while Croagunk cannot. if what you say is true, then those ^ pages are wrong (upokecenter and legendarypokemon say Helping Hand CAN be tutored to Croagunk)
  16. Oh right I totally forgot about the dialog file! Zonedata determines which one is pulled up -- it's 0xA-0xB to decide which text file is loaded. I've updated my post with the zonedata structure with this info. I didn't do anything related to translations so I have no experience with that narc, but I can help with that! Text Script Codes -- With this you should be able to format your text to a readable string, and I don't think there's any sort of syntax for new line. After looking at the structure of what's displayed with PPTXT, it looks as if just pressing enter creates a new line. But that doesn't work! I believe it's because PPTXT doesn't allow the change of line length, because it simply isn't expected with all the past use. I'mma take a look at the src
  17. from the .dbv file, the battle instructions: 92 TURN 1 02 11 1C 00 00 E1 38 00 00 22 E1 2C 00 00 A1 76 00 00 12 SWITCH ON TURN 1 01 00 00 00 00 21 83 01 00 00 92 TURN 2 02 31 1C 00 00 E1 39 00 00 22 01 DB 00 00 13 01 00 00 12 SWITCH ON TURN 2 01 00 00 00 00 21 13 01 00 00 92 TURN 3 02 31 1C 00 00 11 65 00 00 22 01 DB 00 00 01 DE 00 00 12 SWITCH ON TURN 3 01 00 00 00 00 21 03 04 00 00 92 TURN 4 02 11 1C 00 00 E1 38 00 00 22 81 24 00 00 00 00 00 00 92 TURN 5 02 11 1D 00 00 91 86 00 00 22 E1 5F 00 00 00 00 00 00 92 TURN 6 02 11 1D 00 00 11 65 00 00 22 21 B4 00 00 00 00 00 00 12 SWITCH ON TURN 6 01 [u]03 01 00 00[/u] - Player0 switches Politoed out. 21 03 04 00 00 As you can see there's no switch on turn 3 for player0, so Politoed must not have been KO'd on turn 3. My guess is a misplaced RNG call, probably with the Stone Edge crit not happening.
  18. Most of the time, Pokemon with near-perfect IVs are either hacked or RNG abused. Since this isn't always the case, it's depicted as a warning which is nothing to worry about. Everything is still legal. Be proud that your breed came out great!
  19. ► IVs This Pokémon is likely edited or RNG abused. RNG Abuse is not illegal; the reason this message appears is that you have 5 stats >=30. Key word: LIKELY!
  20. In general, please post links, even if they are private (we can see them). Trash bytes are just an example check; it is one possibility, but not always the origin. Mimic glitched moves are not legal. Gen 3 events aren't checked thoroughly as it's pretty trivial; if they are battle legal -- meh
  21. no, 13267 is the game refusing to upload it, not Pokecheck refusing to accept it. They could have ribbons or just something wrong like a missing fateful encounter; again it is not Pokecheck refusing.
  22. Trash bytes are overwritten when you rename, so there is no problem there Pokerus strain 0 is a hacked strain; when cured it becomes strain 1. So your currently infected have the hacked strain, while the cured ones have the default strain. I suggest you discard all of the currently infected ones as they are only spreading a hacked strain!
  23. >extensive edit yeah, you broke something. With what you've told us so far it's unclear what exactly you broke. What exactly did you edit? (narc)
  24. zonedata.lua detects if it is black or white (english for now), and displays the zonedata. tip: use the town map to see a whole load of map IDs rather than manually going to them; when you select a location the game pops up the zonedata!
×
×
  • Create New...