Modding Help Making an addon to a mod

Discussion in 'Starbound Modding' started by gmq, Aug 2, 2016.

  1. gmq

    gmq Void-Bound Voyager

    Is there a way to force a mod to load only after another mod has finished loading?
     
    Last edited: Aug 2, 2016
  2. The | Suit

    The | Suit Agent S. Forum Moderator

    In the metadata file use includes or requires.
    Code:
    "includes" : ["example"] 
    If a mod exists - it will load after the mod

    Code:
    "requires" : ["example"] 
    This mod will not load unless the mod exists.
     
    Last edited: Aug 2, 2016
  3. gmq

    gmq Void-Bound Voyager

    You're my hero, thanks!
     

Share This Page