Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Draco18s

Members
  • Joined

  • Last visited

Everything posted by Draco18s

  1. Ok, look, a task already exists in the build file. I don't give a shit what it's named. Add from incrementBuildNumber to it.
  2. Ok, look, a task already exists in the build file. I don't give a shit what it's named. Add from incrementBuildNumber to it.
  3. Locate the mod, PM the mod author.
  4. Locate the mod, PM the mod author.
  5. The closest you can get is 3 consecutive rotations: "+x, +y, -x" (all rotations 90 degrees). The problem is I don't think the json supports two rotations on the same axis. This is, of course, assuming that all 6 sides are uniquely textured (e.g. a die) and that +z is uniquely different than all sequences of a single rotation on x, y, or both.
  6. The closest you can get is 3 consecutive rotations: "+x, +y, -x" (all rotations 90 degrees). The problem is I don't think the json supports two rotations on the same axis. This is, of course, assuming that all 6 sides are uniquely textured (e.g. a die) and that +z is uniquely different than all sequences of a single rotation on x, y, or both.
  7. You don't have EnderIO's API/source/whatever available for the compiler.
  8. You don't have EnderIO's API/source/whatever available for the compiler.
  9. Or more generally: "Golly gee willackers, what happens if there are no players near it?"
  10. Or more generally: "Golly gee willackers, what happens if there are no players near it?"
  11. nameOfJarTask isn't supposed to be literal. Jesus, whatever was inside releaseJars already was supposed to stay there. "nameOfJarTask" was literally a "foo bar baz."
  12. nameOfJarTask isn't supposed to be literal. Jesus, whatever was inside releaseJars already was supposed to stay there. "nameOfJarTask" was literally a "foo bar baz."
  13. super() only handles the basic TE info. You need to call myStacks.writeToNBT() Or the capability.writeToNTB() I haven't poked 1.9 yet.
  14. super() only handles the basic TE info. You need to call myStacks.writeToNBT() Or the capability.writeToNTB() I haven't poked 1.9 yet.
  15. You never call registerRenderInfo
  16. You never call registerRenderInfo
  17. Your code: WRONG Correct code: @Instance(Strings.MODID) public static MainRegistry instance; //FORGE DOES IT FOR YOU As for the TE registration, what you have is (essentially) correct.
  18. Your code: WRONG Correct code: @Instance(Strings.MODID) public static MainRegistry instance; //FORGE DOES IT FOR YOU As for the TE registration, what you have is (essentially) correct.
  19. Option 2 is take this: #2: task releaseJars(type: Copy) { from nameOfJarTask //this already exists, do not touch } make it this: #2: task releaseJars(type: Copy) { from incrementBuildNumber from nameOfJarTask }
  20. Option 2 is take this: #2: task releaseJars(type: Copy) { from nameOfJarTask //this already exists, do not touch } make it this: #2: task releaseJars(type: Copy) { from incrementBuildNumber from nameOfJarTask }
  21. 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).
  22. 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).
  23. I believe Choonster means make it a field. public class TE extends TileEntity { ItemStackHandler myStacks; } I could be wrong though, but that's how I read it.

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.