Skip to content

Instantly share code, notes, and snippets.

@azenla
Last active December 20, 2015 14:19
Show Gist options
  • Save azenla/6145247 to your computer and use it in GitHub Desktop.
Save azenla/6145247 to your computer and use it in GitHub Desktop.
Script to Install immibis Mods
def downloadMod = { String name, String url ->
println 'Installing ' + name
ModInstaller.download url, modsDir.absolutePath + ' ' + name.replace(' ', '')
modsInstalled++
}
downloadMod 'Immibis Core', 'http://dl.dropboxusercontent.com/u/2944265/mods/autobuilt/files/immibis-core-56.0.3.jar'
downloadMod 'RedLogic', 'http://dl.dropboxusercontent.com/u/2944265/mods/autobuilt/files/redlogic-56.0.2.jar'
downloadMod 'Dimensional Anchors', 'http://dl.dropboxusercontent.com/u/2944265/mods/autobuilt/files/dimensional-anchor-56.0.1.jar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment