Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • m00nl1ght

m00nl1ght

Members
 View Profile  See their activity
  • Content Count

    22
  • Joined

    December 19, 2017
  • Last visited

    September 27, 2019

Community Reputation

2 Neutral

About m00nl1ght

  • Rank
    Tree Puncher

Converted

  • Gender
    Male
  • Location
    Germany

Recent Profile Visitors

1210 profile views
  • PhilipChonacky

    PhilipChonacky

    July 4, 2019

  • DarkCakeKing_cz

    DarkCakeKing_cz

    December 25, 2018

  • _Cruelar_

    _Cruelar_

    July 25, 2018

  1. m00nl1ght

    [1.14.2] How to check for filler block in the End

    m00nl1ght replied to kwpugh's topic in Modder Support

    In your OreGeneration class, add a field that holds your own feature instance private static final YourOreFeature END_OREGEN = new YourOreFeature(); And then use that instead of Feature.ORE like this: Biomes.THE_END.addFeature(GenerationStage.Decoration.UNDERGROUND_DECORATION, Biome.createDecoratedFeature(END_OREGEN, new OreFeatureConfig( ...
    • July 6, 2019
    • 11 replies
  2. m00nl1ght

    [1.14.2] How to check for filler block in the End

    m00nl1ght replied to kwpugh's topic in Modder Support

    p_207803_1_ is worldIn now, so if (worldIn.getBlockState(blockpos$mutableblockpos).getBlock() == Blocks.END_STONE) should work
    • July 6, 2019
    • 11 replies
  3. m00nl1ght

    [1.14.2] How to check for filler block in the End

    m00nl1ght replied to kwpugh's topic in Modder Support

    Instead of Feature.ORE pass in an instance of your own ore feature class.
    • July 5, 2019
    • 11 replies
  4. m00nl1ght

    [1.14.2] MC Source Obfuscation

    m00nl1ght replied to PhilipChonacky's topic in Modder Support

    I have never used NetBeans before, so no idea how source attachments work there. However, there should be some way to specify the location of the sources. The file is called something like forge-1.14.2-26.0.13_mapped_snapshot_20190609-1.14.2-sources.jar Anyway, I recommend using an IDE with gradle integration (for example IntelliJ), because it can automatically attach the sources.
    • July 4, 2019
    • 15 replies
  5. m00nl1ght

    [1.14.2] How to check for filler block in the End

    m00nl1ght replied to kwpugh's topic in Modder Support

    Unfortunately, because FillerBlockType is an Enum, the only way to do this at the moment (or at least the only one I know) is to create your own class extending OreFeature Then override func_207803_a copy it and in there, replace if (p_207803_3_.target.func_214738_b().test(p_207803_1_.getBlockState(blockpos$mutableblockpos))) { ... with something that checks for end stone, or whatever your ore should spawn in, like this: if (p_207803_1_.getBlockState(blockpos$mutableblockpos).getBlock() == Blocks.END_STONE) { ...
    • July 4, 2019
    • 11 replies
  6. m00nl1ght

    [1.14.2] MC Source Obfuscation

    m00nl1ght replied to PhilipChonacky's topic in Modder Support

    1. Normally you should never need to open a .class file, only .java files. 2. How did you setup your workspace, what IDE are you using?
    • July 4, 2019
    • 15 replies
  7. m00nl1ght

    [1.14.2] MC Source Obfuscation

    m00nl1ght replied to PhilipChonacky's topic in Modder Support

    What do you mean by "compiled" code? The java bytecode? Why?
    • July 4, 2019
    • 15 replies
  8. m00nl1ght

    [1.14.2] MC Source Obfuscation

    m00nl1ght replied to PhilipChonacky's topic in Modder Support

    Update to 1.14.3 and use the latest mcp snapshot to get up to date mappings. Also, it takes time until all the fields and methods get named, 1.14 is relatively new. Edit: And yes, Forge still uses MCP internally to provide names in development environment.
    • July 4, 2019
    • 15 replies
  9. m00nl1ght m00nl1ght changed their profile photo April 20, 2019
  10. m00nl1ght

    Change forge library path

    m00nl1ght replied to Tzurio's topic in Modder Support

    Just add -g /.gradle to your gradle command, for example gradlew setupDecompWorkspace -g /.gradle
    • January 4, 2019
    • 1 reply
  11. m00nl1ght

    An internal error occurred during: "Launching Client". null argument:

    m00nl1ght replied to hetsunami's topic in Modder Support

    After running gradlew setupDecompWorkspace you need to run gradlew eclipse to prepare the eclipse project.
    • December 9, 2018
    • 10 replies
  12. m00nl1ght

    [1.12.2] Tileentity unable to be created

    m00nl1ght replied to Merthew's topic in Modder Support

    You need an empty constructor in your TileEntity class. You currently only have public TileEntityNetIn(int maxTransfer) { this.maxTrans = maxTransfer; } just add public TileEntityNetIn() { }
    • December 2, 2018
    • 5 replies
  13. m00nl1ght

    [1.9.4] Creating Advanced GUI with ListBox

    m00nl1ght replied to SKProCH's topic in Modder Support

    I created a simple GuiList for my mod some time ago, it is based on the vanilla Gui classes. Maybe it helps. github
    • November 30, 2018
    • 3 replies
      • 1
      • Like
  14. m00nl1ght

    Get's nickname of a player

    m00nl1ght replied to sayonara2312's topic in Modder Support

    1. What do you mean by "using the command"? Are you trying to create a command? 2. What do you mean by "a player who hits with his hand"? A player who is interacting with something? Please explain what you are trying to archieve.
    • November 4, 2018
    • 2 replies
  15. m00nl1ght

    Is there a way to verify client-side mods from server-side by using JAR signing?

    m00nl1ght replied to Alsan Ali's topic in Modder Support

    https://mcforge.readthedocs.io/en/latest/concepts/jarsigning/
    • July 28, 2018
    • 1 reply
  16. m00nl1ght

    Event That Fired When the Player Pickups An Arrow From Ground?

    m00nl1ght replied to JanneSoon's topic in Modder Support

    You could create a pull request on Forge's github if you really need this hook/event. Here you can find information about pull requests.
    • July 25, 2018
    • 8 replies
  • All Activity
  • Home
  • m00nl1ght
  • Theme

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