Krevik
Members-
Posts
179 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Krevik
-
ref
-
ref
-
ref
-
You should get familiar with forge events and subscribing them and basically most of things that you want do to, can be done using RenderGameOverlayEvent
-
Hello! I am having some weird problem with custom entities. I made a custom dimension with custom biomes, and also made a few new mobs. Mobs are working, I can spawn them by the egg, however the problem is: I cannot enter my custom dimension upon adding custom mob to custom biome spawn list. No crash log, it is just stuck on the "loading terrain" message after crossing the portal. Weird thing is that when I add mobs to spawn list and enter world that I've already played on, everywthing works normal. You can check my code here: https://github.com/Krevik/1.13.2-test/tree/master/src/main/java/mod/krevik/kathairis EntityType initialization and registration methods are at util/KatharianEntityTypes and at util/RegistryHelper and at util/EntityRegistry . Biomes are at world/dimension/biome/biomes What am I doing wrong?
-
Thanks !
-
Hello! I wonder how can I create custom music type for my dimension now. In 1.12 I used EnumHelperClient.addMusicType It does not exist anymore. How can I solve the problem?
-
Hello there! Actually I am having a problem - my custom dimension is randomly crashing and I cannot find out why. I am using forge build 0.84 Here's the crash log: And yeah - I know how to read the crash log and what it means. The question is can I do something with it or is it actually forge bug? Here is my code : https://github.com/Krevik/1.13.2-test
-
Well code seems to be similiar to mine. So in my opinion it's problem of registrying it. My way: public Main() { FMLJavaModLoadingContext.get().getModEventBus().addListener(this::setup); } private void setup(final FMLCommonSetupEvent event) { //here }
-
[SOLVED] [1.13.2] getWorld for custom dimension type always returns null
Krevik replied to Krevik's topic in Modder Support
ref -
[1.13.2] actual appearence of blockstates jsons?
Krevik replied to Drachenbauer's topic in Modder Support
well recipes should have nothing to your problem actually, also my recipes are currently not finished -
[1.13.2] actual appearence of blockstates jsons?
Krevik replied to Drachenbauer's topic in Modder Support
Well here is my repository, I have few working examples here both items and blocks. https://github.com/Krevik/1.13.2-test -
[1.13.2] actual appearence of blockstates jsons?
Krevik replied to Drachenbauer's topic in Modder Support
Trust me I know that Just reading what are your logs are telling us. -
[1.13.2] actual appearence of blockstates jsons?
Krevik replied to Drachenbauer's topic in Modder Support
[20:48:44.149] [Client thread/ERROR] [FM.TEXTURE_ERRORS/]: The missing resources for domain angrybirdsmod are: [20:48:44.150] [Client thread/ERROR] [FM.TEXTURE_ERRORS/]: blocks/slingshot_block_part [20:48:44.150] [Client thread/ERROR] [FM.TEXTURE_ERRORS/]: blocks/egg_block [20:48:44.150] [Client thread/ERROR] [FM.TEXTURE_ERRORS/]: blocks/slingshot_block [20:48:44.150] [Client thread/ERROR] [FM.TEXTURE_ERRORS/]: blocks/hay_block_top [20:48:44.150] [Client thread/ERROR] [FM.TEXTURE_ERRORS/]: blocks/balloon_block you're having your textures in textures/block not in textures/blockS that's why minecraft cannot find them -
[1.13.2] actual appearence of blockstates jsons?
Krevik replied to Drachenbauer's topic in Modder Support
as example error is referencing you to location angrybirdsmod:models/balloon_block.json have you been trying to put block model in there? not inside models/block folder but indirectly inside models/ ? -
Custom dimension sky brightness changes with render distance.
Krevik replied to weckar's topic in Modder Support
Hmmm I have not been playing with render distance but as far as I know you should play with sky color and fog color cause it seems they're affecting each other. Hope it will point you onto right way. -
[1.13.2] actual appearence of blockstates jsons?
Krevik replied to Drachenbauer's topic in Modder Support
Try changing your blockstate from to: -
[1.13.2] actual appearence of blockstates jsons?
Krevik replied to Drachenbauer's topic in Modder Support
Post here your resources catalog hierarchy ss -
[SOLVED] [1.13.2] getWorld for custom dimension type always returns null
Krevik replied to Krevik's topic in Modder Support
Unfortunatelly It won't help. The crash is fired before custom Teleporter class is even loaded, so... it's not problem with teleporter class (at least now xD) EDIT: Anyway I see that teleportation code is in teleporter class, so checked it for another mcServer getting method - also doesn't work