This file contains hidden or 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
PS D:\Development\Minecraft\SmithsCore> ./gradlew setupDecompWorkspace | |
################################################# | |
ForgeGradle 2.1-SNAPSHOT-8971088 | |
https://github.com/MinecraftForge/ForgeGradle | |
################################################# | |
Powered by MCP unknown | |
http://modcoderpack.com | |
by: Searge, ProfMobius, Fesh0r, | |
R4wk, ZeuX, IngisKahn, bspkrs | |
################################################# |
This file contains hidden or 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
// For those who want the bleeding edge | |
buildscript{ | |
repositories { | |
jcenter() | |
maven { | |
name = "forge" | |
url = "http://files.minecraftforge.net/maven" | |
} | |
} | |
dependencies { |
This file contains hidden or 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
D:\Development\Minecraft\Armory>gradlew cleanCache | |
Cannot run the CurseUpload sequence. No API-Key was available. | |
**************************** | |
Powered By MCP: | |
http://modcoderpack.com/ | |
Searge, ProfMobius, Fesh0r, | |
R4wk, ZeuX, IngisKahn, bspkrs | |
MCP Data version : snapshot_20141001 | |
**************************** | |
Found AccessTransformer in main resources: Armory_at.cfg |
This file contains hidden or 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
[20:45:09] [Client thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught | |
java.lang.NullPointerException | |
at cpw.mods.fml.common.network.FMLOutboundHandler$OutboundTarget$7.selectNetworks(FMLOutboundHandler.java:193) ~[FMLOutboundHandler$OutboundTarget$7.class:?] | |
at cpw.mods.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?] | |
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?] | |
at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?] | |
at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:637) ~[DefaultChannelHandlerContext.class:?] | |
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:115) ~[MessageToMessageEncoder.class:?] | |
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMes |
This file contains hidden or 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
D:\Development\Minecraft\SmithsCore>gradlew setupDecompWorkspace | |
FAILURE: Build failed with an exception. | |
* What went wrong: | |
A problem occurred configuring root project 'SmithsCore'. | |
> Could not open buildscript class cache for build file 'D:\Development\Minecraft\SmithsCore\build.gradle' (C:\Users\Marc\.gradle\caches\2.4\scripts\build_1x45562nzcyfcyivbdw1q8t5p\ProjectScript\buildscript). | |
> java.io.FileNotFoundException: C:\Users\Marc\.gradle\caches\2.4\scripts\build_1x45562nzcyfcyivbdw1q8t5p\ProjectScript\buildscript\cache.properties (The system cannot find the file specified) |
This file contains hidden or 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
//Buildscript: Armory | |
// Load the properties of this project. | |
ext.configFile = file "build.properties" | |
//Reference the properties inside the project: | |
configFile.withReader { | |
def prop = new Properties() | |
prop.load(it) | |
project.ext.config = new ConfigSlurper().parse prop | |
} |
This file contains hidden or 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
D:\Development\Minecraft\Armory>gradle build# | |
'gradle' is not recognized as an internal or external command, | |
operable program or batch file. | |
D:\Development\Minecraft\Armory>gradlew build | |
FAILURE: Build failed with an exception. | |
* Where: |
This file contains hidden or 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
task apiJAR(type: Jar, dependsOn: 'jar') { | |
from "build/source/main" | |
include "com/SmithsModding/Armory/API/**" | |
extension = 'jar' | |
classifier = 'dev' | |
} | |
artifacts { |
This file contains hidden or 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
/* | |
* Copyright (c) 2015. | |
* | |
* Copyrighted by SmithsModding according to the project License | |
*/ | |
package com.Orion.Armory.Network.Handlers; | |
import com.Orion.Armory.API.Knowledge.IKnowledgedGameElement; | |
import com.Orion.Armory.API.Knowledge.KnowledgeEntityProperty; |
This file contains hidden or 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
if (this.isEnabled() && wholeArea.contains(x, y)) { | |
int tScrollPos = getScrollPos() | |
stopScrolling() ' Function to stop scrolling + also updates server of new positions automatically. | |
tScollpos += delta ' determine deta on your own. | |
setScrollPos(tScrollPos) 'set the new scrollpos | |
startscolling ' Starts the animation again without packet to the server | |
} |