-
Posts
58 -
Joined
Everything posted by LeoCTH
-
I was trying to retrieve what item does the TileEntity current has (in a ItemStackHandler) in a TileEntityRenderer. It simply returns no items each time I want to access it. My TileEntity code: https://github.com/LeoCTH/TryingOut/blob/master/src/main/java/com/leocth/tryingout/blocks/energy/ChargingStationTE.java My TESR: https://github.com/LeoCTH/TryingOut/blob/master/src/main/java/com/leocth/tryingout/client/render/tile/RenderChargingStation.java My Main Class: https://github.com/LeoCTH/TryingOut/blob/master/src/main/java/com/leocth/tryingout/TryingOut.java P.S. It's been a long time since my last post. I might have upset somebody on this forum while having a dispute, so my apologies ;P
-
You sure you feed enough RAM to the game? Open your launcher, click the "list" button, select Launch options -> Advanced settings ON, open your profile and set a JVM param "-Xmx2G" or something like that.
-
Network problem. and usually not related with mods.
-
[STOP USING 1.8.x. Why don't you guys use more friendly and fresh 1.11+?] ↖Ignore this and it is a hardware question and it is pretty hard to diagnose it.
-
Stop using 1.8.9 and use 1.11+ instead. and looks like you have a system permission problem. Grant the program "admin permission" before running.
-
And you also confuse RAM and hard disk space.
-
and i see you're in 1.7.10. it is no longer supported on the forum. upgrade to 1.8+ to get more help.
-
And... sh!t I need a VPN
-
woah. try to avoid people download stuff. the thing that makes this ridiculous is it states it's related with "Entity AI Attack On Collide" by a Zombie, and all the mods are at status of UCHIJAAAA. Dunno. sounds funny to me.
-
Minecraft Forge 1.12.2 not responsive
LeoCTH replied to applefan935's topic in Support & Bug Reports
Is it just stops here? or you don't post the full file? If it just stops there, then you have a really ridiculous situation. -
Show your crash report.
-
I think Java and those JVM-based languages are not DESIGNED to have OOMs and memory leaks like C. and bring the whole issue. Is your server still running okay/not crashing? If it crashes it will make easier the problematic code.
-
I've not used replaymod before... Maybe you are using a test/unstable/snapshot release? Use a stable release. PS. If that version is labeled "stable" you can doubt the author's reliability.
-
Only you then. Like LexManos said: DON'T DOWNLOAD FORGE FROM THIRD-PARTY UNAUTHORIZED WEBSITES. Not only forge, I advise to follow it on ALL SOFTWARES. ONLY DOWNLOAD FROM OFFICIAL/VERIFIED WEBSITES.
-
I need to ask a noob question to you guys: How to make a GUI? The tutorial I'm following is for 1.8.9 so I don't know is it suitable for me.
-
[1.10.2] ForgeRegistries.ITEMS.register or GameRegistry.register(item)?
LeoCTH replied to mooL's topic in Modder Support
Okokokokok guys I'm just gonna make a new thread cuz I don't want to spam at other's threads again lol -
[1.10.2] ForgeRegistries.ITEMS.register or GameRegistry.register(item)?
LeoCTH replied to mooL's topic in Modder Support
yes exactly... but in my own personal case I use ForgeRegistries: LINK and GameRegistry.register is REALLY private access, and it's javadocs also says it's internal. -
[1.10.2] ForgeRegistries.ITEMS.register or GameRegistry.register(item)?
LeoCTH replied to mooL's topic in Modder Support
GameRegistry.register() is now private and internal. Use register events, or ForgeRegistries above.