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

hohserg

Members
 View Profile  See their activity
  • Content Count

    39
  • Joined

    May 1, 2018
  • Last visited

    February 18

Community Reputation

3 Neutral

About hohserg

  • Rank
    Tree Puncher

Recent Profile Visitors

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

  1. hohserg

    [1.15] Publication artifacts with "maven" plugin. Dependency version is warped

    hohserg posted a topic in Modder Support

    I set up a publication to maven, but using `fg.deobf` warped dependency version in pom-file. How to fix? My build.gradle: https://github.com/ElegantNetworking/ElegantNetworking_1.15/blob/master/build.gradle Problem in pom: <dependency> <groupId>codechicken</groupId> <artifactId>CodeChickenLib</artifactId> <version>1.15.2-3.3.4.402_mapped_snapshot_20200514-1.15.1</version> <classifier>universal</classifier> <scope>compile</scope> </dependency> `1.15.2-3.3.4.402_mapped_snapshot_20200514-1.15.1` is not correct version `1.15.2-3.3.4.402` is correct version
    • December 8, 2020
  2. hohserg

    Publication artifacts with "maven" plugin. Dependency version is warped

    hohserg posted a topic in Modder Support

    I set up a publication to maven, but using `fg.deobf` warped dependency version in pom-file. How to fix? My build.gradle: https://github.com/ElegantNetworking/ElegantNetworking_1.14/blob/master/build.gradle Problem in pom: <dependencies> <dependency> <groupId>codechicken</groupId> <artifactId>CodeChickenLib</artifactId> <version>1.14.4-3.2.8.374_mapped_snapshot_20190719-1.14.3</version> <classifier>universal</classifier> <scope>compile</scope> </dependency> </dependencies> `1.14.4-3.2.8.374_mapped_snapshot_20190719-1.14.3` is not correct. `1.14.4-3.2.8.374` is correct
    • December 8, 2020
    • 1 reply
  3. hohserg

    1.16 Replacing ${version} in toml

    hohserg replied to hohserg's topic in Modder Support

    I found similar question: But it unsolved
    • December 6, 2020
    • 3 replies
  4. hohserg

    1.16 Replacing ${version} in toml

    hohserg posted a topic in Modder Support

    I added follow code to my build script for replace ${version} placeholder in my toml by gradle project version processResources { // This will ensure that this task is redone when the versions change. inputs.property 'version', project.version // Replace stuff in mods.toml, nothing else from(sourceSets.main.resources.srcDirs) { include 'META-INF/mods.toml' // Replace version expand 'version':project.version } // Copy everything else except the mods.toml from(sourceSets.main.resources.srcDirs) { exclude 'META-INF/mods.toml' } } On build it crashes with * What went wrong: Execution failed for task ':ElegantNetworking_1.16:processResources'. > Could not copy file 'C:\Users\hohserg\Documents\GitHub\ElegantNetworking1\ElegantNetworking_1.16\src\main\resources\META-INF\mods.toml' to 'C:\Users\hohserg\Documents\GitHub\ElegantNetworking1\ElegantNetworking_1.16\build\resources\main\META-INF\mods.toml'. How to insert version to toml by gradle?
    • December 6, 2020
    • 3 replies
  5. hohserg

    [1.16.4] Get NBT of a TileEntity

    hohserg replied to krypciak's topic in Modder Support

    Maybe, your check perform on client? And tile on client is not synchronized with server. Try to open chest for sync.
    • November 20, 2020
    • 7 replies
  6. hohserg

    [1.16] syncronising itemstack capabilities for any item

    hohserg replied to Tavi007's topic in Modder Support

    Doesn't that work such?
    • November 20, 2020
    • 18 replies
  7. hohserg

    [1.16.4] Get NBT of a TileEntity

    hohserg replied to krypciak's topic in Modder Support

    Something like that: public static CompoundNBT getNbtOfTile(TileEntity tile) { CompoundNBT nbt = new CompoundNBT(); tile.write(nbt); return nbt; }
    • November 20, 2020
    • 7 replies
  8. hohserg

    Item with Crafting Table

    hohserg replied to zOnlyKroks's topic in Modder Support

    Such item exists in ActuallyAditions: https://github.com/Ellpeck/ActuallyAdditions/blob/1.12.2/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemCrafterOnAStick.java#L32
    • September 8, 2020
    • 10 replies
      • 1
      • Like
  9. hohserg

    How to add mods to workspace?

    hohserg replied to LaughingJackalMC's topic in Modder Support

    I'm sorry for necroposting... But how to add some obfuscated mod to 1.14+ workspace? CodeChickenCore ceased releasing in 1.10 because Forge(or ForgeGradle or anything else) became able to work with obfucated mods out of the box. But it ceased work in 1.14. Any ideas?
    • September 8, 2020
    • 7 replies
  10. hohserg started following How to get list of filenames in directory in resources July 28, 2020
  11. hohserg

    How to get list of filenames in directory in resources

    hohserg posted a topic in Modder Support

    I try answer from stackoverflow: https://stackoverflow.com/questions/3923129/get-a-list-of-resources-from-classpath-directory And it work correctly when I run game from my IDE(Intellij Idea). But when I build mod, put jar in /mods/ and run Minecraft from launcher, it method give empty filelist. Hovewer, content of files in folder are load fine. What is true way to get list of files in directory in resources? Thx in advance!
    • July 28, 2020
    • 2 replies
  12. hohserg

    [1.15.2] Try to register custom item model

    hohserg replied to Liahim's topic in Modder Support

    I try to assume more clearer. Liahim want to set custom implementation of baked model for some item. This item dont have base json model. Missing of json model is desirable behavior. And he ask: how to remove warnings from log?
    • July 28, 2020
    • 11 replies
      • 1
      • Like
  13. hohserg

    files.minecraftforge.net are uses http instead of https

    hohserg posted a topic in Support & Bug Reports

    I recently noticed that files.minecraftforge.net are uses http and some concerned about this: downloading files via http is not safe, because content can be replaced in the middle of the path from the server to the client Now I noticed that site are uses https and all fine: https://files.minecraftforge.net/ But first link in google search with http! Maybe you do not tune webserver correctly? Also in a EAQ uses http links: Plz, fix it. Thx
    • July 8, 2020
    • 1 reply
  14. hohserg

    [1.14.4] Worldgen issues

    hohserg replied to Crack3dC0d3's topic in Modder Support

    Did anyone found how to port IWorldGenerator to Feature? I still wander in the dark. Help plz
    • June 15, 2020
    • 17 replies
  15. hohserg

    Adding optifine to forge gradle

    hohserg replied to Womas's topic in Modder Support

    @Womas what's version are you use?
    • May 8, 2020
    • 19 replies
  16. hohserg

    Using Scala language on Forge 1.14

    hohserg replied to hohserg's topic in Modder Support

    Also actual example for publiched version is https://github.com/MinecraftForge/Scorge/tree/3e870dc5c1d4da88cd781a6f329878208023d0a8/example
    • April 20, 2020
    • 4 replies
  • All Activity
  • Home
  • hohserg
  • Theme

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