-
Posts
642 -
Joined
-
Last visited
Everything posted by TheRPGAdventurer
-
Issues with tameable dragon GUI (ScreenShots)
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
Ok found another bug, the tool tip shows from behind might be a forge bug. Other mods have the problem -
Issues with tameable dragon GUI (ScreenShots)
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
This is my render for armor, does the the bolded line has something to do with it? package com.TheRPGAdventurer.ROTD.client.render.layers; import com.TheRPGAdventurer.ROTD.client.model.DragonModel; import com.TheRPGAdventurer.ROTD.client.render.DragonRenderer; import com.TheRPGAdventurer.ROTD.client.render.breeds.DefaultDragonBreedRenderer; import com.TheRPGAdventurer.ROTD.server.entity.EntityTameableDragon; import com.TheRPGAdventurer.ROTD.server.entity.breeds.EnumDragonBreed; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.util.ResourceLocation; /** * Created by TheRPGAdventurer based on ice and fire code5. */ public class LayerRendererDragonArmor extends LayerRendererDragon { public LayerRendererDragonArmor(DragonRenderer renderer, DefaultDragonBreedRenderer breedRenderer, DragonModel model) { super(renderer, breedRenderer, model); } @Override public void doRenderLayer(EntityTameableDragon dragon, float moveTime, float moveSpeed, float partialTicks, float ticksExisted, float lookYaw, float lookPitch, float scale) { if (dragon.getArmor() != 0) { renderer.bindTexture(new ResourceLocation("rotd:textures/entities/armor/armor_" + (dragon.getArmor() != 1 ? dragon.getArmor() != 2 ? "diamond" : "gold" : "iron") + ".png")); GlStateManager.color(1, 1, 1, 1); model.render(dragon, moveTime, moveSpeed, ticksExisted, lookYaw, lookPitch, scale); } } @Override public boolean shouldCombineTextures() { return false; } } -
issue #1: Names of the Item names wont show up. normal horse inventory Dragon Gui. Issue # 2 Also notice that the armor, saddle and chest are too bright in the gui But will show normally after being screenshot Dragon GUI: https://pastebin.com/xaGbWwbW Dragon Inventory: https://pastebin.com/yqFWL1Ra
-
Help I Cant Make The Tools 3D In Hand
TheRPGAdventurer replied to So0onyYT's topic in Modder Support
I love this guy -
yeah i remembered, we both posted some bad threads. the reason why it is hard to learn java because the tutorials use deep hard words, these words means a lot in every sentence so it would be recommended to google each hard deep word. I once got confused when @Choonster used the word "obsfucate" until I googled it, its that easy!
-
Problems with debug in eclipse
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
I was going to intend to try this: he used the debug feature so that when I really need a quick change like model part locations etc. I would not need to quit and restart minecraft. -
Why?
-
Problems with debug in eclipse
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
So I would remove all my breakpoints? How do I even edit minecraft live now, you know ithout restarting the game just to change a features? -
Problems with debug in eclipse
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
I dont understand you sorry, if I get to the debug perspective the game just stop launching. gonna post a screenshot. -
when I run debug and it shows me the debug perspective the game stops responding and it shows me a class that says url not found and inside it is just a red text saying source not found and it shows me a clickable button that says edit source path.
-
1.10.2 Problems with making mob shearable.
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
It's really my first time to encounter the WorldTime. But guess Ill try. -
1.10.2 Problems with making mob shearable.
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
the get world time, the one that you need to wait to do something via using getWorldTime etc. -
1.10.2 Problems with making mob shearable.
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
can you give me some examples tho? -
I have warning issues that animal inventory has a limit of 18 slots, but the trouble is that I have lots of proofs, mods have a limit for their animal inventory, even the minecraft horse does so is it true?
-
1.10.2 Problems with making mob shearable.
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
damn one of those misleading names again, these arent that misleading tho. -
1.10.2 Problems with making mob shearable.
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
Sorry for necroing but the time I posted this I didn't really understand java and modding itself and didn't obey the advice to learn java before modding minecraft, I improved now. So can I ask the question, if world.getWorldTime to get the World time how do I get the current time. -
(1.12) Issues with Llibrary not downloading
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support