Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Traditional healer in benoni+27836216186, I can help you to connect with your ancestors, facilitate the deepening of your relationship with the spirit world Working in partnership with one's ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.
  3. Traditional healer in bramley +27836216186, I can help you to connect with your ancestors, facilitate the deepening of your relationship with the spirit world Working in partnership with one's ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.
  4. Traditional healer in centurion+27836216186, I can help you to connect with your ancestors, facilitate the deepening of your relationship with the spirit world Working in partnership with one's ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.
  5. Traditional healer in cape town +27836216186, I can help you to connect with your ancestors, facilitate the deepening of your relationship with the spirit world Working in partnership with one's ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.
  6. Traditional healer in midrand +27836216186, I can help you to connect with your ancestors, facilitate the deepening of your relationship with the spirit world Working in partnership with one's ancestors is a gift representing a close link with the spirit realm as a mediator between the worlds.
  7. Today
  8. 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)
  9. HOW I FULLY RECOVERED MY FUNDS FROM CRYPTO SCAMMERS i lost $26,000 from a illegitimate fake trading broker, tring to withdraw my funds I was always asked to pay more, i discovered all was scammed and I was devastated. I follow a post on facebook to a security company that helped me recovered all my lost without no upfront fees. email brucedavid004@ gmail.com or Visit Texaco Recovery https://www.facebook .com/profile.php?id=61550299165926
  10. 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.
  11. Yesterday
  12. 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 :,(
  13. 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"
  14. https://drive.google.com/file/d/1M0EG-c5yfRd08DSnE5HVQNCu2v0YtA7A/view?usp=sharing
  15. 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?
  16. 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.
  17. [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
  18. 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
  19. 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
  20. that fixed it! Thank you soo much!!! If there is a way I can like upvote your profile or something let me know!
  21. Also add the latest.log from the server after such disconnects
  22. i am the host of the server, so im running the server and playing on it with a friend
  23. 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.
  24. There are two java lines and the / are mixed up Use this as script: "C:\Program Files\Java\jdk-17.0.10\bin\javaw.exe" -Xmx8G -Xms2048M @libraries/net/minecraftforge/forge/1.20.1-47.2.0/win_args.txt %* pause Replace the complete script with it (you don't need the REM lines) Make sure the java path is correct and keep the quotation marks
  25. I am a beginner modder, with around 50 hours of experience being guided by tutorials and chat-gpt. My mod is almost done, but I want to make the plants specifically require sunlight to encourage players to establish structure above ground. After looking at the vanilla code for a few hours, I'm still unsere what the best way to do this would be. I would be happy if someone with more experience could point me in the right direction.
  26. Ah, its old code that is outdated. Basically EventHandler is for FML specific events. Typically the lifecycle ones. On moddern versions its the modBus.
  1. Load more activity
×
×
  • Create New...

Important Information

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