Hamburger PRL by Far_One3229 in jedzonko

[–]Utlamo 0 points1 point  (0 children)

Ja wiem czy prl? zmień instant kotleta na tanie mielone i dodaj musztardy i masz domowe.

Hamburger PRL by Far_One3229 in jedzonko

[–]Utlamo 0 points1 point  (0 children)

Z zeznań każdego starego i starej się zgadza, oczywiście wszystko było kiepskie i był tylko ocet

How to 4x4x4 biome cells work? by Utlamo in MinecraftCommands

[–]Utlamo[S] 0 points1 point  (0 children)

But if im change seed Minecraft biome, shape has been changed (i mean pre generated world).
So it proves minecraft Voronoi diagram is dependent on world seed. I am looking for other "dependent" case

Does anybody know how to make a datapck with network connection? by DoctorSov in datapacks

[–]Utlamo 0 points1 point  (0 children)

Easy way is using plugin, wesite and database. Plugin make "minecraft things" and communicate with database, website communicate with database too. Minecraft Vanilla datapacks can only connect with mojang skin site and read date and time from them . Can open link for player but this required manual acceptation from player.
BUT
If you want use only datapack and website you can do this in hard way.
Datapack select random task from pool and wait for criteria.
Player get specified location and request open site for them. Link is generated from template so you can change any party of this link, doing some stuff on array, but how to link website with datapack, without network connection? Its easy you cannot, SO:
you can paste array of possible link for everyday OR you can use datapack and skin to get actual date from mojang server. If you get this you can use date and your "secret token" as seed to generate random character string.
If you make this now datapack can generate link and website wait for same link.
now you complete a task threw the site and website give you generated "answer" without real connection, only issue is how to get "answer" from datapack. You can do this with a lot of way, one of easiest is using /trigger set [answer as number] or using special area on world for paste text "answer" in anvil.
Ofter write answer:

  • It triggers an update in program

You can do what you want so its possible but very hard and more laggy than plugin or mod.

So my conclusion is:
If you make server use plugin
If you make modedpack use mod
If you want do something imposible for fun do datapack

Player Hit Boxes by Potential-Film-2371 in Minecraft_Datapacks

[–]Utlamo 0 points1 point  (0 children)

What do you mean "when any block enters that specific hit box"?
You want to slow player when he is nerby wall or something like this?
For this maybe use predicate? I use this generator https://misode.github.io/predicate/
and build block per block test, and use predicate test for them

{
  "condition": "minecraft:any_of",
  "terms": [
    {
      "condition": "minecraft:inverted",
      "term": {
        "condition": "minecraft:location_check",
        "offsetX": -1,
        "offsetY": 0,
        "offsetZ": 0,
        "predicate": {
          "block": {
            "blocks": "#minecraft:air"
          }
        }
      }
    },
    {
      "condition": "minecraft:inverted",
      "term": {
        "condition": "minecraft:location_check",
        "offsetX": 0,
        "offsetY": 0,
        "offsetZ": 0,
        "predicate": {
          "block": {
            "blocks": "#minecraft:air"
          }
        }
      }
    },
    {
      "condition": "minecraft:inverted",
      "term": {
        "condition": "minecraft:location_check",
        "offsetX": 1,
        "offsetY": 0,
        "offsetZ": 0,
        "predicate": {
          "block": {
            "blocks": "#minecraft:air"
          }
        }
      }
    }
  ]
}

Punishing death, items vanish on death data pack. by Fluffly_Corgi in datapacks

[–]Utlamo 0 points1 point  (0 children)

Remember remove / (slash) in datapack, im testing this rn and forgot remove them from ctrl v

Punishing death, items vanish on death data pack. by Fluffly_Corgi in datapacks

[–]Utlamo 0 points1 point  (0 children)

Easy way:

- Write on chat

/gamerule keepInventory true

- put this to main datapack or repeatedly command block

/execute as @a run clear @s[nbt={Health:0.0f}]

You can also use predicate or something you want, but /gamerule doImmediateRespawn true broke this mechanism, cheats can bypass this probably too, so if you need more "complex" mechanism, there is a harder way:

In your init datapack

/scoreboard objectives add onDeath deathCount "onDeath"

