Jump to content

Recommended Posts

Posted

Request: Forge take over 4096 support and updates.

 

4096 mod Status:

[*]Robinton no longer updates and has released his code as open source for moders:

https://github.com/ScottKillen/Robinton-s-4096IDs

 

I have no idea how to use this open source as an end user. It appears that it is all java code that has to be added into a mod and compiled, etc. Above my ability level.

 

[*]mDiyo no longer maintains the 4096 fix mod either. The beta is v4.2 and does not work with the latest Forge releases (I had to roll back to Forge 108 to find a Forge version that works with mDiyo's 4096 AND does not cause Buildcraft to throw texture errors repeatedly.

mDiyo 4096fix:  http://www.minecraftforum.net/topic/521617-125-inficraft/

mDiyo Statement about ending modding: http://www.minecraftforum.net/topic/521617-125-inficraft/page__view__findpost__p__14809878

 

---

Since this "fix" does not appear to be on Mojang's radar for the infinite future (I could rant here, but I won't) - Is there any possibility that the programmers working on Forge could take this over and keep it up-to-date as Forge updates the class that 4096 utilizes?

 

Thank you!

Posted

Short answer: No

Long answer: Maybe

 

Beyond that, not going to discuss it.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

I gather there is more here than we are aware. We should trust that Lex will let us know what we need to know when the time comes. Until then, watch my github for updates...working on it now.

Posted

minecraft 12w 07a

 

 

    Added new world file format called “Anvil” (256 max height and 4096 block IDs*)

 

* The game can’t use the full range of IDs yet because there are still some assumptions that IDs above 256 are items.

 

    Multi-player light calculations do no longer cause affected blocks to be transmitted to the clients, instead the clients will recalculate the light on their own

 

    Villagers will repopulate villages based on how many houses there are available

 

    Some nights in villages will be worse than others…

 

    Added a redstone-controlled light source

 

    Decreased chance for the rare mob drops

 

    All animals use the new AI system now

 

http://www.mojang.com/2012/02/minecraft-snapshot-12w07a/

Posted

That part is established fact. Robinton and mDiyo completed 4096 id support in different ways in their respective mods, so this thread is about the suggestion that functionality should be included in Forge. you can see LexManos response above.

Posted

Ya I dont plan on doing anything major untill my new HDD arrives and it doesn't take 45 mins to setup MCP u.u

And won't do any actual work till after the next Forge release.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

That is useless, Sending me the same patch file I generated doesnt help.. at all..

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Did I make thread like this there? Yes I did: http://minecraftforge.net/forum/index.php/topic,266.0.html ! Please use search function some more (@mods, maybe thread merge?).

 

Also I am 100% for that to be bundled with Forge as it will help both modders (they will have more ids use, so smaller probability that two mods will use same ID, except those that are already made) and players (hopefully lesser amount of block config errors).

 

IMO some kind of ID Resolver solution for newly installed mods, perhaps based on Redpower's autoassign code would be good from player's standpoint. And by newly installed mods I mean mods with no config files, so mods that you have or had installed and your worlds should be safe. Bu this is offtopic.

Posted

Whist actually put some work into his proposal, while your thread just asks a question. Your post here is longer than your original post on that thread. Furthermore, on your thread, Lex ended the discussion. It would be silly to merge threads.

 

ID Resolver may be useful to players, but causes all kinds of havoc and support issues for mod developers. Also, RedPower's code and ID Resolver are completely unrelated and do not function in the same way. If Lex is going to implement this, trust him to do it correctly.

Posted

Kudos to the Forge team for adding 4096 Support!

 

In the changelog on the github you state that you've based it off of Mdiyo's work. Does that mean that ID 0-255 are blocks, and 256-4095 can be both blocks and items? If that's the case, do you change the vanilla ID's to something >4096 or do they remain in place?

 

@ScottKillen: RP2's ID-code and IDResolver are indeed incompatible. If you have both, you need (from experience) to edit every ID manually to make it work. Otherwise several items will be allocated to the same ID, and several blocks as well (also using Mdiyo's fix (4.2), IDresolver and Forge .97)

