Posted March 22, 201411 yr How do i make capes appear on a player? Like the minecon / mojang capes but with my own custom texture.
March 22, 201411 yr public static void addCapes() { String capeURL = "URL_TO_CAPE.com/cape.png"; String[] owners = {"hotrods20", "OtherUsernames"}; ThreadDownloadImageData image = new ThreadDownloadImageData(capeURL, null, null); for(String username : owners) { Minecraft.getMinecraft().renderEngine.loadTexture(new ResourceLocation("cloaks/" + username), (TextureObject)image); } } Put that in your client side proxy. Don't forget to put this.addCapes(); to your load method. Sources of info: http://www.minecraftforum.net/topic/2254009-164-forge-darkhaxs-modding-tutorials-how-to-add-capes/ EDIT: Learn to Google a bit before asking. http://www.slothygaming.com/img/ota.png[/img] If your grammar is shit and you blatantly don't know what you're doing, I will not help you.
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.