ItemsAdder Wiki
โ Addons
๐ More Plugins
โค๏ธ Donate
Searchโฆ
English
๐
Welcome
โค
Donation - Support my work
โ
First install
โ
Frequently asked questions
๐
Plugin usage
Languages
๐ฅ
Commands
๐
Permissions
โ
Important notes
๐
Tips for fastest usage
๐ท
Resourcepack hosting
๐จ
Adding content
โน
Basic concepts
โ
Example items
๐
Item properties
๐ณ
Recipes
Translation
๐
Loots
๐
Worlds populators
๐ณ
Trees populators
๐
Surface populators
๐ชจ
Cave decorators
๐ผ
Font Images
๐
Sounds
๐ฅท
Armors
๐
HUDs
Creating HUDs
Trigger value change
GUIs
๐ช
Furniture
โ
Fonts
๐
Player Emotes
๐
Entities
โน
Items tooltips
2D icons for blocks/furniture
Animated titles
๐
Ranks textures (tags)
Minecraft translation files
๐จ
Colored models
Custom NBT
โ
Optifine only features
๐
Recipes menu
๐พ
Export namespace
๐
Merge resourcepacks
PAPI placeholders
Custom PlayerStats
๐จ
Protect resourcepack from unzip
Hex colored texts (1.16+)
๐จ
Minecraft Style Guide
โ
Resourcepack prompt message (1.17+)
Text Effects (1.17+)
Scoreboard
๐
Files editor
๐ฝ
Addons/resources
๐น
Videos by users
โ
Compatibility with other plugins
โ
Contribute
๐ป
Developers
โ
Java API
๐
Skript API
โข
Branding
๐
Other
๐
Support
๐ฅ
Cheap Minecraft Hosting
โก
Optimize Minecraft client
OLD
Old guides
Deprecated
Powered By
GitBook
๐
HUDs
In order to create custom HUDs you have 2 examples provided in ItemsAdder and they make use of every feature available.
These two HUDs are the mana bar and the thirst bar. You can find them in the
realcraft
and in the
magiccraft
namespaces.
Disable/enable huds in worlds
You can easily disable/enable huds in some worlds, here some examples:
Enable in all worlds
To enable them in all worlds you just have to avoid entering any world in the list, don't write the property at all.
1
huds
:
2
thirst_bar
:
3
enabled
:
true
Copied!
Enable thirst in all worlds but not in world_the_end
1
huds
:
2
thirst_bar
:
3
enabled
:
true
4
worlds
:
5
-
"!world_the_end"
Copied!
Notice the
!
in front of the world name. (It's very important to use the
" "
characters or plugin won't work (yml bug).
Enable thirst in all worlds of name which starts with
world_
or
adventure
1
huds
:
2
thirst_bar
:
3
enabled
:
true
4
worlds
:
5
-
"world_*
6
-
"adventure*
Copied!
Notice the
*
at the end, this means "any". (keep in mind that this works only at the end of the name)
Previous
Texture
Next
Creating HUDs
Last modified
4mo ago
Copy link
Edit on GitHub
Contents
Disable/enable huds in worlds
Enable in all worlds
Enable thirst in all worlds but not in world_the_end
Enable thirst in all worlds of name which starts with world_ or adventure