• 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.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • 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.

[Other Question] Naming Pokegear Apps

  • 350
    Posts
    6
    Years
    Hello there.
    How can I change the name of Apps that appear in the Pokegear.
    I want to Change
    Phone to *Call"
    Map to *Location"
    Jukebox to *Music"
     
    locate this

    Code:
        commands[cmdMap = commands.length]     = ["map",_INTL("Map")]
        if $PokemonGlobal.phoneNumbers && $PokemonGlobal.phoneNumbers.length>0
          commands[cmdPhone = commands.length] = ["phone",_INTL("Phone")]
        end
        commands[cmdJukebox = commands.length] = ["jukebox",_INTL("Jukebox")]
    and replace it with this

    Code:
        commands[cmdMap = commands.length]     = ["map",_INTL("Location")]
        if $PokemonGlobal.phoneNumbers && $PokemonGlobal.phoneNumbers.length>0
          commands[cmdPhone = commands.length] = ["phone",_INTL("Call")]
        end
        commands[cmdJukebox = commands.length] = ["jukebox",_INTL("Music")]
     
    Back
    Top