Jump to content

Anty-Lemon

Member
  • Posts

    23
  • Joined

  • Last visited

Posts posted by Anty-Lemon

  1. I'd think it'd be simpler than Sky, I mean, it's an older game lol.

    Older != simpler. In this case, knowing Chunsoft, it's probably exactly the same. :P

    So the luminous orb effect would be possible somehow? Great, just gotta find how that triggers.

    Oh, I guess I miscommunicated that. I know how to trigger the luminous orb effect (set mapped flag to 1 instead of 2), but I don't know how item usage works, which is a possible alternative to finding the address needed to prevent turning the entire floor into stairs.

    Ik, I was just saying because I have seen and used a recruitment code for Sky, you press Select and L and R to disable and enable whenever. It must be something related to the chances you get from levels and Friend Bows.

    I found no lead from searching the supposed recruitment chance differences in a RAM Search. It's probably all in the asm, making it significantly more difficult to find.

    Although thinking about it again does give me an idea. Setting a breakpoint to the item held by the leader should work well.

  2. There's a code in Sky that has the full map but you don't start on the stairs. You basically get a luminous orb effect; that's not possible in Blue?

    Easily. I just chose not to.

    That would probably be the simpler solution if I knew how to trigger using an item, though. The way my code works is it manually sets every tile's mapped flag.

    What's taking so long for the recruitment code? Sky has this before Blue, I'd expect Blue would be easier since it's older unless it has something different to it.

    I have no idea how recruitment works in any game.

  3. ::See items on map
    2211407E 00000001
    
    ::See enemies on map
    2211407D 00000001

    I'm a bit too lazy to convert "start every floor with full map" atm. I'm missing an address needed so the entire floor won't turn into stairs. Finding one which fit the purpose took quite a bit of trial and error last time.

    Same deal with "start every floor on stairs," since it has side effects in boss rooms without another address.

  4. @evandixon: Does your editor use hex or decimal? Looping at 0x40 would be a lot more interesting than looping at 40

    EDIT: Oh right it loops at Sinister Woods, not Northwind Field. So I'm assuming decimal.

    Going by the loop the location is only stored in 5 bits, but the other 3 bits are clearly used because 224 & 0x1F = 0, which should come out as Sinister Woods, but ends up being Mt. Steel...

    EDIT EDIT:

    What is strange though. Your Swellow in-save has 78 as its met at number and the location is Joyous Tower. But Met at 78, the same number, has it as Far-off Sea. Maybe there's more to the numbers?

    Whoops, I missed this. Looks like it's stored in a word.

  5. It's impossible to find a list of the dungeon IDs anywhere.

    I have a list in the form of a lua table. Thunderwave Cave is 1, and it goes up from there. Also, you can probably ignore everything after Purity Forest.

    local DungeonTable = {[0] = "Tiny Woods", "Thunderwave Cave", "Mt. Steel ", "Sinister Woods ", "Silent Chasm", "Mt. Thunder ", "Mt. Thunder Peak ",
    "Great Canyon ", "Lapis Cave", "Mt. Blaze ", "Mt. Blaze Peak ", "Frosty Forest ", "Frosty Grotto ", "Mt. Freeze ", "Mt. Freeze Peak ",
    "Magma Cavern", "Magma Cavern Pit", "Sky Tower ", "Sky Tower Summit ", "Stormy Sea", "Silver Trench", "Meteor Cave", "Mt. Freeze Peak ",
    "Western Cave", "Boss 3", "Boss 4", "Wish Cave", "Buried Relic", "Pitfall Valley", "Northern Range ", "Boss 9", "Desert Region ",
    "Southern Cavern", "Wyvern Hill ", "Fiery Field ", "Northwind Field ", "Solar Cave", "Lightning Field ", "Darknight Relic", "Wondrous Sea",
    "Murky Cave", "Grand Sea", "Uproar Forest", "Oddity Cave", "Remains Island", "Marvelous Sea", "Fantasy Strait", "Rock Path",
    "Snow Path", "Autopilot", "D50", "D51", "Dojo Registration", "Howling Forest", "D54", "Fantasy Strait", "Waterfall Pond", "Unown Relic",
    "Joyous Tower", "Far-off Sea", "Mt. Faraway", "D61", "Purity Forest", "Out on Rescue", "???", "Tiny Woods", "Unknown World", "Frosty Grotto",
    "Howling Forest", "Pokémon Square", "Pokémon Square", "Rescue Team Base", "Rescue Team Base", "***agb-slot", "Client Pokémon", "Normal Maze",
    "Fire Maze", "Water Maze", "Grass Maze", "Electric Maze", "Ice Maze", "Fighting Maze", "Ground Maze", "Flying Maze", "Psychic Maze",
    "Poison Maze", "Bug Maze", "Rock Maze", "Ghost Maze", "Dragon Maze", "Dark Maze", "Steel Maze", "Team Shiftry", "Team Constrictor", "Team Hydro",
    "Team Rumblerock", "Rescue Team 2", "Rescue Team Maze"}

  6. Aww ! I didn't see your answer and I just ask you questions on the other forum you are ! Thank you very much for your work ! Is it possible to convert them to EU too ? (my other questions are on the other forum :D)

    Here you go :)

    :EXP Multiplier
    
    ::x2
    52183D4C E0811009
    02183D4C E0811089
    D2000000 00000000
    
    ::x4
    52183D4C E0811009
    02183D4C E0811109
    D2000000 00000000
    
    ::x8
    52183D4C E0811009
    02183D4C E0811189
    D2000000 00000000
    
    ::x16
    52183D4C E0811009
    02183D4C E0811209
    D2000000 00000000
    
    ::x32
    52183D4C E0811009
    02183D4C E0811289
    D2000000 00000000
    
    ::x64
    52183D4C E0811009
    02183D4C E0811309
    D2000000 00000000
    
    ::x128
    52183D4C E0811009
    02183D4C E0811389
    D2000000 00000000
    

    EDIT: To clarify, these are for BRT, as are the previous codes. At this point I'm not sure if you're looking for codes for BRT or EoS

  7. ::Dungeon Modifier
    :::Hold Start when choosing a dungeon.
    94000130 FFF70000
    221153E4 000000??
    2212F09C 000000??
    D2000000 00000000

    This works fine too, and is shorter:

    94000130 FFF70000
    2210FAF8 000000??
    D2000000 00000000

    EDIT: Nvm, above doesn't work when you don't go to the wonder map screen, i.e. the second half of two-part dungeons. This does, though:

    94000130 FFF70000
    2213CDD4 000000??
    D2000000 00000000

  8. Here I have what I found from part of the RAM.

    This is just about a pokemon while in a dungeon, at some point I will post the other bits I found.

    If PMD2's Pokemon data is set up like PMD1's is (which is likely), the block you found does not contain all of the hero Pokemon's data. The tile the Pokemon is currently standing on has a pointer to the beginning of the Pokemon's data, which in turn has a pointer to the beginning of that block.

×
×
  • Create New...