How to Add Settings to your Own Texture Pack | Minecraft Bedrock 1.16.201 Tutorial Windows 10

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ธ.ค. 2024

ความคิดเห็น •

  • @TheOctazen
    @TheOctazen  4 ปีที่แล้ว +17

    finally another tutorial video :D

    • @andreiakopian
      @andreiakopian 3 ปีที่แล้ว

      Hi, is there a way of getting to of these sliders??

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      Hi @ChrisYTX123 manifest.json is already in the texture pack. if you accidentally delete it,
      Download minecraft resource pack template from minecraft.net here's the shortcut link
      aka.ms/resourcepacktemplate
      Extract and take the manifest.json file from it
      Open with notepad and set to always 😁👍

    • @privtchecker9356
      @privtchecker9356 3 ปีที่แล้ว

      @@TheOctazen i need mobile versiob plz

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      @@privtchecker9356 oh you can do this on mobile too

    • @privtchecker9356
      @privtchecker9356 3 ปีที่แล้ว

      @@TheOctazen ok

  • @yukqofx4988
    @yukqofx4988 3 ปีที่แล้ว +6

    OMG I wanted to learn how to add pack settings to my texture pack and coudnt find a video on it but then i found yours! This was VERY helpful and easy to understand! Keep up the good work! You have earned yourself another sub

  • @elitecereal
    @elitecereal 3 ปีที่แล้ว +1

    oh. my. god. YOU ARE THE BEST TH-camR OUT THERE!! SUBBED!

  • @zenyx11
    @zenyx11 3 ปีที่แล้ว +2

    thanks so much
    I needed this for my client
    shhhhh i was watching this in class

  • @nucl3arf1ssion91
    @nucl3arf1ssion91 3 ปีที่แล้ว

    man u deserve more than just 78 subs, i needed to add settings to my crosshair overlay and wasnt able to find a good tutorial for ages

  • @PrestigePlayz
    @PrestigePlayz 3 ปีที่แล้ว +1

    Thank you so much mate for the help! I actually already knew how by simply copying the code from another pack that had this settings but the thing that was an error was the bracket placements so thanks to you, I finally know the correct order i shoukd be placing them. You deserve a sub for this : D
    Plus your tutorial is short and striaght to the point as well as being able to not get boring xD

  • @buckIin
    @buckIin 2 ปีที่แล้ว

    Thanks! I've seen so packs with settings, and this helped me a lot.

  • @shadowspec
    @shadowspec 3 ปีที่แล้ว +1

    NICE Quality videos 👌 Thanks

  • @bobbywasabi17
    @bobbywasabi17 2 ปีที่แล้ว

    tysm dude ilove all your tutorials they are sooooooo usefaul :DDDD

  • @rph5376
    @rph5376 ปีที่แล้ว

    Thx so much dude im so confuse how subpacks works lol now i know bc of u

  • @Lord.Cosmos
    @Lord.Cosmos 3 ปีที่แล้ว

    I was doing a Minecraft Texture Pack where you can use different Capes I used over time on Bedrock. But I couldnt get this to work. Thank you

  • @RohanPlayZ_YT
    @RohanPlayZ_YT 3 ปีที่แล้ว +1

    Tnx So Much
    Finally I Can Publish My PvP Pack

  • @user-up9tl3qo7x
    @user-up9tl3qo7x 3 ปีที่แล้ว +3

    This is helpful for texture pack maker and new subs thanks for the Tutorial

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      No problem :)

    • @v0It_99
      @v0It_99 3 ปีที่แล้ว

      @@TheOctazen I cant copy the code

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      @@v0It_99 a lot of people asking about that, so I changed the description

    • @v0It_99
      @v0It_99 3 ปีที่แล้ว

      @@TheOctazen k thx

  • @pizkar
    @pizkar 3 ปีที่แล้ว +2

    I dont make Texturepacks, i am an Addon Developer but it is a reall good Video

  • @onefortworth
    @onefortworth 2 ปีที่แล้ว +1

    Cool thing You can Do with Behavior packs
    You can add Functions by creating a file and naming it "functions"
    You can add Scripts (NOTE: script is a lil bit hard) by creating a file and naming it "scripts"
    Here's a gametest framework custom command design used by the script folder
    import { World, Commands } from "mojang-minecraft"
    //Prefix for all custom commands
    const commandPrefix = "!!"
    //The function that will handle all custom command inputs and outputs
    function customCommand(command, args, msg, player) {

    let dimension = World.getDimension('overworld')

    switch(command) {
    case "spawn":
    Commands.run(`execute "${player.nameTag}" ~~~ tp @s 60 100 60`, dimension)
    break;
    case "command":
    Commands.run(`execute "${player.nameTag}" ~~~ give @s command_block`, dimension)
    break;
    case "lplayer":
    Commands.run(`execute "${player.nameTag}" ~~~ list`, dimension)
    break;
    case "killhax":
    Commands.run(`execute "${player.nameTag}" ~~~ kill @e[type=ender_dragon]`, dimension)
    break;
    case "togglew":
    Commands.run(`execute "${player.nameTag}" ~~~ toggledownfall`, dimension)
    break;
    case "gnetherite":
    Commands.run(`execute "${player.nameTag}" ~~~ give @s netherite_ingot 10`, dimension)
    break;
    case "gaacommand":
    Commands.run(`execute "${player.nameTag}" ~~~ function acommand`, dimension)
    break;
    case "ikill":
    Commands.run(`execute "${player.nameTag}" ~~~ kill @e[type=item]`, dimension)
    break;
    case "pillar":
    Commands.run(`execute "${player.nameTag}" ~~~ structure load pillar ~~~`, dimension)
    break;
    case "gdiamond":
    Commands.run(`execute "${player.nameTag}" ~~~ give @s diamond 30`, dimension)
    break;
    case "day":
    Commands.run(`execute "${player.nameTag}" ~~~ time set day`, dimension)
    break;
    case "night":
    Commands.run(`execute "${player.nameTag}" ~~~ time set night`, dimension)
    break;
    case "ladmin":
    Commands.run(`execute "${player.nameTag}" ~~~ function sayadmin`, dimension)
    break;
    case "nether":
    Commands.run(`execute "${player.nameTag}" ~~~ setblock ~~~ portal`, dimension)
    break;
    case "test":
    Commands.run(`execute "${player.nameTag}" ~~~ say test`, dimension)
    break;
    case "gmc":
    Commands.run(`gamemode 1 "${player.nameTag}"`, dimension)
    break;
    case "gms":
    Commands.run(`gamemode 0 "${player.nameTag}"`, dimension)
    break;
    case "discord":
    Commands.run(`execute "${player.nameTag}" ~~~ tellraw @s {\"rawtext\":[{\"text\":\"§9§lJoin My Discord!
    §r§7discord.gg/9S6K935\"}]}`, dimension)
    break;
    default:
    Commands.run(`say error! ${command} is not a valid command!`, dimension)
    }
    }
    //Checks if a command was run (checks for the prefix)
    World.events.beforeChat.subscribe(msg => {
    if(!msg.message.startsWith(commandPrefix)) return
    const args = msg.message.slice(commandPrefix.length).trim().split(/\s+/);
    msg.cancel = true
    const player = msg.sender
    const command = args.shift()
    customCommand(command, args, args.join(" "), player)
    })

  • @Idkila
    @Idkila 3 ปีที่แล้ว +2

    u deserve more subs

  • @muff1n36
    @muff1n36 2 ปีที่แล้ว

    Thanks! I trick my mcpe to thinking it's classic but I need 2 for if I want to switch so this helps a ton mate!

  • @sg_ab
    @sg_ab 2 ปีที่แล้ว

    thanks for the tutorial! it work in my texture pack.

  • @PowerRubik
    @PowerRubik 2 ปีที่แล้ว

    Thanks a lot! Earned a new sub ;)

  • @tatwiZard
    @tatwiZard 3 ปีที่แล้ว +1

    Thx man
    I'm gonna be making a customizable totem of undying texture pack

    • @Notify_Bobo
      @Notify_Bobo 3 ปีที่แล้ว

      i just did mine lol

    • @buckIin
      @buckIin 2 ปีที่แล้ว +1

      xd I also came for that I'm making mob/biome vote totems

  • @trioplayzminecraft6601
    @trioplayzminecraft6601 3 ปีที่แล้ว

    I found this vid cuz I was making my own texture pack on mcpe on android
    And I added subacks but it don't work
    So I watched this and now it worked

  • @snickermars1714
    @snickermars1714 6 หลายเดือนก่อน

    you earned a sub bro ty very much

  • @aryanranim7483
    @aryanranim7483 3 ปีที่แล้ว +1

    Subscribed thanks 👍

  • @yea-00
    @yea-00 3 ปีที่แล้ว

    Im on mobile and u follow all of ypur steps!!
    It works!

  • @CyberTheFurry
    @CyberTheFurry 4 ปีที่แล้ว

    This is cool, thanks for the tutorial

    • @TheOctazen
      @TheOctazen  4 ปีที่แล้ว

      You're welcome, i making this tutorial because nobody makes it .

  • @notwoermi9750
    @notwoermi9750 2 ปีที่แล้ว +1

    How can I make a Default Folder which doesn't change anything with the rest of the pack?

  • @polyunrhythmicinactiveacco4772
    @polyunrhythmicinactiveacco4772 3 ปีที่แล้ว

    thanks, i was making a resource pack where you can switch between fonts

  • @Lvanish
    @Lvanish 2 ปีที่แล้ว +1

    Can u make a tutorial how to do this but sky sub packs?

  • @gresbrick3984
    @gresbrick3984 2 ปีที่แล้ว

    2:44 Hey how i can do the transparent bar like your ?

  • @GamerTrainer180
    @GamerTrainer180 3 ปีที่แล้ว +1

    Thank you so much!!

  • @manojjishajisha9989
    @manojjishajisha9989 3 ปีที่แล้ว +1

    I tried using gui but in did not work please tell how to do it

  • @asher_7562
    @asher_7562 3 ปีที่แล้ว

    U deserved a sub

  • @ParrotNoname
    @ParrotNoname หลายเดือนก่อน

    What should I put in the textures folder not inside the sub-packs folder?

  • @mrmirchiTheCodGuy
    @mrmirchiTheCodGuy 2 ปีที่แล้ว

    Deserved a sub ;)

  • @eunaodissenada6047
    @eunaodissenada6047 2 ปีที่แล้ว

    Hey man, could you help me on this topic? I'm creating a texture that has two sky overlays on it, so I've subpacked it. only that, all of a sudden, my game can no longer recognize the change of state of the subpack configuration bar of any texture! What can this be? before it worked perfectly. thanks in advance

  • @naooipty
    @naooipty 3 ปีที่แล้ว +2

    I mixed some textures that changes the swords, but when i exported to the minecraft the swords haven't changed. I didn't get what I did wrong because I made everything that is in the video

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว +1

      Check 2:50
      if you already did and still doesn't work. Dm me on discord OTZ#7375 and send your pack there, so i can see your actual problem

    • @naooipty
      @naooipty 3 ปีที่แล้ว

      @@TheOctazen I already did that but it didn't solve nothing

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      @@naooipty ok

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      Dm me on discord

    • @Tutorial.for.everything
      @Tutorial.for.everything 2 ปีที่แล้ว

      same at me

  • @ivanJay8873
    @ivanJay8873 3 ปีที่แล้ว +1

    OMG THANK YOUUUUUUUUUUUUU!!!!!!!!!!!!

  • @eboatwright_
    @eboatwright_ 3 ปีที่แล้ว +1

    Thanks! :)

  • @esezdi
    @esezdi 3 ปีที่แล้ว +2

    Thanks bro

  • @Naflate
    @Naflate 3 ปีที่แล้ว

    thank you so much i need this cause im making mobile version of My tpack

  • @jstarandomdude
    @jstarandomdude 3 ปีที่แล้ว +1

    Hi im making a texture pack with a disabled setting do i leave the disabled thingy empty or do i find the minecraft textures

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      Yes you have to leave it empty

  • @TryhardMqximus
    @TryhardMqximus 8 หลายเดือนก่อน

    Hey! What's up? I need a help, i would like to know how to make a .MCPACK or .MCADDON export more than one pack to Minecraft (like "Advanchat" does. You open one .MCADDON and import 3 diferent packs and all of them are RESOURCE PACKS). How do i do this?

  • @kiraisdaddyy546
    @kiraisdaddyy546 3 ปีที่แล้ว +1

    It doesn't show me the gear icon.. why?
    Update: I found out how and now it shows, but it shows me 2 warnings and when I choose the texture it doesn't work, it just shows the original texture pack, can you help me?

    • @PowerRubik
      @PowerRubik 2 ปีที่แล้ว

      mmmh... Try Replacing the manifest.json with mine: mega.nz/file/9S91gRbQ#5LK7edOAJlxXYkYyX6kgrSNhm1oEDqEu-QQbD_HSfw4

    • @PowerRubik
      @PowerRubik 2 ปีที่แล้ว

      mmmh... Try Replacing the manifest.json with mine: mega.nz/file/9S91gRbQ#5LK7edOAJlxXYkYyX6kgrSNhm1oEDqEu-QQbD_HSfw4

  • @Gabrielfromuktrakill
    @Gabrielfromuktrakill 3 ปีที่แล้ว +1

    Hello I made a subpacks but for some reason the armour texture does not work how can I fix this

  • @Godman4ik
    @Godman4ik 2 ปีที่แล้ว +1

    Hello bro. I know it's late, but do you know a way to make several custom elements, i.e. 2-3 lines of settings?

    • @bobbywasabi17
      @bobbywasabi17 2 ปีที่แล้ว

      Ik this was a long time ago and u prob figured it out but just copy and paste the code in manifest for however many settings you want :)

  • @sniflyx7212
    @sniflyx7212 3 ปีที่แล้ว

    Next plss Turtorial on how to add custom cross hair on you pack

  • @kallmekalok
    @kallmekalok 3 ปีที่แล้ว

    Now my pack have options but it not work how to fix it?

  • @Flyboijae
    @Flyboijae 3 ปีที่แล้ว +2

    Thx

  • @Slmn249
    @Slmn249 3 ปีที่แล้ว +2

    Ur so awesome

  • @tutrialesdeminecraft9699
    @tutrialesdeminecraft9699 3 ปีที่แล้ว +2

    How do i put triple subpack?

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว +1

      Just add 3 folders on subpack then go to manifest again and follow 2:17

    • @tutrialesdeminecraft9699
      @tutrialesdeminecraft9699 3 ปีที่แล้ว +1

      @@TheOctazen if I already knew that, but I mean to put triple option bar

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว +1

      1:04 just create new folder and name it according to the location. Example
      You want custom sword and blocks.
      Create textures folder, go in, and create blocks and items folder and put the png file there.here's another example. You want custom sky. Create textures ,go in, create enviroment , go in, create overworld_cubemap and then put the skybox there

    • @tutrialesdeminecraft9699
      @tutrialesdeminecraft9699 3 ปีที่แล้ว

      @@TheOctazen ok thanks :) 👍

  • @Morothepro
    @Morothepro 3 ปีที่แล้ว

    Hi do i put the manifest.json file in the texture pack folder? Oh and do i cahnge the pack name into .mcpack?

  • @chaitanyajoshi7947
    @chaitanyajoshi7947 3 ปีที่แล้ว +1

    Can you make this video on Android

  • @DangerGaming-zh6qn
    @DangerGaming-zh6qn 2 ปีที่แล้ว

    Which sub pack is selected as default

  • @jaaaphet
    @jaaaphet 3 ปีที่แล้ว

    I was wondering if you could do a tutorial on how to do it in Minecraft 1.16.100

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      Hey don't worry ,it also work in 1.16.100

  • @A2ZMC
    @A2ZMC 3 ปีที่แล้ว +1

    This tutorial is easy I tried to make sub packs by myself and failed

  • @clv6r
    @clv6r 2 ปีที่แล้ว +2

    Does it work with gui, maybe can you make a tutorial on how to do this but with gui

    • @TheOctazen
      @TheOctazen  2 ปีที่แล้ว +2

      yes you can

    • @clv6r
      @clv6r 2 ปีที่แล้ว +2

      @@TheOctazen how do you?

    • @TheOctazen
      @TheOctazen  2 ปีที่แล้ว +2

      @@clv6r inside subpacks folder
      is like your texture pack folder,
      for example gui located in textures > ui (and) gui, and ui
      so when you create options in subpacks folder,
      go in and put your custom gui exactly like texture pack folder :
      textures > ui (and) gui, and ui
      remember, only things that you want to change

    • @TheOctazen
      @TheOctazen  2 ปีที่แล้ว +1

      @@clv6r yea sure

    • @clv6r
      @clv6r 2 ปีที่แล้ว +1

      @@TheOctazen thx

  • @user-fo2pq8hl8u
    @user-fo2pq8hl8u 3 ปีที่แล้ว +1

    Can you explain how to put 5 sub packs?

    • @buckIin
      @buckIin 2 ปีที่แล้ว

      He did

  • @IgnitionP
    @IgnitionP 3 ปีที่แล้ว

    Does this work the same as behaviour packs does

  • @Pengu_Pixels
    @Pengu_Pixels 3 ปีที่แล้ว +1

    My textures are not showing. wut do I do?

    • @Pengu_Pixels
      @Pengu_Pixels 3 ปีที่แล้ว

      Nvm I fixed it

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      "Deactivate your texture pack.
      "Go to main menu.
      "Go back to global resource.
      "Activate your texture pack.
      Dont worry,
      this glitch will only happen to texture pack creator. . .

    • @Pengu_Pixels
      @Pengu_Pixels 3 ปีที่แล้ว

      @@TheOctazen the thing is I misspelled texture

  • @bladeoftheruinedking2543
    @bladeoftheruinedking2543 3 ปีที่แล้ว +1

    Does it work with custom entity textures

  • @GamingWithRaniel
    @GamingWithRaniel 3 ปีที่แล้ว +1

    helpful

  • @tatwiZard
    @tatwiZard 3 ปีที่แล้ว

    Btw how do you change the color of the setting for each one

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว +1

      i use this symbols "§"

  • @randomcomment87yearsago91
    @randomcomment87yearsago91 3 ปีที่แล้ว +1

    Is there a limit to the amount of subpacks?

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      I don't know 🤷‍♂️
      it's more than 20 i guess

  • @crunchyplayerofgames6873
    @crunchyplayerofgames6873 2 ปีที่แล้ว

    bro thanks it worksss but how can i change the color?

    • @TheOctazen
      @TheOctazen  2 ปีที่แล้ว

      you can use this double s symbol : §
      for the color list, go to this website :
      htmlcolorcodes.com/minecraft-color-codes/

  • @FallFlix
    @FallFlix 3 ปีที่แล้ว

    How I Can Add More Button Line For manifest.json?

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      Sorry for late reply
      Check 2:16 👍

  • @retroishere
    @retroishere 3 ปีที่แล้ว +1

    Will this work on behaviours pack?

  • @cozyflake
    @cozyflake 3 ปีที่แล้ว +1

    How To Make This But With Model & Items..

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      Do the same thing.

    • @cozyflake
      @cozyflake 3 ปีที่แล้ว

      I Put Them In The Blocks Folder?

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      1:06

  • @-0.00
    @-0.00 2 ปีที่แล้ว

    Unknown Pack Name when trying to import. plz help

    • @clv6r
      @clv6r 2 ปีที่แล้ว

      You prolly need a new uuid

  • @rando3962
    @rando3962 3 ปีที่แล้ว

    do i delete the original folder with the thing in it orr?

    • @rando3962
      @rando3962 3 ปีที่แล้ว

      @@TheOctazen ok bc i cant seem to get it to work with my sky

    • @rando3962
      @rando3962 3 ปีที่แล้ว

      i mean i can make the settings but it wont change it

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      Check 2:51
      This glitch only happen to texture pack creator

    • @rando3962
      @rando3962 3 ปีที่แล้ว

      @@TheOctazen ok

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      And About the sky...
      Cut material and shader folder and paste it on subpacks settings folder.
      Then create textures folder - environment folder - overworld_cubemap folder
      And put the sky in

  • @marcoandmae695
    @marcoandmae695 3 ปีที่แล้ว +1

    Its not working for me.Edit:Its working i just dumb that I didn't put the name in the manifest sorry hehe.Nice video hope you 1k subs.

  • @byNeon.
    @byNeon. 3 ปีที่แล้ว

    hey bro could you do tuto but on Android pliss:)

  • @Itz_Matt_031
    @Itz_Matt_031 2 ปีที่แล้ว

    Can you do on mobile

  • @treasurechest3096
    @treasurechest3096 3 ปีที่แล้ว

    Can it work for android

  • @itzandrewyt8264
    @itzandrewyt8264 3 ปีที่แล้ว +1

    How to copy code I can't copy

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว +1

      Hi , if you're mobile users.
      Open youtube using any browser (chrome , uc browser , etc )
      Click on 3 dots logo and turn on desktop mode 👍

    • @itzandrewyt8264
      @itzandrewyt8264 3 ปีที่แล้ว +1

      @@TheOctazen ok thx and new sub.😃

  • @zaynnr
    @zaynnr 3 ปีที่แล้ว +1

    I know that that's subpacks

  • @Name-qd6dw
    @Name-qd6dw 3 ปีที่แล้ว

    map? link?

  • @aniruddhbane3593
    @aniruddhbane3593 3 ปีที่แล้ว

    For mcpe

  • @NotCanoOfficial
    @NotCanoOfficial 3 ปีที่แล้ว

    how about 8 or 9?

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว +2

      2:20

    • @NotCanoOfficial
      @NotCanoOfficial 3 ปีที่แล้ว +1

      @@TheOctazen oh thx u it a great tutorial! +1 sub

  • @Slmn249
    @Slmn249 3 ปีที่แล้ว +1

    NO DISLIKES!

  • @Motivationalquotes1245
    @Motivationalquotes1245 2 ปีที่แล้ว

    Plz for mobile 😭😭😭

  • @haiko8498
    @haiko8498 3 ปีที่แล้ว

    why tf do i need to download a code

  • @BokeFC
    @BokeFC 3 ปีที่แล้ว +1

    How do I add textures to my subpack,IN MOBILE

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว

      Sorry, i only make windows 10 tutorial.
      I don't know anything
      about mobile texture pack.

  • @L1ghtblueboy
    @L1ghtblueboy 3 ปีที่แล้ว

    i can't copy it 😭

    • @TheOctazen
      @TheOctazen  3 ปีที่แล้ว +1

      If you're mobile user ,open youtube
      from any browser (chrome,firefox,etc)
      and activate desktop mode.

    • @L1ghtblueboy
      @L1ghtblueboy 3 ปีที่แล้ว

      @@TheOctazen thanks

  • @마인츄
    @마인츄 ปีที่แล้ว

    🎉This video get 500 likes!!🎉

  • @CatsNNinjas
    @CatsNNinjas 2 ปีที่แล้ว

    Thank you very much!!