Everything posted by warjort
-
game always crash
Optifine issue: https://github.com/sp614x/optifine/issues/7127
-
Server Setup Crash
Use java 17. Mixin does not support java 19
-
Minecraft crashes after creating a new world
Post a link to your logs/debug.log
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError:
Looks like a conflict between rubidium and the chunk animator mods. Check you have the latest versions then contact the mod authors.
-
Server crashes when a specific friend join -- Please Help!
The blue skies mod is trying to access a chunk that does not exist during world generation. But it could be any of the mods I have underlined above. From where it crashes I don't think blue skies determines which block to access? The most likely is canary since that is directly in the call path and it looks like it is iterating over many blocks from the name of the method. You should report this to modpack author and/or the mod authors.
-
Forge keeps crashing exit code -1
Issue with swing through grass mod. It uses a feature not added until forge 40.1.20, you have 40.1.0 But there is a fix in that area in forge 40.1.76 https://maven.minecraftforge.net/net/minecraftforge/forge/1.18.2-40.1.84/forge-1.18.2-40.1.84-changelog.txt
-
IDK what the problem is, my server crashes every time i try to start it, also i have a lot of mods
Use java 17. Mixin doesn't support java 19 Or remove all the mods that use mixin. 🙂
-
How do I call the "GameRules.BooleanValue.create" method?
https://forge.gemwire.uk/wiki/Access_Transformers
-
Detect which block an item stack is touching
You made a hand grenade. 🙂 That method is called on both the client and the server. You should really only be creating explosions on the server, check the entity.level.isClientSide
-
How to create an entity with properties and textures of a block
There are many ways to summon an entity. Since you want to give it an initial velocity, have a look at GhastShootFireballGoal. For rendering a block during entity rendering, look at the FallingBlockRenderer, used for things like falling sand or dropping anvils.
-
BUG ON INSTALLATION OF FORGE 1.10.2
Try launching the vanilla 1.10.2 game first. That should download that jar from its modern location? Beyond that, 1.10.2 is no longer supported in these forums.
-
Where to make the folders/files?
Just keep reading, and be more specific. I assume you mean? https://docs.minecraftforge.net/en/1.18.x/concepts/resources/#ResourceLocation
-
[1.19.2] [Forge] My bud is instantly disconnected from the game after he joins me, getting "IndexOutOfBoundsException".
People that use hacked clients don't get support. Buy the game.
-
Detect which block an item stack is touching
You can override IForgeItem.onEntityItemUpdate() This is called from the ItemEntity.tick() method for your Item. Within that same method you can see it doing position based checks like if it is water or closer to your requirements, getting the friction of the block beneath the item.
-
How can I detect what the player is aiming at?
You know this forum has a search feature? https://forums.minecraftforge.net/topic/118090-check-if-player-is-looking-at-a-block/#comment-519547 The hit result has a distanceTo() method. Which is actually the square of the distance.
-
30+ hour all the mods 8 minecraft save no longer loading
One of your configuration files is invalid/corrupted. You can find it in the folder saves/<save-name>/serverconfig If you don't have a backup of the file, you can delete it and it will be recreated with default values.
-
[1.19] Refresh Villager Trades
If you look at AbstractVillager.getOffers() it will only regenerate the trades if the offers field is null. It does this by calling updateTrades(). But if you look in that method it calls addOffersFromItemListing() with a maximum of 2. So, it will only ever create 2 trades. You could use an access transformer to make the Villager.updateTrades() method public. https://forge.gemwire.uk/wiki/Access_Transformers Then call it multiple times to fill all the levels for the villager?
-
My Minecraft with forge 1.18.2 and mods crash without error
Please don't post logs in the forum, use a file sharing site. The last thing in your log is something to do with voice chat creating an audio channel. So maybe something to do with that? Post a link to your launcher_log.txt to see if that has recorded an error. NOTE: If you've reopened your launcher after a crash that will clear the log. So get that log straight after the crash occurs.
-
Threw a bunch of mods together to make a modpack but it's crashing in the world after pressing ANY key
Looks like an incompatibility between colytra and cyclic. Contact the colytra mod author. Since cyclic was changed 3 days ago, it's likely the colytra mod author hasn't had chance to update their mod. Try one of the previous versions of the cyclic. https://www.curseforge.com/minecraft/mc-mods/cyclic/files/all?filter-game-version=1738749986%3a73250
-
How to get the item description from an item inside the current open container menu (clientside) (1.18.2)
getDisplayName() is its description. Do you mean Screen.getToolTipFromItem() ?
-
Crash Upon Clicking Key Binds
Looks like one of your mods has been playing around with the keybindings and broken them. The crash report gives no clue which mod has done this. It could be a mod you installed and then removed? You can try backing up and deleting your options.txt in the minecraft folder. That will reset your options back to defaults. If it still happens then you will need to post a link to your logs/debug.log to see if that contains any clue to the mod causing the problem.
-
Error says exception in server loop
Your curios server config file is invalid/corrupted. If you don't have a backup of this file, you can delete it and it should be recreated with default values. You can find it in world/serverconfig
-
medievil Mc forge 1.18.2 crashing
Please don't post text as images. Post a link to your logs/debug.log Looks like an issue with radium. Check you have the latest then contact the mod author.
-
Attempted to load class net/minecraft/client/multiplayer/ClientLevel for invalid dist DEDICATED_SERVER error on server run
Issue with the rubidium mod which is a client side mod. You don't need it on the server. Either remove the mod from the server or report the issue to the mod author. Client side mods should completely disable themselves if they are installed on the dedicated server.
-
How to disable entity dismount by pressing Shift
You can try listening for key presses and resetting the state when your requirements are met. Something like: @Mod.EventBusSubscriber(modid = MODID, value = Dist.CLIENT) public class ClientEvents { @SubscribeEvent public static void keyPress(InputEvent.Key event) { var minecraft = Minecraft.getInstance(); if (minecraft.options.keyShift.isDown() && minecraft.player.getVehicle() instanceof YourEntity) { minecraft.options.keyShift.setDown(false); } } }
IPS spam blocked by CleanTalk.