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
  • AreUThreateningMe

AreUThreateningMe

Members
 View Profile  See their activity
  • Content Count

    17
  • Joined

    February 16, 2018
  • Last visited

    December 24, 2020

Community Reputation

1 Neutral

About AreUThreateningMe

  • Rank
    Tree Puncher

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. AreUThreateningMe

    [1.15.2] IBlockColor not changing blocks color.

    AreUThreateningMe replied to AreUThreateningMe's topic in Modder Support

    Yes. Sorry if its a dumb question, I'm new to modding but whats wrong with that, should it be in a client proxy? Edit: Got it working, https://github.com/kregerl/Potion-Cakes/tree/master/src/main/java/com/loucaskreger/potioncakes
    • August 6, 2020
    • 2 replies
  2. AreUThreateningMe

    [1.15.2] IBlockColor not changing blocks color.

    AreUThreateningMe posted a topic in Modder Support

    I've been trying to change the color of one of my items however when it is in the game, it is the normal texture. I think I might be registering the items wrong, but I'm not sure where to go from here. https://github.com/kregerl/Potion-Cakes/tree/1.15.2/src/main/java/com/loucaskreger/potioncakes
    • August 5, 2020
    • 2 replies
  3. AreUThreateningMe

    [1.15.2] Try to register custom item model

    AreUThreateningMe replied to Liahim's topic in Modder Support

    What do you mean the name is random? The unlocalized name shouldn't be random, how do you register your item?
    • July 28, 2020
    • 11 replies
  4. AreUThreateningMe

    [1.15.2] BlockState Texture Issue

    AreUThreateningMe replied to JadedJoker's topic in Modder Support

    You're missing a s in adesserts:blocks/chocolate_cake_block in your blockstate.json
    • July 28, 2020
    • 7 replies
  5. AreUThreateningMe

    [1.15.2] BlockState Texture Issue

    AreUThreateningMe replied to JadedJoker's topic in Modder Support

    Your class should extend CakeBlock instead of Block
    • July 28, 2020
    • 7 replies
  6. AreUThreateningMe

    [1.15.2] BlockState Texture Issue

    AreUThreateningMe replied to JadedJoker's topic in Modder Support

    Your error message seems to be telling otherwise, what does the json for chocolate_cake_block look like?
    • July 28, 2020
    • 7 replies
  7. AreUThreateningMe

    [1.15.2] BlockState Texture Issue

    AreUThreateningMe replied to JadedJoker's topic in Modder Support

    Do you have model jsons for each variant of the block? i.e chocolate_cake_block_1-6.json in asssets.modid.models.blocks
    • July 28, 2020
    • 7 replies
  8. AreUThreateningMe

    Minecraft Crashes When Launchin 1.15.2 Modpacks

    AreUThreateningMe replied to BiteSizedWhale's topic in Support & Bug Reports

    Post a crash report and/or the game logs.
    • July 26, 2020
    • 2 replies
  9. AreUThreateningMe

    Need help with Screen, Widget (CustomGUI) [1.16.1]

    AreUThreateningMe replied to Brandon_Stark__'s topic in Modder Support

    You might have a better shot looking at 1.15.2 vanilla sources since many of the 1.16 variables aren't named yet. This is what the render method for Screen looks like in 1.15.2: public void render(int p_render_1_, int p_render_2_, float p_render_3_) { for(int i = 0; i < this.buttons.size(); ++i) { this.buttons.get(i).render(p_render_1_, p_render_2_, p_render_3_); } } I also find it useful to check out the github of a mod that has already implemented something similar to what you want and base your code on theirs. Good Luck!
    • July 25, 2020
    • 6 replies
      • 1
      • Like
  10. AreUThreateningMe

    [1.15.2] Concrete and terracotta tooltype issue

    AreUThreateningMe replied to AreUThreateningMe's topic in Modder Support

    Face palm, I should check if its harvestable not the tooltypes..
    • July 24, 2020
    • 1 reply
  11. AreUThreateningMe

    [1.15.2] Concrete and terracotta tooltype issue

    AreUThreateningMe posted a topic in Modder Support

    I am trying to check whether or not a block can be mined by the tool the player is currently holding. This is working fine with certain blocks like stone, sand and planks, but the method I'm using below returns false for concrete and terracotta if (slot.getToolTypes().contains(state.getHarvestTool))) { } Unless I understand this wrong, the various concrete and terracotta blocks should also return true when the player is holding a pickaxe... right? is this a bug or am I just doing this wrong?
    • July 24, 2020
    • 1 reply
  12. AreUThreateningMe

    [1.15.2] Forge config builder with Lists

    AreUThreateningMe replied to AreUThreateningMe's topic in Modder Support

    After some looking around in the config files of a modpack I've been playing, I found that craftingtweaks had just what I was looking for. https://github.com/blay09/CraftingTweaks/blob/1.15.x/src/main/java/net/blay09/mods/craftingtweaks/CraftingTweaksConfig.java#L19-L32
    • July 23, 2020
    • 1 reply
  13. AreUThreateningMe started following [1.15.2] Forge config builder with Lists July 23, 2020
  14. AreUThreateningMe

    [1.15.2] Forge config builder with Lists

    AreUThreateningMe posted a topic in Modder Support

    Hello, I am working on the configuration file for my mod and am curious if it would be possible to use the forge config builder to take in a list from my mods config.toml. If someone could point me in the right direction, that'd be great. I looked into making a subclass of the ConfigValue type forge uses, but the constructor is package-private and I don't know of a way around this.
    • July 23, 2020
    • 1 reply
  15. AreUThreateningMe

    Seeking help using Patchouli

    AreUThreateningMe replied to AreUThreateningMe's topic in Modder Support

    Found the solution. Since im using 1.12.2 and not one of the newer versions of minecraft the book should be created in a different location (assets.modid.patchouli_books)
    • May 14, 2020
    • 3 replies
  16. AreUThreateningMe

    Seeking help using Patchouli

    AreUThreateningMe posted a topic in Modder Support

    Hello all, I've been working on trying to add a guide book to my mod, but have run into a few problems. I am using patchouli and followed the getting started process for modders but still do not get the item in-game when i test it. When I load the game there is only the other item added by my mod and the default guide book from patchouli. Im lost and not sure what to do next. I have already tried following the example books but was not able to get that to show up in-game either. Any help is appreciated.
    • May 14, 2020
    • 3 replies
  • All Activity
  • Home
  • AreUThreateningMe
  • Theme

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