
JoJoModding
Members-
Posts
21 -
Joined
-
Last visited
Everything posted by JoJoModding
-
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, ...?
-
It is a seperate file, read the EAQ before posting.
-
Please post the debug log (to pastebin or a similar site)
-
crash when opening server forge please help
JoJoModding replied to AgusKs's topic in Support & Bug Reports
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. -
Forge doesn't appear on the Launcher
JoJoModding replied to FiremelonXG2's topic in Support & Bug Reports
Look at the very bottom.. -
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
-
OTG mod is broken. Send this to them, they can fix your problem
-
Forge is only having 1 mod active
JoJoModding replied to BIG CHUNGUS's topic in Support & Bug Reports
Where did you put the mods? -
crash on running clean 1.12.2 forge modloader
JoJoModding replied to cybisone's topic in Support & Bug Reports
Try disabling the splash/loading screen (see splash.properties) -
Where did you get the installer from? Please only use the ones from files.minecraftforge.net
-
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
-
forge crashing on launch! (please help i'm stupid)
JoJoModding replied to clarekc10's topic in Support & Bug Reports
Something's wrong with Structurize's config. Try removing the config, and if that doesn't work, the mod itself. -
Forge 28.0.14 server tick loop error
JoJoModding replied to DorianMuse's topic in Support & Bug Reports
There is no forge 1.14.4 compatible version listed there. So the mod is not yet compatible with 1.14.4 -
Forge 28.0.14 server tick loop error
JoJoModding replied to DorianMuse's topic in Support & Bug Reports
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'? -
[1.7.10] Keeping RF energy in a machine after relog
JoJoModding replied to onVoid's topic in Modder Support
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 -
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.
-
Its already there. Just a few code lines above..
-
I think you should use the RenderHelper, means that shouldUseRenderHelper should return true.