
Everything posted by Cadiboo
-
[SOLVED!] [1.12.2]Making an item using an OBJ model and blockstates JSON
This will crash on a dedicated server This entirely defeats the whole point of proxies and will crash very uglily on a dedicated server
-
[1.13.2] Some forge questions from a novice
Forge for 1.13.2 is mostly done. However, Forge is built on top of Mojang’s minecraft code which doesn’t have “simple and clear interfaces, factories and classes for the rapid development of modifications”. Minecraft is not built with modding in mind at all and doesn’t have any code related to mods at all. Forge has many of these things though like event subscribing and Modder-friendly extensions to the vanilla system (like registries & capabilities). The documentation for vanilla methods is usually lacking or non-existent, but Forges methods are usually well documented. The Forge documentation (at https://mcforge.readthedocs.io/en/latest) hasn’t been (fully) updated for 1.13.2 yet. The Forge team is mostly focussed on fixing major bugs in 1.13 and preparing for 1.14. In future please upload your code as a working GitHub repository. People on these forums are unlikely to download random files from people they don’t know, and people on mobile can’t open zip files.
-
Removing Vanilla Stuff???
Your class isn’t annotated with @EventBusSubscriber and your method isn’t static so everything should work, but here’s this just in case. You want the method Event#setCancelled(boolean) which translates to the code event.setCancelled(true/false); Your method should also begin with a lowercase (onEntitySpawn rather than OnEntitySpawn) and probably should be called onEntityJoinWorld because it’s not the same as spawning.
-
crashing
Sorry we don't support 1.7.10 (it's 4+ years old!) or any version under 1.10 on this forum anymore due to their age. We simply don't know how to help you anymore. You can go to the Minecraft Forum where I think that they still still support older versions, or update to a modern version of Minecraft (the latest version or the one before it) to receive support on this forum.
-
Contributing to Forge: 1.13.2 documentation update?
The test mods are disabled in 1.13.2
-
[1.13.2] "Correct" way to change a hard-coded value
Yes Yes. But it might not get accepted anytime soon with all the major work being done on 1.13 and 1.14
-
[1.13.2] "Correct" way to change a hard-coded value
If you make a good use case for it, it’s pretty likely that your PR will be accepted. You could also make a wrapper for the ingame gui and override renderHUDText
-
[Solved][1.12.2] Rendering issues with dynamic block model
That’s the vanilla code that renders all the blocks for a chunk, translucency works right for it so I was thinking you might want to compare your code to it
-
[1.13.2] Fast TESR and Rotation
You definitely shouldn’t be rebaking the model each frame
-
Mods for mine craft 1.13.2
Yes, you can play on 1.12.2 with 1.12.2 mods, and then play on 1.13.2 with 1.13.2 mods when they come out.
-
Class 'net.minecraftforge.userdev.LaunchTesting' not found in module
Refresh the gradle project
-
Automatically generate JSON files
Here’s something super simple that you can expand upon. https://github.com/Krevik/Kathairis/blob/a11b48e9971033d136d276afa146d05d577e4210/src/main/java/io/github/krevik/kathairis/ForgeEventSubscriber.java#L32-L116
-
isFlying in Multiplayer
What are you trying to do, from an end-user perspective?
-
[SOLVED!] [1.12.2]Making an item using an OBJ model and blockstates JSON
No. .mtl is not a .obj file. AFAIK It will look for .obj files first if you called OBJLoader.addDomain, then it will look for .json files.
-
Mob modelers
- [SOLVED!] [1.12.2]Making an item using an OBJ model and blockstates JSON
I don’t think that you should had “.obj” at the end of the model path. Also I think that everything should just work if you’re correctly calling OBJLoader.addDomain- [1.12.2]Block Variants not Rendering
Everything that IHasModel does can be done better in a lot less code. https://gist.github.com/Cadiboo/3f5cdb785affc069af2fa5fdf2d70358- [SOLVED!] [1.12.2]Making an item using an OBJ model and blockstates JSON
It’s still looking for a json file instead of an obj file- OreDictionary.WILDCARD_VALUE
OreDictionary was entirely replaced by the vanilla Tag system in 1.13- [Solved][1.12.2] Rendering issues with dynamic block model
You might want to look at how Blocks are rendered in RenderChunk#rebuildChunk- [1.12.2] Custom Tree Problems
TIL. I thought autoboxing was done by the JVM for some reason. It makes a lot more sense that it’s the compiler though.- Minecraft twitch custom modpack keeps crashing again
Somethings going wrong with your models. Can you please post your debug log as described in my signature and the EAQ?- Pixelmon Server Issues
There appears to be almost nothing at all wrong with that log. There are no crashes and the only warning appears to be related to pixelmon’s entity data manager.- OreDictionary.WILDCARD_VALUE
I use Java so that I can generate everything dynamically based on what’s in the Forge registries.- [1.12.2] Need something like "renderEntity", but with head only.
You could look at the skull TESR code - [SOLVED!] [1.12.2]Making an item using an OBJ model and blockstates JSON
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.