Jump to content

Recommended Posts

Posted

I have tried to edit the thaumic tinkerer mod to disable creation of bedrock portals in the bedrock dimension due to constant server crash but I have little knowledge of java and forge and I'm having problems recompiling it, heres the edited source folder: http://www90.zippyshare.com/v/YcncUgLD/file.html

After running the gradle build it did stuff for 9 minutes then said build failed, on the console it was saying a lot about missing api's, It would be great if someone could help me by compiling it for me or telling me how I can  fix the problem. Thanks :)

Posted

I have tried to edit the thaumic tinkerer mod to disable creation of bedrock portals in the bedrock dimension due to constant server crash but I have little knowledge of java and forge and I'm having problems recompiling it, heres the edited source folder: http://www90.zippyshare.com/v/YcncUgLD/file.html

After running the gradle build it did stuff for 9 minutes then said build failed, on the console it was saying a lot about missing api's, It would be great if someone could help me by compiling it for me or telling me how I can  fix the problem. Thanks :)

Posted

You need to acquire said APIs (they're listed in the gradle file under dependencies) and put them in the /libs folder (or where ever gradle is trying to find them).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

You need to acquire said APIs (they're listed in the gradle file under dependencies) and put them in the /libs folder (or where ever gradle is trying to find them).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

im not able to find the last one: tconstruct:TConstruct:1.7.10-1.8.3.build927:deobf

however i have found the 1.8.4 version of it, would that also work or not?

Posted

im not able to find the last one: tconstruct:TConstruct:1.7.10-1.8.3.build927:deobf

however i have found the 1.8.4 version of it, would that also work or not?

Posted

No, it would not work.

You will need to contact the author, it looks like.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

No, it would not work.

You will need to contact the author, it looks like.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Where would be the easiest way to contact him? Also by the 1.8.4 version i meant is as in tconstruct:TConstruct:1.7.10-1.8.4.build957:deobf instead of tconstruct:TConstruct:1.7.10-1.8.3.build927:deobf

Posted

Where would be the easiest way to contact him? Also by the 1.8.4 version i meant is as in tconstruct:TConstruct:1.7.10-1.8.4.build957:deobf instead of tconstruct:TConstruct:1.7.10-1.8.3.build927:deobf

Posted

would it be possible to only edit the 1 file,  compile that single file and then place it into the jar mod using winrar?

 

No.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

would it be possible to only edit the 1 file,  compile that single file and then place it into the jar mod using winrar?

 

No.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

so i contacted the mod author and it seems that it needs thaumcraft as a loaded library, i have managed to get a Deobfuscated version of Thaumcraft but I do not know what is meant by making it a loaded library. How do i do that? Thanks

Posted

so i contacted the mod author and it seems that it needs thaumcraft as a loaded library, i have managed to get a Deobfuscated version of Thaumcraft but I do not know what is meant by making it a loaded library. How do i do that? Thanks

Posted

For compiling with gradle, just look at the gradle build file and put the jar where the build.gradle file says.

 

For example, mine says:

 

compile files('lib/AppleCore-mc1.7.10-1.1.0.jar')

 

That means that in the folder 'lib' adjecent to build.gradle, have a file called 'AppleCore-mc1.7.10-1.1.0.jar'

 

So put the deobf file you got into lib directory.  (If the names don't match exactly, change the build.gradle file).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

For compiling with gradle, just look at the gradle build file and put the jar where the build.gradle file says.

 

For example, mine says:

 

compile files('lib/AppleCore-mc1.7.10-1.1.0.jar')

 

That means that in the folder 'lib' adjecent to build.gradle, have a file called 'AppleCore-mc1.7.10-1.1.0.jar'

 

So put the deobf file you got into lib directory.  (If the names don't match exactly, change the build.gradle file).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

I solved all of that api errors but now im getting these: http://imgur.com/a/Tjjyr

 

You started a new thread for this. Don't do that.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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



×
×
  • Create New...

Important Information

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