Modding Help Adding Chat tabs to Other chat tabs

Discussion in 'Starbound Modding' started by GoldenstarArtist, Feb 13, 2017.

  1. GoldenstarArtist

    GoldenstarArtist Cosmic Narwhal

    I'm attempting to Add Broadcast to Other chat tabs, or viasa versa, but was a little confused when I noticed that each section isn't clearly labeled... So far this is what I pieced together but I noticed it doesn't say for what tab.. Any help?...


    { "op": "add", "path": "/gui/filterGroup/buttons/data/filter", "value": "local" }


    I'm trying to Add "broadcast" to "local" and "whisper" to all channels..
     
  2. GoldenstarArtist

    GoldenstarArtist Cosmic Narwhal

    So... I also tried just replacing the config by adding to the filters and this happened:

    https://gyazo.com/3b4dc42871b8121d5df78eeb2e4a596d


    For example: changing this to this


    {
    "baseImage" : "/interface/chat/filtertab.png:inactive",
    "baseImageChecked" : "/interface/chat/filtertab.png:active",
    "pressedOffset" : [0, 0],
    "position" : [180, 2],
    "text" : "LOCAL",
    "fontColor" : "gray",
    "fontColorChecked" : "white",
    "data" : {
    "filter" : [ "Local" ],
    "sendMode" : "Local"
    }


    into this chased chaos
    {
    "baseImage" : "/interface/chat/filtertab.png:inactive",
    "baseImageChecked" : "/interface/chat/filtertab.png:active",
    "pressedOffset" : [0, 0],
    "position" : [180, 2],
    "text" : "LOCAL",
    "fontColor" : "gray",
    "fontColorChecked" : "white",
    "data" : {
    "filter" : [ "Local", "Broadcast", "RadioMessage" ],
    "sendMode" : "Local"
    }
     
  3. GoldenstarArtist

    GoldenstarArtist Cosmic Narwhal

    Still not much luck =/
     
  4. GoldenstarArtist

    GoldenstarArtist Cosmic Narwhal

    found the problem, apparently I was using unstable assets and was causing he Serengeti code.
     

Share This Page