Jump to content

NikolaTheProgrammerNoob

Forge Modder
  • Posts

    47
  • Joined

  • Last visited

Everything posted by NikolaTheProgrammerNoob

  1. lol u guys can ban me I don't care. Seems to my that half of the people here don't know java... I didn't knew it aswell and I am not a "pro" at it, but the shit some of you are replying is so stupid that it makes my head literally hurt... Why da fuck would you need code from a class that has no relation to my problem. I ask for help and get shit like: "Go write your own code", "learn Java", "Why did you type this in your code ? You don't need that". Why can't I get a simple answear like: "You messed it up there and there, you should type this and this"? Why is this called Modder Support anyways? It should be called Noob Modder Trolling...
  2. Lock it and I will report you. The stupid GUI is loading, the problem is that the ingredients are not disapearing ! How can that be in the god damn GuiHandler class ?! It's obviously in the Container Class...
  3. Umm... I don't know what your deal is, but the damn file that isn't working is in the post...
  4. @larsegerrits I can't find the source code for that version @diesieben07 bro u trying to get your a** kicked?
  5. wow, over 7000 f-ing views and noone can solve this. Hear is a nice idea, read the comments before posting. The problem is in the f-ing container class, not in the crafting manager... The Minecraft code copying is because it wouldn't f-ing work, I was desperate...
  6. Umm... here buildscript { repositories { mavenCentral() maven { name = "forge" url = "http://files.minecraftforge.net/maven" } maven { name = "sonatype" url = "https://oss.sonatype.org/content/repositories/snapshots/" } } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT' } } apply plugin: 'forge' version = "1.0" group= "com.nikola.carbonmod" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "carbonmod" minecraft { version = "1.8-11.14.3.1502" runDir = "eclipse" // the mappings can be changed at any time, and must be in the following format. // snapshot_YYYYMMDD snapshot are built nightly. // stable_# stables are built at the discretion of the MCP team. // Use non-default mappings at your own risk. they may not allways work. // simply re-run your setup task after changing the mappings to update your workspace. mappings = "snapshot_20141130" } dependencies { // you may put jars on which you depend on in ./libs // or you may define them like so.. //compile "some.group:artifact:version:classifier" //compile "some.group:artifact:version" // real examples //compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env //compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env // for more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html } processResources { // this will ensure that this task is redone when the versions change. inputs.property "version", project.version inputs.property "mcversion", project.minecraft.version // replace stuff in mcmod.info, nothing else from(sourceSets.main.resources.srcDirs) { include 'mcmod.info' // replace version and mcversion expand 'version':project.version, 'mcversion':project.minecraft.version } // copy everything else, thats not the mcmod.info from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' } }
  7. Typed than in and it didn't work and It said to try writing: "gradlew help --task :eclipse" and it said that it Generated all Eclipse files but when I refreshed the Workspace everything was the same
  8. Created a .bat file Setup Workspace and in it typed: "gradlew setupDecompWorkspace" and then created a .bat file Setup Eclipse and in it typed: "gradlew eclipse". Then just ran them (not at the same tyme ofc)
  9. Hello, fellow forum addicts! I've been making a mod and I had a lot of problems which I spent a lot of time to fix. Now for some reason there are no Minecraft files in the workspace and because of that I can't launch the mod to test it. Anyone know how to fix this? I tryed reseting the wsorkspace and creating a new one but it didn't work !
  10. I use Eclipse and the GUI opens but the ingredients stay in the crafting slots. Thats my only problem now
  11. Ok, here are the scripts: The Crafting Manager Class: https://gist.github.com/NikolaTheProgrammingNoob/20bcf687b3a49f31a824 The Block GUI Class https://gist.github.com/NikolaTheProgrammingNoob/415be4fd331c26f391d0 The Block Class https://gist.github.com/NikolaTheProgrammingNoob/cb74bb80f813a4a3686c The Block Container Class https://gist.github.com/NikolaTheProgrammingNoob/82647c51dfdda8108494 Tell me if you need any more classes.
  12. Ok... so this post is a bit buggy for me... Just saw the replays now. Still accepting help. Still haven't fixed it, after 2 weeks. Please help before I get cancer lol I'll try to post on github
  13. Ok, ty for that Just to note, I fixed the problem in which I get a red 0 for my ingredients, but now when I craft something my ingredients don't disappear
  14. I actually know the basics of Java and the guy that made the tutorial was using 1.7.2 so I had to improvise And I did ask him a few days ago but no response
  15. Begging for help does not give a good view of you, considering that you could have looked the answer yourself from Google. But whatever. Care to show us your container class? The Container Class is in the start of the post
  16. Yea, I don't crash unless I shift + right-click the crafted item. Then it just popsout thousands of same errors that they say is in the Minecraft Container class.
  17. Okay, but what about the items returning a stack value of 0. Oh yeah, the original stacks actually return to the player inventroy when the item is crafted
×
×
  • Create New...

Important Information

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