Jump to content

JoJoModding

Members
  • Posts

    21
  • Joined

  • Last visited

Everything posted by JoJoModding

  1. If you want to debug this further, you could open the same page in a different browser (try installing one from scratch), on the same computer over a different network or on a different device (your phone) on the same network. Then check whether the certificate you get is the same, or a different one. This might tell you whether your ISP is to blame (it likely is not, this would be unheard of for that ISP). Alternatively, do you have any other software on your computer that might tamper with network connections? Like ad blockers, VPN stuff, browser plugins, software from your employer to access some internal network, ...?
  2. The install seems to have worked.. did you create a new profile with the appropiate version of forge
  3. It is a seperate file, read the EAQ before posting.
  4. Please post the debug log (to pastebin or a similar site)
  5. net.minecraftforge.fml.common.MissingModsException: Mod meem (Extreme Energy) requires [redstoneflux@[2.1.0,2.2.0)] Please at least try and look at the crash log before posting here. That message is right at the top.
  6. We don't know what firewall you configured. If you don't know what a firewall is, see this: https://lmgtfy.com/?q=firewallhttps://lmgtfy.com/?q=firewall
  7. OTG mod is broken. Send this to them, they can fix your problem
  8. Try disabling the splash/loading screen (see splash.properties)
  9. Where did you get the installer from? Please only use the ones from files.minecraftforge.net
  10. Well, something is blocking that port, perhaps try figuring out what it is and ending it (via the task manager / https://lmgtfy.com/?q=windows+check+what+is+running+on+port
  11. Something's wrong with Structurize's config. Try removing the config, and if that doesn't work, the mod itself.
  12. There is no forge 1.14.4 compatible version listed there. So the mod is not yet compatible with 1.14.4
  13. That mod is for 1.14.3 - at least the class it tries to load changed during the 1.14.4 update. Where did you get it from? And why does it say 'fabric'?
  14. Put CodeChickenCore into your mods directory, it will enable you to put other normal "non-dev" mods into your dev env. http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1279956-chickenbones-mods
  15. The client detects the key-pressing, and tells the server that it wants to move there. But why do you want this??
  16. Well, the code you referenced here is outdated. It is replaced by a much shorter version, which you can see at renderDebugBoundingBox(...) in the class described there. These lines right around here: float f2 = p_85094_1_.width / 2.0F; AxisAlignedBB axisalignedbb = AxisAlignedBB.getBoundingBox(p_85094_2_ - (double)f2, p_85094_4_, p_85094_6_ - (double)f2, p_85094_2_ + (double)f2, p_85094_4_ + (double)p_85094_1_.height, p_85094_6_ + (double)f2); RenderGlobal.drawOutlinedBoundingBox(axisalignedbb, 16777215); You now can repeat that code inside a for loop for each of the entity's parts, as shown in your thread. The entity you need is the first argument passed to this method. You cannot put it in this method, so you have to copy the code and put ut in for example your main entity renderig method.
  17. Its already there. Just a few code lines above..
  18. I think you should use the RenderHelper, means that shouldUseRenderHelper should return true.
×
×
  • Create New...

Important Information

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