Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • TheRPGAdventurer

TheRPGAdventurer

Members
 View Profile  See their activity
  • Content Count

    642
  • Joined

    November 9, 2016
  • Last visited

    July 27, 2019

Community Reputation

4 Neutral

About TheRPGAdventurer

  • Rank
    Dragon Slayer

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Recent Profile Visitors

7440 profile views
  • Plaigon

    Plaigon

    June 11, 2020

  • Kiljaeden053

    Kiljaeden053

    May 28, 2020

  • Lea9ue

    Lea9ue

    October 21, 2019

  • tebreca

    tebreca

    October 9, 2019

  • willko

    willko

    June 17, 2019

  1. TheRPGAdventurer started following what are these rarely used primitive methods in EntityRenderer.orientCamera() July 24, 2019
  2. TheRPGAdventurer

    what are these rarely used primitive methods in EntityRenderer.orientCamera()

    TheRPGAdventurer posted a topic in Modder Support

    Hi everyone, i recently fixed the bug when riding a dragon that would cause the camera to be used as an xray passing through the blocks below, basing from rideable vanilla mobs like horse or pigs they orient the camera by using raytraceresult and subtract the distance from behind hence reducing the zoom dist thus fixing xray, their parameters are filled with rarely used methods what are their purposes? for (int i = 0; i < 8; ++i) // max thirdPersonDistance = 4 so 8 is a X 2 version? { float f3 = (float)((i & 1) * 2 - 1); // is 2 half of thirdPersonDistance? float f4 = (float)((i >> 1 & 1) * 2 - 1); // what the point of 1? float f5 = (float)((i >> 2 & 1) * 2 - 1); f3 = f3 * 0.1F; // why are they converted to 10 %? f4 = f4 * 0.1F; f5 = f5 * 0.1F; RayTraceResult raytraceresult = this.mc.world.rayTraceBlocks(new Vec3d(d0 + (double)f3, d1 + (double)f4, d2 + (double)f5), new Vec3d(d0 - d4 + (double)f3 + (double)f5, d1 - d6 + (double)f4, d2 - d5 + (double)f5)); Their purpose might help improve my xray fix. It isnt perfect XD
    • July 24, 2019
  3. TheRPGAdventurer

    [1.11] Is it possible to change the font size of a string?

    TheRPGAdventurer replied to Kander16's topic in Modder Support

    ahh yeah thoguht that was for renderers only thanks dies
    • June 27, 2019
    • 5 replies
  4. TheRPGAdventurer

    [1.11] Is it possible to change the font size of a string?

    TheRPGAdventurer replied to Kander16's topic in Modder Support

    sorry for necroing this post but when i call the method it makes other stuff unintentionally smaller
    • June 23, 2019
    • 5 replies
  5. TheRPGAdventurer

    Since 1.13 will remove metadata, how do I do some DataFixing/DataFixer, my blocks rely heavily on metadata.

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    so all our dragon eggs would jut disappear?
    • June 3, 2019
    • 9 replies
  6. TheRPGAdventurer

    Since 1.13 will remove metadata, how do I do some DataFixing/DataFixer, my blocks rely heavily on metadata.

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    ok 1.13 i here rewrote my blocks invidually now how do i datafix? I saw choonsters code but i find it too complicated how does it work to it core?
    • June 2, 2019
    • 9 replies
  7. TheRPGAdventurer

    [1.13.2] Setup modding environment

    TheRPGAdventurer replied to Meldexun's topic in Modder Support

    what do you mean open build.gradle as a project?
    • June 1, 2019
    • 14 replies
  8. TheRPGAdventurer

    (Solved) How to render a banner tileentity into my dragon entity

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    ok i solved it just forgot to call this: bannerModel.renderBanner();
    • May 29, 2019
    • 17 replies
  9. TheRPGAdventurer

    (Solved) How to render a banner tileentity into my dragon entity

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    @V0idWa1k3r Ok man thank for the TileEntityItemStackRenderer advice and initalized it by calling TileEntityBanner.setItemValues(); now i know the model works because the top wooden part of the banner renderers but the slate with textures doesnt what am i doing wrong here? https://pastebin.com/GMaVFGK8
    • May 29, 2019
    • 17 replies
  10. TheRPGAdventurer

    (Solved) How to render a banner tileentity into my dragon entity

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    @V0idWa1k3r i already done that but how do i get the textures for it? you said puling out the data from the itemstack but i see no methods of getting the tileentity from Item.class. what do i need to call the the banner tile entity since it the only one that tores the data not the blockbanner nor the itembanner private ResourceLocation getBannerResourceLocation(TileEntityBanner bannerObj) { return BannerTextures.BANNER_DESIGNS.getResourceLocation(bannerObj.getPatternResourceLocation(), bannerObj.getPatternList(), bannerObj.getColorList()); }
    • May 28, 2019
    • 17 replies
  11. TheRPGAdventurer

    (Solved) How to render a banner tileentity into my dragon entity

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    @V0idWa1k3r I used your second option to render it as an item but now i want the stick to be gone from the item, i will render it from the model so i can set bannerModel.bannerStand.showModel = false; now you gave me this advice how do i pull out the data from the item?
    • May 28, 2019
    • 17 replies
  12. TheRPGAdventurer

    (Solved) How to render a banner tileentity into my dragon entity

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    Ok sorry for necroing this post. Using the render by item method works for me. but the problem is that it shows the bannerstand model which is the brown stick below i want it gone now, its there because I rendered it by the item model entity. now i want to render the banner model in the render instead of calling in the item model, with it can finally set bannerModel.bannerStand.showModel = true; to false removing the stick beloww. but how do i call in the item tileentity straight from the inventory data for the textures to render, the texture is automatically called in by the item?
    • May 28, 2019
    • 17 replies
  13. TheRPGAdventurer

    1.12.2 need help for my datafixer

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    so how do i restore items from old world saves without calling in the "id" in DataFixers. As much as i can ee in Choonsters code when he helped me in datafixers i dont see him setting an ID.
    • May 17, 2019
    • 8 replies
  14. TheRPGAdventurer

    1.12.2 need help for my datafixer

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    how was their "id" set then when we call Item.setRegistryName or Item.etUnlocalizedName or Item.setTranslationKey
    • May 16, 2019
    • 8 replies
  15. TheRPGAdventurer

    1.12.2 need help for my datafixer

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    Ok someone debugged it and it say that the "id" nbt is null. Does registering an Item make an nbt already?
    • May 15, 2019
    • 8 replies
  16. TheRPGAdventurer

    1.12.2 need help for my datafixer

    TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support

    • May 14, 2019
    • 8 replies
  • All Activity
  • Home
  • TheRPGAdventurer
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community