Modding Help Replacing the music in the outpost

Discussion in 'Starbound Modding' started by eshadow123, Jul 28, 2017.

  1. eshadow123

    eshadow123 Void-Bound Voyager

    Heya, I'm trying to make a simple mod that changes the BGM of the outpost (planetarium.ogg) and I've gotten the OGG I want, but as far as replacing it and making it not crash (Like it has) I'm kinda lost. As far as I know, there's no direct tutorials on how to do this either, and I'm a very new modder, so my knowledge is extremely limited. Anyone able to help possibly?
     
  2. eshadow123

    eshadow123 Void-Bound Voyager

    Also I plan on uploading this to the steam workshop if that makes a difference
     
  3. lazarus78

    lazarus78 The Waste of Time

    The file you want is the instanced_worlds.config. You can patch it to replace the music.

    If this doesn't make sense, then I suggest looking up the modding ebook.

    Also, modding is mostly applied knowledge and tinkering. There is rarely a directly related tutorial. Just mess with things and see how they work, and you will pick things up quick enough.
     
    eshadow123, IHart and bk3k like this.
  4. eshadow123

    eshadow123 Void-Bound Voyager

    I know how to patch, but what would I write to make it play the music?
     
  5. lazarus78

    lazarus78 The Waste of Time

    My bad, it is actually the dungeon_worlds.config.

    Code:
    [
      {
        "op": "replace",
        "path": "/outpost/musicTrack",
        "value": "/music/MyMusic.ogg"
      }
    ]
    
     
  6. eshadow123

    eshadow123 Void-Bound Voyager

    Thank you so much, it worked
     

Share This Page