• 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!
  • Scottie, Todd, Serena, Kris - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • 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.

[Scripting Question] How do I remove bicycle music?

Ina

  • 21
    Posts
    5
    Years
    • Seen Dec 29, 2020
    I want to remove bicycle BGM. I tried to don't put a BGM in metadata, but in game when I use the bicycle it stops also the city/route BGM. How can I do it without this problem?
     
    In the script editor, do a global search for
    Code:
    def Kernel.pbMountBike

    Once there, delete these two lines:
    Code:
    bikebgm = pbGetMetadata(0,MetadataBicycleBGM)
    pbCueBGM(bikebgm,0.5) if bikebgm
     
    Back
    Top