Jump to content
  • Home
  • Files
  • Docs
  • Merch
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

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

2234 topics in this forum

  • Sort By
    • Recently Updated
    • Title
    • Start Date
    • Most Viewed
    • Most Replies
    • Custom
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next
  • Page 1 of 90  
Microsoft buys Mojang/Minecraft ... FAQ for Forge Team/LexManos
By Aridhol, September 15, 2014
1 2
38
138196
Aridhol
July 19, 2018
1.4.7 Forge.....
By elenaeliz, March 26, 2016
7
1943
elenaeliz
March 26, 2016
is minecraftforge copyrighted
By REVIEWGAMINGMAN, November 11, 2013
1
1681
diesieben07
November 11, 2013
What is currently the best location for up-to-date mod listings?
By TheRedMezek, April 22, 2016
5
2615
diesieben07
July 22, 2016
----------------
By chimera27, December 7, 2014
5
3315
chimera27
December 7, 2014
.getEntityData() & death
By dries007, August 5, 2012
6
4641
dries007
August 10, 2012
.zip mods
By benj261320, August 29, 2018
3
598
DaemonUmbra
August 29, 2018
(1.5.1-7.7.0.600) Mobs sometime invisible client-side?
By Kinniken, February 3, 2013
8
3668
SanAndreasP
April 4, 2013
(1.7.10) Spawn Modded Items or blocks with command Blocks
By Bashula, August 2, 2015
3
4724
diesieben07
August 2, 2015
[ Launcher ] Trying to create a launcher / Forge Mods not loading
By OverSpeed301, May 20, 2013
4
2040
LexManos
May 21, 2013
[0.1u]MineClipse : An IDE for Modders
By Vinz243, August 13, 2013
0
1973
Vinz243
August 13, 2013
[1.10.2] Custom loading screen?
By ErdbeerbaerLP, March 18, 2018
3
7068
#ÖCT
April 30, 2018
[1.11.2] Can you guys please update Forge to 1.11.2 and stop disguising it as 1.10.2, Thanks.
By Christolaki, February 11, 2017
5
1842
Draco18s
February 11, 2017
[1.11.2] Get the entity that another entity is looking at Server side
By Daleth, May 30, 2017
1
937
Daleth
May 30, 2017
[1.12.2 and 1.13] Mod Compatibility
By PulseBeat_02, July 22, 2018
4
10136
DaemonUmbra
July 23, 2018
[1.13] How to setup workspace to contribute to Forge
By larsgerrits, January 27
4
1276
larsgerrits
January 27
[1.14.4 ]what's up with the var names like "p_76131_0_"?
By andGarrett, September 30
3
1740
Flurry
October 5
[1.14] Fluid System Rewrite?
By FullAuto, August 16
5
2356
FullAuto
August 29
[1.3] Villager Trading
By Shadowclaimer, July 31, 2012
6
5538
atrain99
August 3, 2012
[1.4.2] Help trying to make the "Water Bottle" item enchantable.
By Tinker, October 28, 2012
0
1655
Tinker
October 28, 2012
[1.4.2] Help trying to render a custom entity. [Solved]
By Tinker, October 27, 2012
6
7945
AlexDGr8r
November 13, 2012
[1.4.2]Creating Dimension Need Help.
By McMissmag, October 28, 2012
4
1951
jammas615
December 13, 2012
[1.4.6]Redundant Mod Ores - Help!
By plnbchaostheory, January 14, 2013
2
2900
plnbchaostheory
January 17, 2013
[1.6.4] Alpha Transparency Compatibility
By ItsTheRuski, October 5, 2013
0
1331
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
3538
kauan99
August 30, 2015
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next
  • Page 1 of 90  
