How to Turn Builds into Entities in Minecraft

Поділитися
Вставка
  • Опубліковано 6 жов 2024
  • A simple technique for turning builds into block display entities!
    Blockstate: github.com/Tri...
    🔵 Discord & Other Links: linktr.ee/Clou...
    💻 Website: cloudwolfyt.gi...

КОМЕНТАРІ • 51

  • @Cl0udWolf
    @Cl0udWolf  3 місяці тому +28

    totally forgot, with this method you would also want to kill any block displays if they are in air, so add to the function this line on the first line to do that:
    execute if block ~ ~ ~ air run return run kill @s

  • @Bansed
    @Bansed 3 місяці тому +42

    using dimensions is so smart

  • @ThijquintNL
    @ThijquintNL 3 місяці тому +17

    Every cloud wolf video has the 'write that down! WRITE THAT DOWN!' moment. This time its the library and and command block filling in a custom dimension

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +2

      Thanks, I try to include something ppl may not know about in most of my vids but sometimes I gotta cater to new users.

  • @mika34653
    @mika34653 3 місяці тому +31

    bro is cooking up vids like its nothing

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +7

      @@mika34653 don’t worry I got more

    • @mika34653
      @mika34653 3 місяці тому +2

      @@Cl0udWolf ayy we be eating good

  • @jdawgtor
    @jdawgtor 3 місяці тому +5

    The multidimensional commands is utter genius!

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому

      @@jdawgtor 🧠 sigma coding at its finest

  • @n0t_UN_Owen
    @n0t_UN_Owen 3 місяці тому +7

    Create mod contraptions in vanilla minecraft

  • @Liam660_
    @Liam660_ 3 місяці тому +2

    This is the best timing ever, i was literally trying to do something like that 2 days ago.

  • @LeoB_02
    @LeoB_02 3 місяці тому +3

    Wow, this was amazing!😮
    Good job man, as always

  • @apexaeon8764
    @apexaeon8764 3 місяці тому +2

    Wow!! The command block dimension blew my mind

  • @steller1636
    @steller1636 3 місяці тому +4

    That is crazy and so uselfull

  • @Pete675u
    @Pete675u 3 місяці тому

    It always amazes me what is possible in datapacks

  • @Xa31er
    @Xa31er 25 днів тому

    The spyglass vscode extension is also very good for datapack dev.

  • @vietlongpham
    @vietlongpham 3 місяці тому +1

    I never thought I could use another dimension like that 😮

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому

      @@vietlongpham there r lots of ways to abuse dimensions 😈

  • @hasantopcu556
    @hasantopcu556 3 місяці тому +7

    yoooo we got 3 videos in 3 days 🔥

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +5

      sometimes im in the mood

  • @RipVanFish09
    @RipVanFish09 3 місяці тому

    This gives me some fun ideas

  • @andrew_9706
    @andrew_9706 2 місяці тому

    Can you make a video showing what sites and programs you use to work with datapacks? Like, vscode plugins and etc.
    And hey! I appreciate your work❤ you give me inspiration and motivation to create my own ideas.
    Keep working bro
    (srry if bad English😅)

    • @Cl0udWolf
      @Cl0udWolf  2 місяці тому +1

      @@andrew_9706 ya I could go over a few things, I’m not the best to ask about this stuff cause I don’t use that many resources or other people’s stuff

    • @andrew_9706
      @andrew_9706 2 місяці тому

      @@Cl0udWolf not a problem, It's always good to have different options when you need them.

  • @RoarkCats
    @RoarkCats 3 місяці тому

    I like your dimension method of running the command at each position, very creative
    Personally would probably just iterate over the area, but that was certainly a clever cheat

  • @dinoksettid
    @dinoksettid Місяць тому

    Im having trouble getting the block_display entity to show anything. My get.mcfunction shows a warning that it cant find the loot table blockstate:get. When I open the get.json under the loot_table folder, a bunch of errors pop up about {"max":"#"} expecting a string. Not sure if that related but I could really use your help! Sweet tutorials btw

  • @blueapple2428
    @blueapple2428 14 днів тому

    how to do this like upside town. like make it to change block display to regular blocks

    • @Cl0udWolf
      @Cl0udWolf  14 днів тому

      @@blueapple2428 you would use a macro function like /setblock $(name)

  • @avgplayer591
    @avgplayer591 3 місяці тому +2

    No way what

  • @gustavo8338
    @gustavo8338 3 місяці тому +1

    wOW impressionante.

  • @commander6432
    @commander6432 3 місяці тому

    cant you just sort of make a variable with the scoreboard. for example
    execute if block 0 0 0 bedrock run scoreboard add bedrock 1 (i dont know the commands out of my head, this is just to give you a idea of what i mean)
    and then
    execute if score bedrock = 1 run summon display_block bla bla bla

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +2

      @@commander6432 there are over 2000 blocks in the game and over 15,000 block states (red stone on vs off etc) so u would need over 15,000 block check commands. I did what you suggested in the past using block tags and a binary tree to make it about 21 commands for normal blocks but about 300 commands for noteblocks. BlockState is way better since all of it is handled by a loot table, meaning 1 command and less files and it has better performance than 21 commands

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +1

      @@commander6432 tldr every way to do this would require u test for every block in the game and every combination of block state. Checking for blocks in predicates / json files is more efficient than the execute if block command

  • @mizab8796
    @mizab8796 3 місяці тому

    I didn't understand the dimensions thing? Why we can't just place the command block in the overworld?

    • @lodewijk.
      @lodewijk. 3 місяці тому

      By having the command blocks be at the same coordinates as the blocks you want to convert, you don’t have to do any finagling with relative coordinates- it can just check for ~ ~ ~

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +1

      No issues with overwriting blocks or having a fixed location they go to, and no lighting updates

    • @dadlh6394
      @dadlh6394 Місяць тому

      ​@@Cl0udWolfis there a way to change the block to another and then return it? Like temporary setting the block to concrete and then returning it to a previous state

    • @Cl0udWolf
      @Cl0udWolf  Місяць тому

      @@dadlh6394 do you mean the physical block or the display?

    • @dadlh6394
      @dadlh6394 Місяць тому

      @@Cl0udWolf physical

  • @김다영-d7e
    @김다영-d7e 3 місяці тому

    How to make tiny version?

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому

      @@김다영-d7e I cut out my discussion on it so the video wouldn’t be too long. You need to change the scale of the displays but then change the translation based on their x y z offset which you need to calculate based off of the game’s block tick execution order. Each display add 1 to a counter and give it that score. Then you need to convert index in 1D to 3D cords based off the size of the structure. Then the resulting x y z u put on the translation and multiply by the scale. So if the original x y z is 2,2,2 and u make it 1/2 size the new xyz is 1,1,1

  • @rame.
    @rame. 2 місяці тому

    yeh 📝

  • @matousdanko2074
    @matousdanko2074 3 місяці тому

    ua-cam.com/video/YbclYBh9n8I/v-deo.htmlsi=DWVF8KWRDdhSlSTv
    Looks an awful lot like this video, just a lot less advanced xD

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +4

      @@matousdanko2074 someone shared that and the commands are super bad. Also this is all in game and doesn’t have any external tools

  • @theworfer27
    @theworfer27 3 місяці тому

    Bruh ur copying me I just did that in that omg

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +4

      highly doubt you did it in 3 commands, like here

    • @theworfer27
      @theworfer27 3 місяці тому

      @@Cl0udWolf Its a lot more and a lot worse lol

    • @Cl0udWolf
      @Cl0udWolf  3 місяці тому +6

      @@theworfer27 most of anything I could post has been done before, I just try to do it either the best way or in an interesting way

    • @theworfer27
      @theworfer27 3 місяці тому

      @@Cl0udWolf I know im just messin

    • @echo_z319
      @echo_z319 3 місяці тому

      @@theworfer27 ...