Jump to content

loordgek

Members
  • Posts

    1910
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by loordgek

  1. 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??
  2. to filter out non PG words??? https://github.com/pahimar/ChitChat
  3. for what are you using the other 8 slots for ??
  4. 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
  5. what does static mean? what is this? show the gui and guicontainer and the Guihander
  6. first update sponge if it is still crashing report to sponge
  7. yes there is http://mcforge.readthedocs.io/en/latest/concepts/registries/#injecting-registry-values-into-fields
  8. @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
  9. no use itemhander
  10. like so https://gist.github.com/anonymous/5bf4cc6042dd370368af6370afa35415
  11. i can also do it w/ firefox the IPS forum is fine for me
  12. https://www.youtube.com/watch?v=fsF7enQY8uI agreed
  13. 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
  14. 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
  15. show the build gradle for the lib
  16. 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
  17. so how to do it then??
  18. 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
  19. 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
  20. nope https://gist.github.com/anonymous/8ba62062e105589a771fffd6bd9c3b10 https://gist.github.com/anonymous/ff8fbbd29e2599959cae3d7f701337f3
  21. https://gist.github.com/anonymous/1c23264de6a3097226cb38e57acd5006 i dont see what i am missing https://gist.github.com/anonymous/18eee5fc665c6a79793c3b49ddee3979 is this correct?? ^
  22. 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
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.