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.

GotoLink

Members
  • Joined

  • Last visited

Everything posted by GotoLink

  1. Old versions of Forge aren't compatible with Java 1.8. Choose a different version and try again.
  2. You can use World TickEvent and grow tall grass on random grass blocks.
  3. Obviously making a setter is pointless. You want to override a getter. Block#getCollisionBoundingBoxFromPool(World, int, int, int) and Block#getSelectedBoundingBoxFromPool(World, int, int, int) are probably what you'd like to use.
  4. It is always at 0 because you only set it at 0. Your BicycleJumpStrength attribute is also completely unused.
  5. The order in which you Container#addSlotToContainer is really important. You need to keep it in mind when writing #transferStackInSlot. In your current state, you are adding 36 slots from player inventory, then 1 "output slot", then 9 "input slots". But your tile entity has 17 item slots.
  6. You might be interested in ChunkDataEvent.Load.
  7. It can, actually. Just look at .minecraft/versions/<some version>/someversion.json , it has a "libraries" tab. You may want to build an "installer" like Forge to automate this. Fortunately, Forge installer is open-source, so you don't have to think too much about it.
  8. You already choose (1D, 1D, 1D) as (rgb) values.
  9. In case you haven't learned it yet, that is not how @Mod is used. Look at the basic tutorials on the wiki. As for events, i recommend PlayerPickupXpEvent.
  10. Coremod are for advanced patching of Minecraft. What you describe is not a coremod. You are just spliting into modules, which is doable with no more knowledge than any other mod. Just move the built jar from the main mod into the folders of each modules, so that gradle will be able to built them.
  11. I see no question. Here is one for you: where is that "energy" stored ?
  12. Make an access transformer configuration file. ForgeGradle will pick it when setting the workspace and apply changes. You could also consider reflection, which is less troublesome.
  13. You can initialize your values in FMLPostInit event, and from the BiomeGenBase array, guess the "temperature" values from BiomeDictionary tags.
  14. You didn't put super call in onUpdate(). Nor in writeToNBT(NBTTagCompound) and readFromNBT(NBTTagCompound).
  15. Could be library issue. Try running from command line: sfc /scannow
  16. Thaumcraft was not supposed to touch that method. It is internal to Forge.
  17. You can add 'FMLAT: "yourFile_at.cfg"' to your META-INF/Manifest then, put the transformer config in the same folder. This way you don't have to make a LoadingPlugin and a coremod.
  18. net.minecraft.event package is in no way related to Forge or FML. Those are classes used in ChatStyle to make "click able" text.

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.