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.debug; | |
import net.minecraft.server.MinecraftServer; | |
import net.minecraft.src.EntityPlayerMP; | |
import net.minecraft.src.Packet9Respawn; | |
import net.minecraft.src.Teleporter; | |
import net.minecraft.src.WorldServer; | |
import org.minetweak.Minetweak; | |
import org.minetweak.command.CommandExecutor; | |
import org.minetweak.command.CommandSender; |
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
### This is the Minetweak main configuration file ### | |
# Allows for Whitelisted players to be oped on join | |
player.autoOp: false | |
# Sets the disconnect message to be displayed to users when the server is stopping | |
server.stop.message: Stopping Server. Thanks for playing! | |
server.online: true |
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
{ | |
"libraries": [ | |
{ | |
"name": "Minetweak", | |
"file": "Minetweak.jar", | |
"url": "http://ci.directmyfile.com:8085/browse/MT-TWEAK-119/artifact/JOB1/jar/Minetweak.jar" | |
}, | |
{ | |
"name": "BouncyCastle", | |
"file": "bouncycastle.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
package org.minetweak.launcher; | |
import com.google.gson.Gson; | |
import com.google.gson.GsonBuilder; | |
import org.apache.commons.io.IOUtils; | |
import java.io.File; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.lang.reflect.Array; |
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": "Example", | |
"main": "org.example.ExamplePlugin", | |
"description": "Shows an example of what a Minetweak Plugin should be like" | |
} |
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.test; | |
import org.minetweak.command.CommandExecutor; | |
import org.minetweak.command.CommandSender; | |
public class CommandTest extends CommandExecutor { | |
@Override | |
public void executeCommand(CommandSender sender, String overallCommand, String[] args) { | |
if (sender.hasPermission("minetweak.command.test")) { | |
sender.sendMessage("Cool! Even though its not needed, you have permissions to use this!"); |
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
13>________ running 'git -c core.deltaBaseCacheLimit=2g clone --progress https://chromium.googlesource.com/chromium/blink.git /home/user/Code/Chrome/src/third_party/WebKit' in '/home/user/Code/Chrome' | |
10>_____ src/sdch/open-vcdiff at 438f2a5be6d809bc21611a94cd37bfc8c28ceb33 | |
11>_____ src/testing/gmock at 6b1759c3816d574bddde3e1725c51a811c8870e7 | |
14>_____ src/third_party/accessibility-developer-tools at ad5df9a5341d38778658c90e4aa241c4ebe4e8aa | |
13>Cloning into '/home/user/Code/Chrome/src/third_party/WebKit'... | |
12>_____ src/testing/gtest at a6772271f71672e889776bfe49ec4efd9da036df | |
16>_____ src/third_party/bidichecker at 97f2aa645b74c28c57eca56992235c79850fa9e0 | |
17>_____ src/third_party/cacheinvalidation/src at 7f2db96c800ac833fba9af7b446feb3fd73bd9e6 | |
15>_____ src/third_party/angle_dx11 at 9b344317b2ced9123da6e0e55aeb75e8abca84c5 | |
19>_____ src/third_party/cros_dbus_cplusplus/source at 5e8f6d9db5c2abfb91d91f751184f25bb5cd0900 |
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
{ | |
"kendfinger": [ | |
"minetweak.command.give" | |
] | |
} |
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
apply plugin: 'java' | |
apply plugin: 'maven' | |
repositories { | |
mavenCentral() | |
maven { | |
url 'http://ci.minetweak.org/snapshots/' | |
} | |
} |
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
[ | |
"kendfinger" | |
] |