Modding Help What's the Song for the Mechs when your in space?

Discussion in 'Starbound Modding' started by burningleos, Jun 23, 2017.

  1. burningleos

    burningleos Cosmic Narwhal

    Just wondering, but can anyone help, What is the song for the mechs in the .OGG file directory, I'm working on a mod that replaces that song with something else
     
  2. soldierfast90

    soldierfast90 Pangalactic Porcupine

    Hostile ships and space anomalies use these tracks:

    Code:
        "ambientNoises" : "/sfx/environmental/space_loop4.ogg",
        "musicTrack" : "/music/lava-exploration1.ogg",


    and friendly ships/stations use these tracks:

    Code:
        "ambientNoises" : "/sfx/environmental/space_loop4.ogg",
        "musicTrack" : "/music/tranquility-base.ogg",
    Ripped straight from the dungeon_worlds.config which tells what to use for sound files and stuff.
     
    Cyel likes this.
  3. lazarus78

    lazarus78 The Waste of Time

    Not sure what your plan is, but a suggestion. Don't replace the file, patch the config instead.
     
  4. burningleos

    burningleos Cosmic Narwhal

    Not sure how you can "Patch" the config, I think i need some help on that, I wanted to do a replacement, but is patching the config replaces the file without breaking the game?
     
  5. lazarus78

    lazarus78 The Waste of Time

Share This Page