warjort
Members-
Posts
5420 -
Joined
-
Last visited
-
Days Won
175
Everything posted by warjort
-
World gen taking forever to load in Dawncraft
warjort replied to KirThalos's topic in Support & Bug Reports
I do know how to help, but only if you post the error in the logs/debug.log Doing that is a mandatory requirement specified in the EAQ at the top of the forum. Instead, you just complain because I don't have psychic powers. Somehow I should know what the problem is from some random image. TLDR; no log = we can't help you And start your own thread instead of hijacking other people's. But I likely won't be helping you. You lost my interest with your uninformed comment. -
my server crashes because of a mixin file conflict, help me!
warjort replied to Gael levy's topic in Support & Bug Reports
That error says one of your mods is incorrectly trying to load client side classes. It does not say which mod. The logs/debug.log might have more information? -
https://github.com/MehVahdJukaar/modelfix-multi/issues/22
-
-
Unrelated but you should look at it. Actual error: Another broken client side only mod.
-
What is the error on the console? Most likely it is rubidium or some other client side only mod that crashes the game when loaded on the server like oculus, just enough animations or legendary tooltips?
-
You have
-
Use java 17
-
If you don't post more concrete information with your question, I am just going to ignore this thread until you do. I am not going to waste more time making further incorrect guesses about what you are doing (like they were the same entity type) only to give you more incorrect/irrelevant answers.
-
This is not a teach me how to mod forum. It is a support forum. You need to show what you have tried that you think should work. Preferably with the minimum amount of code on github so we can reproduce your problem. If we have to waste time asking for that information, we probably won't, instead your question will likely just get ignored unless the problem is obvious from the small amount of information posted. Anyway, the answer to this vague question can probably be found by comparing your code with Zombie.finalizeSpawn() or one of the other vanilla entities that can spawn multiple types?
-
Please don't post logs in the forum, use a file sharing site. There is no error in what you posted, if it really is the full log, post a link to the launcher_log.txt from directly after the crash.
-
Game crashed whilst initializing game Forge 1.19.2 modpack
warjort replied to gkkayden's topic in Support & Bug Reports
That error does not say which mod is causing the problem, but it is likely one of the mods underlined below Check you have the latest versions then contact the mod authors. -
Post the logs/debug.log to a proper file sharing site.
-
How to Reset Style for a TextComponent in 1.18.2?
warjort replied to Jonas Handtke's topic in Modder Support
https://forge.gemwire.uk/wiki/Components/1.18#BaseComponent i.e. siblings inherit style from their parent (the thing they are append to). You need to set a color instead of that setStyle(Style.EMPTY) which literally means propogate all the parent style to me. -
Gravitas - 1.18.2 Crash Report - NEED HELP
warjort replied to Relarion's topic in Support & Bug Reports
You need to give it more memory. -
You know this question has been asked and answered "a million times" before in various forms in this forum? Along with all the potential "gotchas" that people commonly get wrong. Anyway: For the vanilla animations there is Item.getUseAnimation(). For the bow you will also need to understand ItemProperties https://forge.gemwire.uk/wiki/Item_Properties and how they interact with model overrides. This is the vanilla bow model: https://github.com/misode/mcmeta/blob/assets/assets/minecraft/models/item/bow.json Or here's some mods on github that reference UseAnim.BOW and so might similar to whatever you are trying to do? https://github.com/search?q=UseAnim.BOW&type=code That should be enough hints on what to research? Ultimately, you would be better off looking at ItemInHandRenderer and ItemRenderer (then following the rabbit hole) to see how all this fits together. Finally, this is a support forum not a learn modding forum. Questions like "can you tell me how to", "do you have an example", "insert question answered on wiki" will likely just get ignored. I only answered this question because it is your first post, I very nearly didn't. Come back when you have a problem with something you have actually tried to implement. That way you will also have a better chance at understanding any answers you do get.
-
https://forge.gemwire.uk/wiki/Custom_Item_Animations
-
https://forums.minecraftforge.net/topic/123710-minecraft-1194-forge-crash/ The maxFps value in your options.txt is also wrong
-
Post a link to your logs/debug.log
-
Game crashes when trying to render an entity. Forge 1.18.2
warjort replied to Mantas22XYT's topic in Support & Bug Reports
That error means one of your mods hasn't registered it entity renderer properly. The error does not say which mod or entity is causing the problem. Usually the only way to find it is to experiment with removing mods until you find the problem mod. Use a backup of the world to test removing mods. I can also see one mod (underlined below) modifying code in this area that might be causing it? -
https://forums.minecraftforge.net/topic/123710-minecraft-1194-forge-crash/