Sign in to follow this  
Followers 2


  • Posts

    • Jaffaaaaa
      ScreenGui does nothing

      By Jaffaaaaa · Posted 7 minutes ago

      bump. anyone help?
    • JMAS
      net.minecraftforge.oredict.OreDictionary missing from 1.14.4 MDK

      By JMAS · Posted 10 minutes ago

      Regarding the Oredict question above: NonNullList<ItemStack> seed = OreDictionary.getOres("seed");
    • Carbonx_09
      Minearchy | 1.14.4 Towny | Releasing Mid December | Balanced player economies | Join discord: discord.gg/vUEAanV

      By Carbonx_09 · Posted 22 minutes ago

      Hey guys, you should definitely join our discord server! We're going to be releasing in one week! https://discord.gg/vUEAanV
    • solitone
      Distinguish singleplayer vs. multiplayer

      By solitone · Posted 41 minutes ago

      @Override public ActionResult<ItemStack> onItemRightClick(ItemStack stack, World world, EntityPlayer player, EnumHand hand) { // [...] String separator = getSeparator(); String scriptName = nbtTagCompound.getString("scriptName"); String scriptPath = "pythontool" + separator + scriptName; proxy.runPython(world, player, scriptPath); // [...] }   ^^^ This is how I refactored onItemRightClick(). The runPython() method does nothing on the dedicated server, while on the client:   public class ClientOnlyProxy extends CommonProxy { // [...] @Override public void runPython(World world, EntityPlayer player, String scriptPath) { super.runPython(world, player, scriptPath); if (world.isRemote) { // client side if (!Minecraft.getMinecraft().isSingleplayer()) { // client talks to dedicated server (multiplayer game) ClientCommandHandler.instance.executeCommand(player, "/lpython " + scriptPath); } } else { // server side if (player.isSneaking()) { // shift pressed. Run new parallel script Minecraft.getMinecraft().thePlayer.getServer().getCommandManager().executeCommand(player, "/apy " + scriptPath); } else { // shift not pressed. Cancel previous scripts and run new script world.getMinecraftServer().getCommandManager().executeCommand(player, "/python " + scriptPath); } } } }   I still need to figure out why they used two different approaches to execute commands on the integrated server--Minecraft.getMinecraft().thePlayer.getServer().getCommandManager().executeCommand() vs. world.getMinecraftServer().getCommandManager().executeCommand().   public abstract class CommonProxy { // [...] public void runPython(World world, EntityPlayer player, String scriptPath) {} }   public class PythonTool { // [...] @SidedProxy(clientSide="pythontool.ClientOnlyProxy", serverSide="pythontool.DedicatedServerProxy") public static CommonProxy proxy; // [...] }   Are still there significant mistakes? Thanks again!
    • salvestrom
      [1.14.4] How to get Minecraft Horse model/texture to make a custom unicorn?

      By salvestrom · Posted 44 minutes ago

      Please show your render class. And please use the <> function in the reply box to copy and paste your class. Don't just use screenshots.
  • Topics

    • Jaffaaaaa
      1
      ScreenGui does nothing

      By Jaffaaaaa
      Started Yesterday at 07:03 PM

    • JMAS
      5
      net.minecraftforge.oredict.OreDictionary missing from 1.14.4 MDK

      By JMAS
      Started 4 hours ago

    • Carbonx_09
      1
      Minearchy | 1.14.4 Towny | Releasing Mid December | Balanced player economies | Join discord: discord.gg/vUEAanV

      By Carbonx_09
      Started Yesterday at 08:30 PM

    • solitone
      18
      Distinguish singleplayer vs. multiplayer

      By solitone
      Started December 5

    • DragonITA
      34
      [1.14.4] How to get Minecraft Horse model/texture to make a custom unicorn?

      By DragonITA
      Started Monday at 10:06 AM

  • Who's Online (See full list)

    • JMAS
    • Jaffaaaaa
    • dylandmrl
    • deerangle
    • loordgek
    • Pyre540
    • bluemetalsword
    • Carbonx_09
  • All Activity
  • Home
  • Minecraft Forge
  • General Discussion
  • Theme
  • Contact Us
  • Discord

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