Skip to content

A Minecraft datapack that allows to parse player head data into a useable format

License

Notifications You must be signed in to change notification settings

5uso/Head-Parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Head-Parser (deprecated)

A Minecraft datapack that allows to parse player head data into a useable format. It has now been merged into the general string parser.

How to use

data modify storage suso.str_heads:io in set value {string:"",get:[GET]}
data modify storage suso.str_heads:io in.string set from block [COORDS] SkullOwner.Properties.textures[0].Value
data modify storage suso.str_heads:io in.callback set value 'tellraw @a {"nbt":"out","storage":"suso.str_heads:io","interpret":true}'
function suso.str_heads:call

Remember that in 1.17+ head data is not loaded immediately when they are placed, so you must make sure to arbitrarily wait for an unspecified amount of time before attempting to copy the b64 string into the input storage (polling with if data block [COORDS] SkullOwner.Properties.textures[0].Value should do the trick).

The get value is an int that specifies which parts of the data you're requesting. You can obtain it by multiplying the values of the elements you want:

time:   2 (Unix timestamp)
id:     3 (Player UUID)
name:   5 (Player name)
sig:    7 (Signature required? 1 or 0)
skin:  11 (Skin url, only the hash part)
model: 13 (Model: 0 for Steve and 1 for Alex)
cape:  17 (Cape url, only the hash part)

These are returned as part of an nbt object: storage suso.str_heads:io out.

About

A Minecraft datapack that allows to parse player head data into a useable format

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published