-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
In order to root out one of the more common issues, we'll need to see your hosts file. Here's the steps to getting this file. 1) Press the Win + R key on your keyboard. 2) Paste the following into the prompt that opens: notepad %windir%\system32\drivers\etc\hosts 3) Use Ctrl+A to select everything in the file, then Ctrl+C into the textbox to post to this thread.
-
I don't have a mod that has this. (repost)
ChampionAsh5357 replied to Minthios's topic in Support & Bug Reports
I would just try to remove ftbchunks. It could be that whatever mixin is being applied is for a different version, or something in Forge changed making it apply incorrectly. -
Can anyone explain to me why my 1.18.2 modpack crashes
ChampionAsh5357 replied to borkogot's topic in Support & Bug Reports
There is no crash report in the logs you provided. Could you have perhaps not uploaded the most recent debug.log? -
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently, supported versions are 1.19.4 (Latest) and 1.18.2 (LTS).
-
It seems likely that you have a 1.19 mod in your mods folder while playing 1.18.2. I would suggest removing it.
-
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently, supported versions are 1.19.4 (Latest) and 1.18.2 (LTS).
-
Hosting local server, having connection problems.
ChampionAsh5357 replied to TheRealSlug's topic in Support & Bug Reports
I would probably check some connections with auth, most likely due to ipv6. -
1.19.2 Forge Version Not Loading Up
ChampionAsh5357 replied to All_About_Random's topic in Support & Bug Reports
First, you should be using Java 17. Second, is this the entire debug.log, because there seems to be no error except for an incorrect option type, which I doubt would cause the issue. -
when i try and join my server my game crashes.
ChampionAsh5357 replied to Orinj_311's topic in Support & Bug Reports
Most likely. I would recommend downgrading the mods again and instead try them one at a time to see where the error is. Most likely, someone is compiled against an older version of ftbchunks that's causing the issue. -
Can't get optifine to work with forge
ChampionAsh5357 replied to KazWEGDSCN's topic in Support & Bug Reports
First, OptiFine needs to go in the mods folder if you want to use it with Forge. Second, OptiFine only supports specific versions of Forge, which you can find on their website. Third, you should be using Java 17 with 1.19 versions. Fourth, don't use OptiFine, it's known to break most mods. I would recommend using an alternative whenever possible -
Can't find out what's causing error code 1
ChampionAsh5357 replied to That1Asian62's topic in Support & Bug Reports
-
Adding custom mob drops to my custom mob.
ChampionAsh5357 replied to Casa Nuestra's topic in Modder Support
Do not override #getDefaultLootTable. Assuming the id of the entity is learningmod:flying_monkey, then the loot table should go in resources/data/learningmod/loot_tables/entities/flying_monkey.json -
How do I code my mod by Kotlin for forge Minecraft 1.12.2
ChampionAsh5357 replied to Ilya Grinyk's topic in Modder Support
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently, supported versions are 1.19.4 (Latest) and 1.18.2 (LTS). -
Sprinting Animation for forge mob? (Geckolib)
ChampionAsh5357 replied to irludure's topic in Modder Support
Just check whether `#getTarget` is not null then. You already seem to be doing that, so most likely is that the data is not synced to the client. Maybe you should add a SynchedDataAccessor and set the value to true or false depending on `#setTarget`. -
adding an inventory and container to an item (backpack)
ChampionAsh5357 replied to Vakror's topic in Modder Support
The concept is mainly just an item handler capability with an inventory screen. I would suggest attempting to make it first and then ask questions whenever you get stuck. -
Please provide the debug.log from the logs folder within the game directory via a gist or pastebin.
-
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently, supported versions are 1.19.4 (Latest) and 1.18.2 (LTS).
-
[1.19.4] How can I stop trees spawning on top of ponds?
ChampionAsh5357 replied to Feroov's topic in Modder Support
My guess is that the tree is placed first, followed by the pond. As such, it probably has to do with your biome features order. The pond should be generated in `FLUID_SPRINGS` decoration step, while trees are generated in the `VEGETAL_DECORATION` decoration step.