loordgek
Members-
Posts
1910 -
Joined
-
Last visited
-
Days Won
7
Everything posted by loordgek
-
https://github.com/pahimar/ChitChat/blob/pre-gra/common/com/pahimar/chitchat/chat/ChatListener.java but IChatListener is no longer there @diesieben07 can you ask somewhere what happend to it??
-
to filter out non PG words??? https://github.com/pahimar/ChitChat
-
for what are you using the other 8 slots for ??
-
in the container override detectAndSendChanges check if the value is not the same on the server and the client is not send a packet look in ContainerFurnace how mojang does it
-
what does static mean? what is this? show the gui and guicontainer and the Guihander
-
first update sponge if it is still crashing report to sponge
-
[1.11+] [SOLVED] How to refer to mod enchantments in loot tables?
loordgek replied to The_Wabbit's topic in Modder Support
yes there is http://mcforge.readthedocs.io/en/latest/concepts/registries/#injecting-registry-values-into-fields -
@Override public void readFromNBT(NBTTagCompound compound) { this.handler.deserializeNBT(compound.getCompoundTag("ItemStackHandler")); this.stomach = compound.getInteger("Stomach"); super.readFromNBT(compound); } @Override public NBTTagCompound writeToNBT(NBTTagCompound compound) { compound.setTag("ItemStackHandler", this.handler.serializeNBT()); compound.setInteger("Stomach", this.stomach); return super.writeToNBT(compound); } you only return the super NBTTagCompound that will not work first read and write the super and than do the rest
-
no use itemhander
-
[1.10.2] Getting Player Entity from Capability for Update Message
loordgek replied to Xaser's topic in Modder Support
it was just a example -
[1.10.2] Getting Player Entity from Capability for Update Message
loordgek replied to Xaser's topic in Modder Support
like so https://gist.github.com/anonymous/5bf4cc6042dd370368af6370afa35415 -
-
https://www.youtube.com/watch?v=fsF7enQY8uI agreed
-
ok at the top put apply plugin: 'maven-publish' if you dont need the api stuff you can remove it jar { } //for the api task apiJar(type: Jar) { baseName "publishing-api" from sourceSets.main.output include '**/api/**/*' classifier = "api" } publishing { publications { impl(MavenPublication) { groupId 'org.gradle.sample' artifactId 'project2' version '2' from components.java } //for the api api(MavenPublication) { groupId 'org.gradle.sample' artifactId 'project2' version '2' artifact apiJar } } } publishing { repositories { maven { // change to point to your repo, e.g. http://my.org/repo url "$buildDir/repo" } } } ones you have done that click refresh all gradle projects and a new task folder will appear see pic
-
you never register the message example private static final SimpleNetworkWrapper INSTANCE = NetworkRegistry.INSTANCE.newSimpleChannel(Reference.MODINFO.MOD_NAME); public static void initNetwork(){ INSTANCE.registerMessage(GuiSyncPacket.class, GuiSyncPacket.class, ++NetID, Side.CLIENT); } and call initNetwork in preinit
-
show the build gradle for the lib
-
still not working it loads a texture but only for the first one and uses it for them all https://gist.github.com/anonymous/f9bd44aa241e7c64c30d42b631c96e5c
-
so how to do it then??
-
https://gist.github.com/anonymous/304d40a69e228f6303d9e245d0873d38 is this better? what i dont get it is still looking for the item model Caused by: java.io.FileNotFoundException: extragenarators:models/item/upgrade.json https://gist.github.com/anonymous/6ace2a18bd7673e81b1821f97cc3fa7e
-
i used this https://github.com/Choonster/TestMod3/blob/1.11.2/src/main/resources/assets/testmod3/blockstates/variants_item.json as a example explain i dont see it
-
nope https://gist.github.com/anonymous/8ba62062e105589a771fffd6bd9c3b10 https://gist.github.com/anonymous/ff8fbbd29e2599959cae3d7f701337f3
-
https://gist.github.com/anonymous/1c23264de6a3097226cb38e57acd5006 i dont see what i am missing https://gist.github.com/anonymous/18eee5fc665c6a79793c3b49ddee3979 is this correct?? ^
-
i made a blockstate https://github.com/loordgek/Extragenarators/blob/trytofix/src/main/resources/assets/extragenarators/blockstates/upgrade.json https://gist.github.com/anonymous/59e8d6345d5ab583e5ec9bc6a45f7434 log but it still does not work