Posts posted by DaemonUmbra
-
-
Edited by DaemonUmbra
Added linkRemember you'll need to register it to the event bus for it to fire.
aaaaand I'm dumb, that fires when the in-game config editor gets closed, you'll need to call sync in preInit as well, sorry.

-
-
-
-
-
Edited by DaemonUmbra
Changed link to jump to where the applicable section starts.To make a subsection in-game you'll need to make a subclass ModConfig.Category and annotate it with @Config(modid="<Your modid>", category="Category Name").
If you do this I would recommend adding [name="modid/category"] to all of your config classes. You can see how I did it here.
Additional note: I believe the order is based on the variables rather than their @Config.Name, as CustomServer starts with C and there is no A or B variables it is bumped to the top.
-
-
-
Edited by DaemonUmbra
Haven't made items in a while but I think your issue is you should be using "supertnt:starrecord" rather than just "starrecord", if I'm wrong someone else please correct me.
Edit: I recommend using hardcoded values as little as possible getRegistryName() is preferable.
Edit 2: I can't test at the moment but the tip from my first edit may require use of the @ObjectHolder annotation
-
-
Edited by DaemonUmbra
Extra note9 minutes ago, Ali Altamimi said:Caused by: java.lang.OutOfMemoryError: Java heap space
9 minutes ago, Ali Altamimi said:up to 259522560 bytes (247 MB)
You'll need to give it a lot more memory, 4Gigs is usually standard with modded Minecraft
Edit: When I say 4Gigs I mean the client, you can usually get away with a little less for a server since it's not storing textures, but it will still need upwards of 2G
-
-
-
-
-
-
-
-
If I may, I can highly recommend people check out the Stop Mod Reposts Project, which has a browser addon available that alerts users when they visit a site that is blacklisted by the project.
They already have the mentioned site blacklisted.
-
-
-
Edited by DaemonUmbra
Added extra noteIt should be noted that this is not the recommended way to start a Minecraft server.
This method will give you more control over how much ram the server has, as well as the option to run it in a command line, freeing up a little bit of extra ram that would've been used by the GUI.Note that in the example I've linked you can simply substitute the Forge Jar in for the Minecraft jar in the actual commands, though the minecraft jar still needs to be there in the files of course.
-
If you were running the pack with the Twitch launcher, forcing Twitch to re-download all the jar files might fix it.
You can do this by going into C:\Users\<Your Username>\Documents\Curse\Minecraft\Install and deleting your libraries and versions folders.
Note: I'm not sure what you meant by:
On 3/27/2018 at 5:29 PM, Zinoda said:I've deleted the old files to make new ones
in particular I don't know which specific files you are referring to
-
Creating blocks with metadata
in Modder Support
Fair warning that Metadata will be removed in 1.13 [Source]