Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • General Discussion Latest Topics
  • All Activity
  • Home
  • Minecraft Forge
  • General Discussion
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)

General Discussion

Feel free to talk about anything and everything related to Minecraft Forge in this board.
Sign in to follow this  
Followers 2
  • Start new topic

2495 topics in this forum

  • Sort By
    • Recently Updated
    • Title
    • Start Date
    • Most Viewed
    • Most Replies
    • Custom
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • Next
  • Page 2 of 100  
[1.3] Villager Trading
By Shadowclaimer, July 31, 2012
6
5867
atrain99
August 3, 2012
[1.4.2] Help trying to make the "Water Bottle" item enchantable.
By Tinker, October 28, 2012
0
1836
Tinker
October 28, 2012
[1.4.2] Help trying to render a custom entity. [Solved]
By Tinker, October 27, 2012
6
8164
AlexDGr8r
November 13, 2012
[1.4.2]Creating Dimension Need Help.
By McMissmag, October 28, 2012
4
2229
jammas615
December 13, 2012
[1.4.6]Redundant Mod Ores - Help!
By plnbchaostheory, January 14, 2013
2
3188
plnbchaostheory
January 17, 2013
[1.6.4] Alpha Transparency Compatibility
By ItsTheRuski, October 5, 2013
0
1605
ItsTheRuski
October 5, 2013
[1.7.10] can I download the server jar (not installer) of Forge 10.13.4.14?
By kauan99, August 29, 2015
2
3852
kauan99
August 30, 2015
[1.7.10] Help needed with modding and debugging
By Ratchet Hundreda, August 22, 2015
3
5055
UberAffe
August 26, 2015
[1.7.10] Running into error with IC2 and PowerConverters installed
By Farrendil, July 13, 2015
1
1889
diesieben07
July 13, 2015
[1.7.2]Synchronise float arrays between client and server
By DuskFall, February 27, 2014
3
1608
Draco18s
February 27, 2014
[1.8] Next recommended release?
By jeffryfisher, October 16, 2015
4
3174
jeffryfisher
October 18, 2015
[1.8] Where should I look for texturers to work with?
By Ernio, February 23, 2015
0
1080
Ernio
February 23, 2015
[1.9+] - Powershell Item and Block Json Generator from Texture Path
By MoreThanHidden, January 3, 2017
0
1355
MoreThanHidden
January 3, 2017
[CLOSED...REALLY] Probelm with chunck generation with forge for minecraft 1.7.10
By modder99, July 13, 2014
14
28833
LexManos
July 27, 2014
[Coding] My custom stairs can not be placed in SMP
By BlackCrafer666, October 12, 2012
2
1980
marcotesoalli
October 16, 2012
[CODING] Slabs and Stairs have failing brightness
By Lordmau5, September 28, 2012
2
1723
Lordmau5
September 28, 2012
[CODING] Stairs? - How?
By Lordmau5, September 28, 2012
7
3261
OvermindDL1
September 30, 2012
[Coding] Using HD textures in Forge
By BlackCrafer666, October 14, 2012
3
2540
Cloudy
November 21, 2012
[Craftbukkit and forge].
By burger_dtm, October 31, 2012
4
4010
LexManos
November 4, 2012
[CREATING MODS] HELFULL'S TUTORIALS [1.2.5][FORGE]
By Helfull, July 1, 2012
17
12421
TheIsl4nder
July 31, 2012
[Edited] Only download mods for their original source.
By darrenshan1979, February 19, 2018
4
1683
LexManos
February 19, 2018
[Error] Can you help me please on Ore Gen?
By jaojake1804, June 23, 2012
7
2811
OvermindDL1
June 25, 2012
[fixed] Mod help
By KeironSegger, February 18, 2013
2
1451
KeironSegger
February 21, 2013
[Fixed] Starting a forge server without a gui
By Teambeurnaut, May 11, 2019
2
5320
Teambeurnaut
May 11, 2019
[Fixed]Is it possible to change the icon of the mojang status checker using a ressource pack?
By nixuge, September 4, 2019
2
1602
nixuge
September 5, 2019
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • Next
  • Page 2 of 100  
Sign in to follow this  
Followers 2


  • Posts

    • Iron1601
      Right Way To Add Arbitrary Data To PlayerEntities

      By Iron1601 · Posted 27 minutes ago

      Thank you very much.
    • NullDev
      [Solved] Custom Slime Block not working with Pistons

      By NullDev · Posted 30 minutes ago

      Turns out it was a problem with IntelliJ. Not sure what, but I restarted it and everything is working fine now.
    • diesieben07
      Right Way To Add Arbitrary Data To PlayerEntities

      By diesieben07 · Posted 31 minutes ago

      Because they are originally intended to support "this object can do X"-scenarios. For example: "this tile entity has an inventory" (or in capability-speak: "this tile entity has the inventory capability"). For example, to get an object's inventory capability you call thing.getCapability(ITEM_HANDLER_CAPABILITY, null). This gives you a LazyOptional, which will either be present (thing has an inventory) or not (thing doesn't have an inventory). The facing can be used to convey additional info. For blocks it means the actual facing (a furnace exposes a different inventory on the top than on the bottom), for other things it could mean all kinds of things (entities use sides to give access to separate inventories for just armor or just the held item).   Additionally, you can also use AttachCapabilitiesEvent to attach capabilities to "foreign objects". What you attach here is not really a capability, but a capability provider ("something that can have capabilities") - the capabilities given by this provider will also be exposed by the "foreign object". This provider is special, in that it can also save data, which will be attached to the "foreign object". This whole mechanism allows you to: Write your own capability which stores the data you need. Write your own provider which manages serialization of that data and exposes the capability. Attach that provider to all players using AttachCapabilitiesEvent - players will now store your data.
    • cadbane86140
      Minecraft: Harry Potter Episode #2- Getting Sorted into our Houses!

      By cadbane86140 · Posted 31 minutes ago

      Hello There! Today is the day we get sorted into our Hogwarts Houses! But it is very different than it is in the movies, we actually have to answer a series of questions and then we will be put into the houses. But during our questions of course we have to meme during it which just makes up for some hilarious moments! I hope you all enjoy this video and if you did don't forget to like and sub for more!  
    • diesieben07
      [Solved] Custom Slime Block not working with Pistons

      By diesieben07 · Posted 41 minutes ago

      Cannot reproduce:
  • Topics

    • Iron1601
      4
      Right Way To Add Arbitrary Data To PlayerEntities

      By Iron1601
      Started 1 hour ago

    • NullDev
      8
      [Solved] Custom Slime Block not working with Pistons

      By NullDev
      Started 18 hours ago

    • cadbane86140
      0
      Minecraft: Harry Potter Episode #2- Getting Sorted into our Houses!

      By cadbane86140
      Started 32 minutes ago

    • KBomb
      23
      Mods aren't loading on Forge 1.16.5 server

      By KBomb
      Started Yesterday at 07:32 PM

    • Jeldrik
      8
      Starting GUI on key Input

      By Jeldrik
      Started 19 hours ago

  • Who's Online (See full list)

    • KensIDi
    • NullDev
    • DaxMinecraft
    • Skyriis
    • rjakobs
    • pokmon987
    • ColumnDragon
    • rinlix2
    • spynery
    • lupicus
    • sonofgaming
    • Xrated_junior
  • All Activity
  • Home
  • Minecraft Forge
  • General Discussion
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community