Posted

Thanks, Matt I understand that they are compatible, but darkhog implied they were related:

 

IMO some kind of ID Resolver solution for newly installed mods, perhaps based on Redpower's autoassign code would be good from player's standpoint. And by newly installed mods I mean mods with no config files, so mods that you have or had installed and your worlds should be safe. Bu this is offtopic.

 

I was trying to point out that it isn't as easy to combine the two as he seemed to be saying.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • This is the last line before the crash: [ebwizardry]: Synchronising spell emitters for PixelTraveler But I have no idea what this means
    • What in particular? I barely used that mod this time around, and it's never been a problem in the past.
    • Im trying to build my mod using shade since i use the luaj library however i keep getting this error Reason: Task ':reobfJar' uses this output of task ':shadowJar' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed. So i try adding reobfJar.dependsOn shadowJar  Could not get unknown property 'reobfJar' for object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler. my gradle file plugins { id 'eclipse' id 'idea' id 'maven-publish' id 'net.minecraftforge.gradle' version '[6.0,6.2)' id 'com.github.johnrengelman.shadow' version '7.1.2' id 'org.spongepowered.mixin' version '0.7.+' } apply plugin: 'net.minecraftforge.gradle' apply plugin: 'org.spongepowered.mixin' apply plugin: 'com.github.johnrengelman.shadow' version = mod_version group = mod_group_id base { archivesName = mod_id } // Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. java.toolchain.languageVersion = JavaLanguageVersion.of(17) //jarJar.enable() println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" minecraft { mappings channel: mapping_channel, version: mapping_version copyIdeResources = true runs { configureEach { workingDirectory project.file('run') property 'forge.logging.markers', 'REGISTRIES' property 'forge.logging.console.level', 'debug' arg "-mixin.config=derp.mixin.json" mods { "${mod_id}" { source sourceSets.main } } } client { // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. property 'forge.enabledGameTestNamespaces', mod_id } server { property 'forge.enabledGameTestNamespaces', mod_id args '--nogui' } gameTestServer { property 'forge.enabledGameTestNamespaces', mod_id } data { workingDirectory project.file('run-data') args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') } } } sourceSets.main.resources { srcDir 'src/generated/resources' } repositories { flatDir { dirs './libs' } maven { url = "https://jitpack.io" } } configurations { shade implementation.extendsFrom shade } dependencies { minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" implementation 'org.luaj:luaj-jse-3.0.2' implementation fg.deobf("com.github.Virtuoel:Pehkui:${pehkui_version}") annotationProcessor 'org.spongepowered:mixin:0.8.5:processor' minecraftLibrary 'luaj:luaj-jse:3.0.2' shade 'luaj:luaj-jse:3.0.2' } // Example for how to get properties into the manifest for reading at runtime. tasks.named('jar', Jar).configure { manifest { attributes([ 'Specification-Title' : mod_id, 'Specification-Vendor' : mod_authors, 'Specification-Version' : '1', // We are version 1 of ourselves 'Implementation-Title' : project.name, 'Implementation-Version' : project.jar.archiveVersion, 'Implementation-Vendor' : mod_authors, 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), "TweakClass" : "org.spongepowered.asm.launch.MixinTweaker", "TweakOrder" : 0, "MixinConfigs" : "derp.mixin.json" ]) } rename 'mixin.refmap.json', 'derp.mixin-refmap.json' } shadowJar { archiveClassifier = '' configurations = [project.configurations.shade] finalizedBy 'reobfShadowJar' } assemble.dependsOn shadowJar reobf { re shadowJar {} } publishing { publications { mavenJava(MavenPublication) { artifact jar } } repositories { maven { url "file://${project.projectDir}/mcmodsrepo" } } } my entire project:https://github.com/kevin051606/DERP-Mod/tree/Derp-1.0-1.20
    • All versions of Minecraft Forge suddenly black screen even without mods (tried reinstalling original Minecraft, Java, updating drivers doesn't work)
  • Topics

×
×
  • Create New...

Important Information

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