Last active
December 20, 2015 14:19
-
-
Save azenla/6145247 to your computer and use it in GitHub Desktop.
Script to Install immibis Mods
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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