• 0

    posted a message on Trouble with adding mod support to my texture/resource pack

    First, I had the path slightly wrong. Mod namespaces have the same file structure as the minecraft namespace, the path to bamboo is actually "assets\biomesoplenty\textures\blocks\bamboo.png."


    Just having the files in the right spots with the same structure and names used in the mod should be enough to change the texture the same as in vanilla minecraft. There's no additional settings needed. If it's not working, check the names of your files and folders and make sure it's exactly right.


    To find out a mod's asset's name and namespace, just open the mod's .jar file in a file explorer (i.e. windows explorer) or an archive program (e. g. 7zip) as if it were a .zip file, the first folder should be "assets", just like in minecraft and the folders in "assets" should be the namespaces the mod uses(most mods just have one namespace), from there it's set up the same as minecraft.


    To have random mobs is pretty easy. In the main minecraft namespace of your resource pack you need another folder named "mcpatcher"(I should warn you that in optifine for 1.13 the mcpatcher folder has been renamed to "optifine," but if this is for 1.12 it still needs to be mcpatcher) in the mcpatcher folder, you need a folder called "mob". Think of this folder as a mirror of the "entity" folder in "minecraft\textures" i. e..that the textures here need to be in the same relative location as the counterpart in "entity","then simply put your additional mob textures in there with the same name as the base mob texture in the entity folder plus a number starting from 2.


    For example if you want additional cows: the main cow texture is, "assets\minecraft\textures\entitiy\cow\cow.png

    your additional cow textures should be at "assets\minecraft\mcpatcher\mob\cow\cow2.png," "cow3.png," and "cow4.png etc. optifine assumes the base cow texture in the entity folder is "cow1.png" which is why you start counting at 2.

    Not all entity textures are in a sub-folder, for example chickens are at "~\textures\entity\chicken.png" so additional chickens start at "~\mcpatcher\mob\chicken2.png."this is what I mean by the files in "mob" mirroring the structure of "entity.


    It's also possible to add a degree of control of your additional mob textures, such as setting some to only appear in certain biomes or change the rarity of some using an additional [MobName].properties file, but that might be beyond your needs.

    There is a setting in options that might need to be turned on for random mobs to work ( I think it's under 'details' or 'quality' in the video settings, I don't remember, but I think it's on by default.

    Posted in: Resource Pack Help
  • 1

    posted a message on Trouble with adding mod support to my texture/resource pack

    Changing the textures of a mod should work the same way as changing the textures in minecraft except instead of working within minecraft's namespace[assets\minecraft] you use the mod's namespace. For example if changing textures for Biomes o' Plenty, or specifically to change the bamboo texture in Biomes o' Plenty you put your texture in "assets\biomesoplenty\blocks\bamboo.png".


    Perhaps I could be of more help if I knew what mod you were making your pack for and which texture you were trying to change.


    to add random variations of mobs you need optifine. but if you've seen packs do this without optifine please point me to them I'd love to see how they did this.

    Posted in: Resource Pack Help
  • 0

    posted a message on 1.14 Textures Resource Pack for 1.13 | Stone Slab Problem

    This is because stone double slabs are set to use the stone block model. If you want to use a different model for stone double slabs. You need to make a model for it. I recommend copying stone.json from models/block and putting it in your resource pack and renaming it to something like stone_double_slab, then editing it to use the texture of your double slab. then copy stone_slab.json from blockstates and copying it into your resource pack, then edit it and change the fourth line to:

            "type=double": { "model": "block/stone_double_slab" }
    Posted in: Resource Pack Help
  • 5

    posted a message on Misa's Realistic Texture Pack - 1.20.1+ UPDATED ELSEWHERE!

    Even though I just recently updated these, I've updated them again.

    Added turtle texture(thanks Maxi!), added turtle helmet texture, updated scute texture, updated contributions text, Deleted redundant files(thanks Liam.) Downloads:

    Download Misa updated v1.3.1 (81MB)


    Added turtle variations for optifine(four common variations and four very rare variations):

    Download Giam's Alternate Misa-style Patch 1.13 (26MB)

    Posted in: Resource Packs
  • 1

    posted a message on Misa's Realistic Texture Pack - 1.20.1+ UPDATED ELSEWHERE!

    Yes, thank you.


    Updated these two packs:

    replaced Alex texture, fixed spruce stairs and re-added Misa's color properties, which got deleted somehow.


    Download Misa updated v1.3.1 (85MB)


    Download Giam's Alternate Misa-style Patch 1.13 (25MB)


    As a reminder, the Fish entities, dolphin, turtle, and turtle helmet still don't textures. as I am not skilled at biological entity texturing. I've spent a whole day trying to texture each of those things only to trash all my work at the end of the day because it was crap. As such The pack could use help on these from anyone willing to contribute.

    Posted in: Resource Packs
  • 1

    posted a message on Misa's Realistic Texture Pack - 1.20.1+ UPDATED ELSEWHERE!

    Ah, I see it now, I'll try to fix it tomorrow. Thank you.


    Also, I remind you Misa made the textures, All I'm doing is updating her pack for 1.13. and this problem lies within my translation of her base pack to 1.13. It's Misa's great work, I messed something up.

    Posted in: Resource Packs
  • 0

    posted a message on [OPTIFINE-CTM] Overlay method not working (SOLVED!)

    I had a similar issue at one point, if you want to read what others suggested about it:


    https://github.com/sp614x/optifine/issues/1780

    Posted in: Resource Pack Help
  • 0

    posted a message on [OPTIFINE-CTM] Overlay method not working (SOLVED!)

    Here's my propertes file for an overlay:

    method=overlay
    tiles=0-16
    tintIndex=0
    tintBlock=minecraft:grass_block
    layer=cutout
    weight=3
    matchBlocks=minecraft:grass_path
    faces=top
    connectBlocks=minecraft:grass_block



    So, yours should look like:

    method=overlay
    tiles=0-16
    tintIndex=0
    tintBlock=minecraft:grass_block
    layer=cutout
    weight=1
    matchBlocks=stone andesite diorite granite
    faces=top
    connectBlocks=minecraft:grass_block


    "weight" and "layer" may not be necessary in your case

    Posted in: Resource Pack Help
  • 0

    posted a message on [OPTIFINE-CTM] Overlay method not working (SOLVED!)

    actually the texture is grass_block_top, the block is grass_block

    Posted in: Resource Pack Help
  • 1

    posted a message on Connected textures don't work in 1.13 (Optifine)

    if there's a 1.13 version of the pack and they left the mcpatcher folder in it, try simply changing the name of that folder within the pack from 'mcpatcher' to 'optifine.'

    Posted in: Resource Pack Help
  • 0

    posted a message on [OPTIFINE-CTM] Overlay method not working (SOLVED!)

    try "connectBlocks=grass_block" instead of "connectTiles" you may need to add faces=top if using connectBlocks. Additionally, are you applying any CTM to the grass_top tile? such as random or repeat? because that will cause conflict with overlays.

    Posted in: Resource Pack Help
  • 0

    posted a message on Misa's Realistic Texture Pack - 1.20.1+ UPDATED ELSEWHERE!

    Going to n

    Quote from Inorbx»

    The wooden stairs (oak) do something weired when placed in a corner.


    Going to need more info than that. they look fine to me.

    Posted in: Resource Packs
  • 2

    posted a message on Misa's Realistic Texture Pack - 1.20.1+ UPDATED ELSEWHERE!

    That's your emerald??? Taking Glim's and calling it Misa's is worse than just replacing Misa's. That is not Okay. You're being generous, Glim, considering that emerald is animated the same way for Minecraft as the one in your pack, I find it hard to believe you chanced across the same stock image.


    At any rate, I've put all those textures back to Misa's version:


    Download Misa updated v1.13.1 (85MB)

    Posted in: Resource Packs
  • 0

    posted a message on Misa's Realistic Texture Pack - 1.20.1+ UPDATED ELSEWHERE!
    Quote from Uniquitous»

    Erm... Misa did do degraded textures for the bat.



    Indeed?


    Okay, after researching this issue I see now that the textures for the wooden sword (and golden sword) aren't actually Misa's.{*Sigh*, contributors please don't change Misa's textures away from her own in her own pack. Please make patches if you want to introduce your own improvements}


    That said I've updated the pack again to restore Misa's Golden and wooden swords:


    Download Misa updated v1.13.1 (85MB)


    Are any more of Misa's actual textures not in use? I secretly replaced the wool in the pack with Misa's a few updates back because apparently someone decided they didn't like the color of some of them.

    Posted in: Resource Packs
  • To post a comment, please .