• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • PokéCommunity supports the Stop Killing Games movement. If you're a resident of the UK or EU, consider signing one of the petitions to stop publishers from destroying games. Click here for more information!
  • Serena, Kris, Red - which Pokémon protagonist is your favorite? Let us know by voting in our bonus favorite protagonist poll! This poll will only last 24 hours!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Firered - How to check if a specific song is being played

Megiddo-san

Barium - Summer '12 Return?
  • 1,308
    Posts
    17
    Years
    Update: Emerald Offset: 03007420 RS Offset: 03007380
    I'm not sure what this can be used for exactly, but I think someone will find a use for it.

    For this tutorial you are going to need Advance Map, XSE, and Sappy. To begin, open up your rom in Sappy and look at a song. Note the header offset as we're going to be using it.

    We are going to use the pointer to the header offset and an address in the ram to check for a song being played and if that song is playing, a new song will play instead.

    I found that 03007300 in the ram is the location of the pointer to the song being played. The command comparefarbytetobyte compares a byte at a specified address to a specified byte value.

    If you take the header offset, for example, 6D1DDC, and swap the bytes, you get the pointer (DC1D6D08).

    I'm not sure if any songs share the same byte value for their first pointer byte, so we'll be using the three bytes that compose the offset. (DC1D6D)

    So, we shall be using comparefarbytetobyte three times to check for three different bytes, as well as use 03007300, 03007301, and 03007302.

    Create your script in XSE and enter it with Advance Map. Make a person script, signpost, or etc. If for some reason you want to incorporate into a level script, note that I have not gotten it to work as a level script.

    This is the script that I created. I checked for the route 1 song being played. If it is playing, the script will display a message and the battle 3 theme will be played.

    #dynamic 0x800000

    #org @begin
    comparefarbytetobyte 0x03007300 0xDC
    if 0x1 goto @continuecheck
    release
    end

    #org @continuecheck
    comparefarbytetobyte 0x03007301 0x1D
    if 0x1 goto @more
    release
    end

    #org @more
    comparefarbytetobyte 0x03007302 0x6D
    if 0x1 goto @finish
    release
    end

    #org @finish
    playsong 0x128 0x0
    message @1 0x2
    release
    end

    #org @1
    = You win.

    I hope you enjoyed this tutorial or something like that. :P
    I'll be posting the Ruby/Sapphire and the Emerald ram offsets soon.

    Thanks to ZodiacDaGreat for some help.

     
    Last edited by a moderator:
    Wow that is pretty interesting.
    This can be used with radio playing I think.
    Like a radio could be in the corner and a character can be like "Hey I like listening to this song."
    But if its a different song the character can say "OMG! I hate this song!"
     
    Back
    Top