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' |
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
#!/usr/bin/env groovy | |
import groovy.json.JsonSlurper | |
def mcDir = new File(System.getProperty('user.home') + '/.minecraft/') | |
def modsDir = new File(mcDir, 'mods') | |
def mods = [:] | |
def modsToDownload = args.toList() | |
def configFile = new File(mcDir, '/installer.cfg') | |
def ConfigObject config = null |
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
kendfin@s1:~$ java -version | |
Error occurred during initialization of VM | |
Could not reserve enough space for object heap | |
Error: Could not create the Java Virtual Machine. | |
Error: A fatal exception has occurred. Program will exit. | |
kendfin@s1:~$ |
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
2013-08-05 15:18:46 [INFO] [STDOUT] | |
2013-08-05 15:18:46 [SEVERE] [Minecraft-Client] Realms: Invalid session id | |
2013-08-05 15:18:50 [INFO] [Minecraft-Server] Starting integrated minecraft server version 1.6.2 | |
2013-08-05 15:18:50 [INFO] [Minecraft-Server] Generating keypair | |
2013-08-05 15:18:50 [INFO] [ForgeModLoader] Loading dimension 0 (Testing) (net.minecraft.server.integrated.IntegratedServer@30392164) | |
2013-08-05 15:18:50 [INFO] [ForgeModLoader] Loading dimension 1 (Testing) (net.minecraft.server.integrated.IntegratedServer@30392164) | |
2013-08-05 15:18:50 [INFO] [STDERR] java.lang.NullPointerException | |
2013-08-05 15:18:50 [INFO] [STDERR] at dan200.computer.core.JarMount$FileInZip.getParent(JarMount.java:102) | |
2013-08-05 15:18:50 [INFO] [STDERR] at dan200.computer.core.JarMount.<init>(JarMount.java:164) | |
2013-08-05 15:18:50 [INFO] [STDERR] at dan200.ComputerCraft.createResourceMount(ComputerCraft.java:415) |
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
package org.minetweak.command; | |
import net.minecraft.server.MinecraftServer; | |
import org.minetweak.Minetweak; | |
import org.minetweak.chat.TabCompletion; | |
import org.minetweak.chat.TextColor; | |
import org.minetweak.entity.Player; | |
import org.minetweak.permissions.PlayerWhitelist; | |
import org.minetweak.permissions.ServerOps; | |
import org.minetweak.server.Server; |
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
#!/bin/sh | |
rm -rf chrome-linux | |
wget https://download-chromium.appspot.com/dl/Linux_x64 | |
unzip Linux_x64 | |
rm Linux_x64 |
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
{ | |
"Test": { | |
"x": -515, | |
"y": 83, | |
"z": 245 | |
} | |
} |
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 server = new ServerSocket(2050) | |
while (!server.isClosed()) { | |
server.accept({ | |
def input = it.inputStream.newReader() | |
def output = new PrintStream(it.outputStream) | |
while (!it.isClosed()) { | |
output.println(input.readLine()) | |
} | |
}) | |
} |
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
{ | |
"name": "Minetweak", | |
"announcement": "Advanced Launcher Configuration", | |
"main": "org.minetweak.Start", | |
"types": ["stable", "beta", "dev"], | |
"libraries": [ | |
{ | |
"name": "Minetweak", | |
"type": "stable", | |
"file": "Minetweak.jar", |
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
{ | |
"name": "Forge with IC2", | |
"main": "net.minecraft.server.MinecraftServer", | |
"libraries": [ | |
{ | |
"name": "Forge", | |
"file": "forge-universal.jar", | |
"url": "http://files.minecraftforge.net/minecraftforge/minecraftforge-universal-1.6.2-9.10.0.819.jar" | |
}, | |
{ |