Jump to content

TheFirefly

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by TheFirefly

  1. Ok, so I gave it a few more tries and it turns out there was a freaking ' before my build gradle file, for whatever unlucky reason, I didn't copy it. I fixed that, added your suggestion and it now works (with minor issues that I know how to solve and have nothing to do with this)! Thanks for helping!
  2. Stupid me gave you the wrong link http://www.mediafire.com/download/d1sr8jf745q1vhv/dv-1.0.jar
  3. I've tried a kazillion sollutions, still no success, I guess I should go and add more stuff to the mod meanwhile, but stills, I could use some help > <
  4. Yes, with all textures and json files
  5. Sorry it took me this long to reply, had a busy couple of days. So... still not working, =(
  6. I'll try that right away, this might be the case actually =) (Ps. I want the creeper plushie)
  7. I'm not sure exactly of whats happening, all I know is that I built my mod's jar file and, for some reasons, it dosen't render any models or textures. What information should I provide to make it more helpful? Here's my build file: 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= "Ygniculus.AurorasBloom" archivesBaseName = "ab" sourceSets { main { java { srcDirs = ["C:/Users/Victor/Desktop/TheMod/AurorasBloom/src/main/java"] } resources { srcDirs = ["C:/Users/Victor/Desktop/TheMod/AurorasBloom/src/main/resources"] } } } minecraft { version = "1.8-11.14.3.1450" runDir = "eclipse" } 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' } } I'm using eclipse and running minecraft 1.8, if I can provide any information, I'd love to.
  8. Ok, Turned out there was a typo... Sorry about that, stills, build goes successful and I get no textures or models, like there were no json files whats'o'ever
  9. Tryed both solutions, the first suggestion, made no real difference, same error, /'s instead of .'s The second solutions makes the build successfull but I get no textures! =/
  10. Can you help? I found that on a tutorial, I have no idea what to do. REAAAALLY newbie on this coding thing.
  11. Hi, I'm really new to this modding thing, just spent the last 15 days coding and texturing my mod and now for some reason I'm not able to build it (Whenever I find a way to build it, it shows no textures or models) Here's my error and my build file, is there anything else I should post? Let me know, thanks! Error: C:\Users\Victor\Desktop\TheMod\AurorasBloom>gradlew build--debug FAILURE: Build failed with an exception. * Where: Build file 'C:\Users\Victor\Desktop\TheMod\AurorasBloom\build.gradle' line: 43 * What went wrong: A problem occurred evaluating root project 'AurorasBloom'. > Cannot convert URL 'C:Users.Victor.Desktop.TheMod.AurorasBloom.src.main.resour ces' to a file. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 6.173 secs Build File: 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= "Ygniculus.AurorasBloom" archivesBaseName = "ab" sourceSets { main { java { srcDirs = ["C:Users.Victor.Desktop.TheMod.AurorasBloom.src.main.resources] } resources { srcDirs = ["C:Users.Victor.Desktop.TheMod.AurorasBloom.src.main.resources"] } } } minecraft { version = "1.8-11.14.3.1450" runDir = "eclipse" } 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' } } I really wish I could get this to work, it was alot, ALOT of time spent =/ Thanks in advance, I've been searching the answer on the foruns for the past 4h and can't get it to work, sorry if I did anything wrong.
×
×
  • Create New...

Important Information

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