Jump to content

Ruthless_bug13

Members
  • Posts

    19
  • Joined

  • Last visited

Everything posted by Ruthless_bug13

  1. Why not post this in your other post? Anyways, are you doing it this way: https://files.minecraftforge.net/ > Pick a version and download it > Open it, hit install (Make sure Minecraft is closed. You probably already did this just making sure) Open launcher > Click the little arrow pointing up, it's right next to the "Play" button > Scroll to the bottom and select the forge version you downloaded. Also you usually don't need to make a new profile for forge versions, forge makes them for you.
  2. Sorry this is late. It isn't what I did that fixed it, it was what I made actually. This problem started happening on my other computers (Friends too) Then I wrote this, and it solved it. I made a batch file that ran the following lines: TASKKILL /f /im javaw.exe SETX _JAVA_OPTIONS "" /m SETX _JAVA_OPTIONS "" PAUSE EXIT This has worked for me many times (Note that this is for Windows only).
  3. Never mind I have found a way to fix this problem. Thank you to all that helped!
  4. I have already tried that one. Tried it again, but still no avail.
  5. I do have 64-bit Java installed. "java version "1.8.0_161" Java(TM) SE Runtime Environment (build 1.8.0_161-b12) Java HotSpot(TM) 64-Bit Server VM (build 25.161-b12, mixed mode)"
  6. (If this problem has been solved on another thread, link me to it! I just couldn't find anything like this problem) So, after upgrading to a new PC I have been experiencing this problem, "Execution failed for task ':decompileMc'. > Process 'command 'C:\Program Files\Java\jdk1.8.0_161\bin\java.exe'' finished with non-zero exit value 1" Here's the stacktrace: https://gist.github.com/anonymous/4d7699d93562850bdebd8cb7dec47842 Additionally I get this: https://gist.github.com/anonymous/87a0e4085e13d2be7ab63a72767bdcc2 Thanks for any help in advance!
  7. So, I am working on a mod and I wanted to add a fluid system, kinda like Thermal Dynamics or BuildCraft. I would like to be able to have dynamic updating for the pipes, this is not needed at this moment though (I could probably find this out myself anyways, but any ideas for this is still appreciated.). And ideas of how I would do this? Any pointers or suggestion are greatly appreciated. Thank you in advance. Ruthless
  8. So, I was working on some ItemStack stuff and I found out that .stackSize is private now? Did they replace it with something? Thanks in advance -Ruthless
  9. I am still having trouble putting this method into action. How would I attempt to do this? Thanks for any help.
  10. Hmm, I'll look into this. Thanks. Also, anymore input is still greatly appreciated.
  11. Is it possible to loop through every registered entity and create, say an item for example "DNA (Pig)", "DNA (Cow)", etc. If it is this would be very, very helpful. Thanks for any help in advance. -Ruthless P.S. I don't want any code I just want to know if it does exist and what to look for
  12. Huh, last I was on Linux it wasn't like this for me, thank you for telling me this. Last time I checked they didn't, must have over looked Didn't even see that I must be stupid Didn't mean to spread any mis-information was just trying to help, sorry for any confusion.
  13. Optifine is not exactly a mod, and cant really be "downloaded" on a linux without going through some other steps, But there are some tutorials on YouTube that show you how you can. For singleplayer World-Edit you need something like LiteLoader or the Forge version of it. LiteLoader: http://www.liteloader.com/ (WARNING: LiteLoader is for older versions of Minecraft, and sense I don't know what Version of Mineraft you are using I cant really help with that) World-Edit https://minecraft.curseforge.com/projects/worldedit You could also just find some tutorials about installing Plug-ins for singleplayer
  14. Thanks! this really helped. I'm very new the 1.10 coding I'm more used to 1.7.10 Also when you say that do you mean that EnumFacing.getFront(direction.getOpposite().ordinal()) Would do the same thing?
  15. Can I do EnumFacing.getOpposite, or does it have to be a variable that is a EnumFacing? I am trying to make something like this EnumFacing invertedSide = ForgeDirection.VALID_DIRECTION[ForgeDirection.OPPOSITE[direction.ordinal]]; but for 1.10 Actually I believe I fixed it and created something that works! Here's the code if someone is looking for the same thing EnumFacing invertedSide = EnumFacing.VALUES[direction.getOpposite().ordinal()];
  16. So, in 1.7.10 before you could do ForgeDirection.OPPOSITES But now you cant, is there an equivalent to this? I also found that you cant do ForgeDirection.VALID_DIRECTIONS Was this removed? Thanks for any help in advance. -Ruthless P.S. I have looked in the docs but I couldn't find anything about this. Sorry if I just being stupid and didn't see it.
×
×
  • Create New...

Important Information

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