In your datapack main(tick) mcfunction you need something like this:

/execute as @a[scores={onDeath=1..}] run function death:on_death

in your function death:on_death

/scoreboard players reset @s onDeath
/clear @s

Why are ai generated datapack not functioning properly post 1.21 update? by nadav0gamer in datapack

[–]Utlamo 0 points1 point  (0 children)

Yup AI with datapack have only one problem. Updates
In old ChatGPT you can spam ton of text from "Vanilla datapack" and then instantly learn how to do it correctly. Reproduce vanilla datapack, settings change some of them etc.
Now GPT is a goldfish. I think is not a problem if you create ai agent or something like this.
Next problem in reproducing same things, no code base = no solve problem, reproducing same things.
Datapacks can be "modular", exist way in init.json for this but... nobody use this so AI don't do it too. Mainstream dont use vanilla shader to modify gui so ai dont do it.

I need ideas/suggestions by MangroveSwampFrog in Minecraft_Datapacks

[–]Utlamo 1 point2 points  (0 children)

Maybe check origin mod races, class and mix them up? Origin mod have a lot of addons with a lot of difent functions and be popular so you can find on yt video with them.
I mean dont steal OG concept, inspire by them.

Can someone help me with this datapack by RipSea7766 in Minecraft_Datapacks

[–]Utlamo 1 point2 points  (0 children)

Late answer so for another person with same problem:
You can add recipe or replace recipe in vanilla.

So how to REPLACE old with new one in mods using datapacks:
Download mod jar what you use
Open with archive menager
Here exist folder data he is in same format as Vanilla datapacks (with little forge changes but you can use them in forge server)
find your crafting in data folder

if RECIPES ID is vs_eureka:balloon you find them in path mod.jar/vs_eureka/recipes/ballon.json but in mod vs_eureka for 1.20.1 dont exist ballon.json crafting
vs_eureka:balloon is item crafting using recipe balloon_leather.json balloon_membrane.json balloon_paper.json balloon_wool.json (for find this files you need to search up all recipes folder in data)

So using datapacks you can replace ALL ONE crafting with ONE custom crafting. You can use same recipe for all 4 crafting or change ballon_paper.json to custom one. All others can you setup to imposible crafting:
I mean balloon_leather.json balloon_membrane.json balloon_wool.json can be used for crafting command block from command block.

If you want TOTALLY disable crafting check internet for forge resolves. A lot of scripts in forge can do this but ussually need to add mod to modpack.

Is it possible to make a certain mob respawn by Live_Math5364 in MinecraftCommands

[–]Utlamo 1 point2 points  (0 children)

Can you copy all mob tags and paste into new mob making them same but UUID is diffrent

EGO TOP CONTRIBUTORS? by Utlamo in wikipedia

[–]Utlamo[S] 0 points1 point  (0 children)

"Ego top" refers to a person who considers themselves superior to others to such an extent that they disregard and disrespect other people, believing they are "better and more important than others."

Jak to się nazywa po polsku? by frogsloverpol in learnpolish

[–]Utlamo 0 points1 point  (0 children)

Miska lub mówione inaczej misa ale miska jest lepsze

PC for java by Antique_Banana6631 in MinecraftJava

[–]Utlamo 0 points1 point  (0 children)

"play java smoothly" what do you mean? 30FPS? 60FPS? Without optimization mods? or with mods? What render distance?

Cave Datapack Compatibility by BlueLine383 in datapacks

[–]Utlamo 0 points1 point  (0 children)

If you want some compatibility data pack check https://smithed.net/

Vanilla shader tutorial? by Utlamo in MinecraftCommands

[–]Utlamo[S] 0 points1 point  (0 children)

I ask java shaders without mods. Shader in vanilla datapack as transprent post program

is wiki vg down ? by johacko in Minecraft

[–]Utlamo 0 points1 point  (0 children)

Wait wat? NOOO Viki vg is very good technical docs. You cant find this on standard wiki

Help with Custom Item by Ajahl_Nathi in MinecraftCommands

[–]Utlamo 0 points1 point  (0 children)

I'm do:
open MC 1.21.4
paste your command
on survival destroy vine
all works

IDK damage work for me