1.18.2 - intellij 2022 -Setup Dependencies from own Mod
-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
By lekem47543 · Posted
삼성호스트바 ☜kbox1·com♨ 수표호스트바 창녕호스트바 마포호스트바 서교호스트바 jjb20 제천호스트바 회기호스트바 중림호스트바 진주호스트바 vgc60 가평호스트바 교남호스트바 일원호스트바 북아현호스트바 dgf03 독산호스트바 마곡호스트바 내발산호스트바 군포호스트바 hrw67 서교호스트바 장충호스트바 무악호스트바 행당호스트바 yfq58 수하호스트바 남산호스트바 신촌호스트바 팔판호스트바 jpf41 안양호스트바 울산호스트바 신설호스트바 상수호스트바 ofk82 토정호스트바 일원호스트바 내발산호스트바 부천호스트바 hml59 안양호스트바 관훈호스트바 연남호스트바 서교호스트바 lha26 봉천호스트바 진관호스트바 창녕호스트바 상수호스트바 bbl69 천호호스트바 낙원호스트바 의정부호스트바 한강호스트바 wse93 예장호스트바 시흥호스트바 하계호스트바 저동호스트바 cwo89 창녕호스트바 장위호스트바 소격호스트바 신영호스트바 gpn15 오쇠호스트바 여수호스트바 동작호스트바 청운호스트바 nmi40 목동호스트바 배방호스트바 용인호스트바 군산호스트바 dkk90 팔판호스트바 자곡호스트바 청주호스트바 산림호스트바 drt37 율현호스트바 잠실호스트바 회현호스트바 원주호스트바 wen22 충정호스트바 초동호스트바 휘경호스트바 명일호스트바 hhg53 노원호스트바 칠곡호스트바 수유호스트바 마장호스트바 vqj99 당인호스트바 대치호스트바 갈현호스트바 홍지호스트바 jwd98 청진호스트바 이방호스트바 북가좌호스트바 화순호스트바 ard15 해남호스트바 고양호스트바 구미호스트바 고척호스트바 pil39 남창호스트바 대현호스트바 영천호스트바 창천호스트바 wwj41 -
By TileEntity · Posted
Delete the config file of nochatreports If there is no change, remove this mod -
By TileEntity · Posted
Remove animatedrecipebook from your server It is a client-side-only mod If this is not working, add the new crash-report Add crash-reports with sites like https://paste.ee/ and paste the link to it here -
i also finally managed to get it working heres my finished colorHandler that works currently for 1.18.2 and from what i can tell should work post version 1.12 //code start package com.zer0_the_wolf.layeredarmor.item.custom; import com.zer0_the_wolf.layeredarmor.item.LayeredArmoritems; import net.minecraft.client.color.item.ItemColor; import net.minecraft.client.color.item.ItemColors; import net.minecraft.nbt.CompoundTag; import net.minecraft.world.item.DyeColor; import net.minecraft.world.item.DyeableArmorItem; import net.minecraft.world.item.DyeableLeatherItem; import net.minecraft.world.item.ItemStack; import net.minecraftforge.client.event.ColorHandlerEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; public class ColorHandlers { @SubscribeEvent public static void registerItemColors(ColorHandlerEvent.Item event) { event.getItemColors().register(ColorHandlers::getColor, LayeredArmoritems.LEATHERCHAINHELMET.get(), LayeredArmoritems.LEATHERCHAINCHESTPLATE.get(), LayeredArmoritems.LEATHERCHAINLEGGINGS.get(), LayeredArmoritems.LEATHERCHAINBOOTS.get()); } private static int getColor(ItemStack pStack, int tintIndex) { CompoundTag compoundtag = pStack.getTagElement("display"); if (tintIndex == 0) { return compoundtag != null && compoundtag.contains("color", 99) ? compoundtag.getInt("color") : 10511680; } return 0xFFFFFF; } } //end code do note that you have to add a listener should be same place you added a listener for the event bus. mine looks like. eventBus.addListener(ColorHandlers::registerItemColors);
-
By a_random_something · Posted
Appreciate the help, but I did manage to figure it out with some tutorials. The main problem was figuring out how to calculate the angles for the arrows to shoot at
-
-
Topics
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.