Jump to content

KingIceCream

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by KingIceCream

  1. All code is on github: https://github.com/KingParity/1.13.2 Whenever I try to throw a custom snowball I made (An emerald snowball), the game always crashes and I am given this: https://pastebin.com/fy5XFRAC It seems to have to do with it trying to render it, but I can't figure out what is going wrong
  2. Could you post or dm me all of the code so I can try to debug it more easily? (Like, all the code. To DM me, just click on my profile and click the "message button")
  3. Hold on, try replacing if (worldIn.isRemote) { return true; } else { TileEntity tEntity = worldIn.getTileEntity(pos); if (tEntity instanceof TileEntityThreefoldCombiner) { NetworkHooks.openGui((EntityPlayerMP) player, (TileEntityThreefoldCombiner) tEntity, pos); } return true; } with if (!worldIn.isRemote) { TileEntity tEntity = worldIn.getTileEntity(pos); NetworkHooks.openGui((EntityPlayerMP) player, (TileEntityThreefoldCombiner) tEntity, pos); } return true;
  4. above the method openGui in NetworkHooks, it specifically says "Request to open a GUI on the client, from the server", so I'm pretty sure this isn't the correct method. We used to use the openGui method in EntityPlayer, but that no longer exists, nor does the class FMLNetworkHandler exist.
  5. It created a folder called test inside of the src folder with a java folder and a resources folder inside. Am I supposed to delete that or something?
  6. Ok. Would I open a workspace in eclipse in the folder ModTest is in, do File -> Open Projects from File System, click on the Directory... button, select the ModTest folder, and then click the Finish button to access the project?
  7. I am on Windows 10 with Windows Version 10.0.17763.379, Java JRE1.8.0_192, and Java JDK1.8.0_192. I downloaded the mdk of Forge 1.13.2 - 25.0.103. When I copied all of the contents of the zip file into a folder on my desktop called ModTest, I ran gradlew setupDecompWorkspace inside the ModTest folder. When I ran the command, I was given this: I then tried the same thing but with Forge 1.12.2 - 14.23.5.2768, and it went through perfectly. What might have caused this to happen? I even tried redownloading Forge 1.13.2 - 25.0.103 to see if something didn't download for some reason, but it gave me the same error.
×
×
  • Create New...

Important Information

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