Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Maybe a driver issue - check for updates
  3. Oh yeah sorry, the latest version I was playing was vanilla 1.19. Here's the Forge one: Paste.ee - log I won't be available for a few hours, so I'll get back to you as soon as I can. Wait the URL didn't go paste.ee/p/cvueg
  4. Today
  5. This is a log from vanilla 1.19 maybe switch to a custom Launcher like MultiMC or AT Launcher Install a Forge 1.20.1 modpack and use it as working base - then just replace/add/remove mods from the mods folder
  6. Okay, sure Paste.ee - View paste dBXY0 It's the log called latest
  7. Add the latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here
  8. Hello! So just to give a little background info, I recently downloaded Forge, and Java so I could actually run Forge installer, and then it didn't work. So, I used JarFix and then it started to work. So after I installed Forge version 1.20.1, I launched it in the Minecraft launcher. But when I load into the game, it says 2 mods active, and those are Minecraft and Forge, but I put WorldEdit in my mods folder. I'm not really sure what's happening, and really, I just want to have any kind of mod installed that will work. I don't know how to add pictures to this post, but I have some screenshots if you need them. Thanks!
  9. Add the latest.log from the server's logs folder
  10. Open the user_jvm_args.txt and remove the # at -Xmx4G Save it and test it again
  11. Replace Optifine with Embeddium + Oculus
  12. Add the full crash-report or latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here
  13. This is the error: The game crashed whilst initializing game Error: java.lang.IllegalAccessError: class net.minecraft.client.Minecraft tried to access private field com.mojang.blaze3d.platform.Window.f_85349_ (net.minecraft.client.Minecraft and com.mojang.blaze3d.platform.Window are in module [email protected] of loader 'TRANSFORMER' @5d5574c7)
  14. Error: org.spongepowered.asm.mixin.injection.throwables.InjectionError: LVT in net/minecraft/client/renderer/texture/TextureAtlas::m_118307_(Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/stream/Stream;Lnet/minecraft/util/profiling/ProfilerFiller;I)Lnet/minecraft/client/renderer/texture/TextureAtlas$Preparations; has incompatible changes at opcode 151 in callback watut.mixins.json:client.TextureAtlasPrepareToStitch->@Inject::prepareToStitch(Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/stream/Stream;Lnet/minecraft/util/profiling/ProfilerFiller;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Set;)V.
  15. Yesterday
  16. Hi, when i start the run.bat for the first time it open the cmd and say this: https://imgur.com/a/K8M6MK5 "Error: no se ha encontrado o cargado la clase principal @user_jvm_args.txt Presione una tecla para continuar . . ." In English "Error: Main class @user_jvm_args.txt not found or loaded Press a key to continue . . ." I didnt found any post whit the same error or when i found one, i didnt understand the steps to make it because im from argentina, i need help :,(
  17. hello when i enter the map it appears Internal Exception: io.netty.handler.codec.DecoderException: net minecraft.ResourceLocationException: Non La-zu 9_-] character in namespace of location: t\": "Empty Tag กโมดดอดมดลอดโทโนด001u0007display b1u000004Nameueoo+"texti"
  18. https://drive.google.com/file/d/1M0EG-c5yfRd08DSnE5HVQNCu2v0YtA7A/view?usp=sharing
  19. so im not sure if your still watching this TileEntity but once we loaded a FTB modpack we wanted to run on the server it no longer seems to run. The console opens like normal but we've been sitting here for like a little over an hour and the server screen has not yet opened. Should we just keep waiting at this point?
  20. I have now easily fixed the duplication error present, I was just not looking. I have been working for the past half hour to try and fix another error present, this time with the Creative Mode Tab. I have changed some things around to get where I am currently. (ModFoods to ModDrinks*) and it cannot find the symbol ".get" at the end of the code. *The custom class you recommended pOutput.accept(ModDrinks.ORANGE_JUICE.get()); I think the point I am at currently is the closest I have to how it should be but because I am not as experienced with java I would not know. I have also removed ORANGE_JUICE and LEMON_JUICE from the ModFoods class, to avoid confliction. I do hope all this can be fully resolved soon.
  21. [SOLVED] public class RenderGUIHandler { @SubscribeEvent public void renderGUI(RenderGameOverlayEvent.Text event){ Client.hud.draw(); } } As I was playing around a little with the code, i found out about an option to change The RenderGameOverlayEvent.Post to RenderGameOverlayEvent.Text
  22. public class HUD { public Minecraft mc = Minecraft.getMinecraft(); public static class ModuleComparator implements Comparator<Module>{ @Override public int compare(Module o1, Module o2) { if (Minecraft.getMinecraft().fontRendererObj.getStringWidth(o1.name) > Minecraft.getMinecraft().fontRendererObj.getStringWidth(o2.name)){ return -1; } if (Minecraft.getMinecraft().fontRendererObj.getStringWidth(o1.name) < Minecraft.getMinecraft().fontRendererObj.getStringWidth(o2.name)){ return 1; } return 0; } } public void draw(){ ScaledResolution sr = new ScaledResolution(mc); FontRenderer fr = mc.fontRendererObj; Collections.sort(Client.modules, new ModuleComparator()); GlStateManager.pushMatrix(); GlStateManager.translate(4,4,0); GlStateManager.scale(1.5,1.5,1); GlStateManager.translate(-4, -4, 0); fr.drawString("Skyline", 10, 10, -1); GlStateManager.popMatrix(); int count = 0; for (Module m : Client.modules){ if (!m.toggled || m.name.equals("TabGUI")) continue; int offset = count* (fr.FONT_HEIGHT + 6); GL11.glTranslated(0.0f, 0.0f, -1.0f); Gui.drawRect(sr.getScaledWidth() - fr.getStringWidth(m.name) - 10, offset, sr.getScaledWidth() - fr.getStringWidth(m.name) - 8, 6 + fr.FONT_HEIGHT + offset, -1); Gui.drawRect(sr.getScaledWidth() - fr.getStringWidth(m.name) - 8, offset, sr.getScaledWidth(), 6 + fr.FONT_HEIGHT + offset, 0x90000000); fr.drawString(m.name, sr.getScaledWidth() - fr.getStringWidth(m.name) - 4, offset + 4, -1); count++; } Client.onEvent(new EventRenderGUI()); } } I have just recently stumbled upon this Problem, where the HudRenderer renders the wrong section of the textures and therefore completely destroys the Minecraft Armour and Hunger Bar. I am currently thinking if it is an issue with the DrawRect changing something it shouldn't. But I couldn't find anything about it. (To keep things Clean, the function is Called from another file) public class RenderGUIHandler { @SubscribeEvent public void renderGUI(RenderGameOverlayEvent.Post event){ Client.hud.draw(); } } Any help would be greatly appreciated
  23. Hello, I play on a private server (forge 47.2.0) (about 200 mods) with my friends. Everything is normal until the game crashes. I assume it's due to the generation of a chunk, possibly in a biome from the Aquamirae mod. Caused by: java.lang.NullPointerException: No chunk exists at [9, 38] at net.minecraft.server.level.WorldGenRegion.m_6325_(WorldGenRegion.java:2079) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at net.minecraft.server.level.WorldGenRegion.m_6924_(WorldGenRegion.java:375) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at net.minecraft.world.level.levelgen.structure.structures.ShipwreckPieces$ShipwreckPiece.m_213694_(ShipwreckPieces.java:127) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at net.minecraft.world.level.levelgen.structure.StructureStart.m_226850_(StructureStart.java:90) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at net.minecraft.world.level.chunk.ChunkGenerator.m_223080_(ChunkGenerator.java:320) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at com.google.common.collect.ImmutableList.forEach(ImmutableList.java:422) ~[guava-31.1-jre.jar%2374!/:?] at net.minecraft.world.level.chunk.ChunkGenerator.m_213609_(ChunkGenerator.java:319) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at net.minecraft.world.level.chunk.ChunkStatus.m_279978_(ChunkStatus.java:108) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at net.minecraft.world.level.chunk.ChunkStatus$SimpleGenerationTask.m_214024_(ChunkStatus.java:309) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at net.minecraft.world.level.chunk.ChunkStatus.m_280308_(ChunkStatus.java:252) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at net.minecraft.server.level.ChunkMap.lambda$scheduleChunkGeneration$27(ChunkMap.java:643) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-6.0.8.jar%2377!/:?] at net.minecraft.server.level.ChunkMap.lambda$scheduleChunkGeneration$29(ChunkMap.java:634) ~[server-1.20.1-20230612.114412-srg.jar%23375!/:?] at java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1150) ~[?:?] ... 11 more
  24. that fixed it! Thank you soo much!!! If there is a way I can like upvote your profile or something let me know!
  25. Also add the latest.log from the server after such disconnects
  26. i am the host of the server, so im running the server and playing on it with a friend
  27. https://www.mediafire.com/file/5opvwhk5jrc7xy9/latest.log/file here is the file. So the problem happens when some of my friend after waking up in the bed, or random times.
  1. Load more activity
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.