-
Posts
9273 -
Joined
-
Last visited
-
Days Won
68
Everything posted by LexManos
-
Minecraft Forge (Mac) 1.12 crash while installing forge
LexManos replied to Huntzilla19's topic in Support & Bug Reports
Delete the libraries folder and try installing again.- 1 reply
-
- 1
-
Regarding Minecraft 1.12, And policy changes.
LexManos replied to LexManos's topic in Site News (non-forge)
https://github.com/MinecraftForge/MinecraftForge -
Setup Forge src + Minecraft src - 1.8.8
LexManos replied to SkymaxPlay's topic in Support & Bug Reports
It's possible to create clients, {not legal in quite a lot of ways} But it's impossible to stop cheating on the client's side. I am not gunna download and run your random code on my machine. Oh wow, and reading the page you're offering the pirated version of Minecraft to your users. You REALLY are bad at this. No, No help for you! -
Setup Forge src + Minecraft src - 1.8.8
LexManos replied to SkymaxPlay's topic in Support & Bug Reports
That is impossible to do, don't even try it. -
Setup Forge src + Minecraft src - 1.8.8
LexManos replied to SkymaxPlay's topic in Support & Bug Reports
It can be a mod. -
Setup Forge src + Minecraft src - 1.8.8
LexManos replied to SkymaxPlay's topic in Support & Bug Reports
Then write a normal mod. Again you're not gunna get much help here for developing for such an old version. -
Setup Forge src + Minecraft src - 1.8.8
LexManos replied to SkymaxPlay's topic in Support & Bug Reports
You're gunna need to know a lot more about programming a problem solving if you want to be the 'Polish Forge', Ya you're not gunna get any help here. If you can't figure it out on your own you should help the rest of your community update to the latest version. Or just stick with the latest version for 1.8.9. {Seriously, atleast use 1.8.9 not 1.8.8} -
Setup Forge src + Minecraft src - 1.8.8
LexManos replied to SkymaxPlay's topic in Support & Bug Reports
What EXACTLY are you trying to do and WHY? 1.8.8 isn't supported, 1.8.8 isn't accepting PRs. What the heck are you trying to accomplish with this old version? -
1.12 requires significantly more RAM than 1.17.10?
LexManos replied to mcfmullen's topic in Support & Bug Reports
We have, and it breaks a lot more than it fixes. 10GB however is rather stupid... How the hell are you using that much i'm running packs with 300+ mods on less than 6GB. -
Optifine does a lot of things to 'speed up' the texture reloading. IIRC it threads quite a bit of it so that it seems faster, but it's just doing it in the background. A proper comparison would be Forge to Vanilla, Which we should be comparable if not a little faster. As for the server issue, that I honestly I have no clue. That is all based off when the server sends the ping response to the client. No idea why you're getting such a delay on JUST Forge. There isn't anything we're doing that would cause that.
-
Forge Gradle Doesn't Download The Forge Source
LexManos replied to Alex Couch's topic in Support & Bug Reports
If setupDecomp completes successfully then yes, it downloaded everything. Post your logs, also the 'source' for Minecraft itself is never downloaded, it has to be decompiled on your local machine for legal reasons. Gradle is the same on windows and mac, it all works the time. -
[1.12] can I rely on GameRegistry crafting?
LexManos replied to Socratic_Phoenix's topic in Modder Support
You *SHOULD* try and generic out your recipe so that others can use it or its more configurable. But yes some things are just that simple. Doing it via JSON only increases compatibility and configurability. -
[1.12] can I rely on GameRegistry crafting?
LexManos replied to Socratic_Phoenix's topic in Modder Support
Yes, actually it does. Why special case shit when your recipe can be {"type": "my:custom_recipe"} DONE! SO HARD! -
Is it even possible to run Forge with Minecraft 1.12 and shaders?
LexManos replied to Leego's topic in General Discussion
That would be up to the Shaders mod. You'd have to ask them if they are compatible with Forge/1.12. Find the official release page for them which I don't know off the top of my head. It's the official stance of Forge that any Coremod, or mod that edits Minecraft, is responsible for being compatible with Forge. Not the other way around. -
"You are logged in from another location!" I don't know what the other error is as you need to post your log files. I am not sure what you mean by texture or 'late'. Seems like you're just slightly lagging pinging the server. Stop all processes for Minecraft. Relogin using the minecraft launcher, and you should be fine. Nothing here seems to be a 'problem with Forge'
-
Cannot download any version of forge
LexManos replied to Jalekatash's topic in Support & Bug Reports
Try using the direct links in the full list. Seems your comptuer doesnt like adfocus. -
User was banned for using Mineshafter
-
Minecraft Forge save data in .mca files
LexManos replied to Olleggerr's topic in Support & Bug Reports
Ah, simple reasoning, if you look at the anvil save code, it doesn't re-zero chunks that get freed. So thats left over chunk data from old chunks that existed in that slot. So ya it may actually be worth it to go through and figure out what region files can be 'defragmented' However I would suggest you do things CORRECTLY and actually go in and read the header info instead of just jumping around the file guessing. -
Forge for 1.12 not downloading a .jar file
LexManos replied to h3llobob's topic in Support & Bug Reports
Its not supposed to have a jar file. -
I know HTTPS is something Flamegoat was working on. Not sure how far hes gotten with it. Seems like he hasn't enabled it for the forums yet.
-
Minecraft Forge save data in .mca files
LexManos replied to Olleggerr's topic in Support & Bug Reports
Files are padded to 4KB to take advantage of how modern computers deal with files on disk. To help prevent fragmentation and to prevent disk thrashing. In the grand scheme of things you're talking a miniscule fraction of the file size. So there really isn't a need to change anything. As for what Forge is doing, everything that Forge does is in the compressed data. So it sounds more to me that you're reading the entire format wrong.