Some users request additions.
Iconmenu's :
Added the support for custom playerhead texture to be used inside the ICON_MENU command types.
Place the texture "code" instead of the player name to get what desidered.
Code (YAML):
textured_head_iconmenu:
command
: /texturedhead
type
: ICON_MENU
iconmenu_title
: '&cTextured heads example'
iconmenu_size
: 18
iconmenu_commands
:
-
"0:PLAYER_HEAD%eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzY2NGU1NGU3NjI4N2UzZmUyYmQzOTdjMDk4ZWU3YTRiZDBmOWM4OGY5MzlmZGU4YmFiNzhjMzI3MWE0NjE4ZiJ9fX0=:0:%stayopen%:Discord Server:link"
-
"9:PLAYER_HEAD%eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDRiOThlODQyZTMyNzMzYTdlNzVlMDJjZDU5NDRmYWNjNTAyNzg1ZTE1ZTE2ZWZiN2FkMGJiNDZhZGZmMTVmNiJ9fX0=:0:%stayopen%:Youtube Channel:link"
-
"17:PLAYER_HEAD%eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWQ5YzkzZjhiOWYyZjhmOTFhYTQzNzc1NTFjMjczODAwMmE3ODgxNmQ2MTJmMzlmMTQyZmM5MWEzZDcxM2FkIn19fQ==:0:%close%:Go Back:go back"
iconmenu_autofill
: WHITE_STAINED_GLASS_PANE
Dynamic Iconmenu addition:
It's now possible put multiple commands on the same slot.
Code (YAML):
- '1:ITEM_1<next>ITEM_2:0:/COMMAND1<next>/COMMAND_2:TITLE_1<next>TITLE_2:DESCRIPTION_1<next>DESCRIPTION_2'
Fixed $text$ in ICON_MENU not working.
PlayerData /mycmd-playerdata command :
You can disable the output of the "edit" by adding _silent suffix to the operation you're doing. Example /mycmd-playerdata add_silent PlayerName coins 1 , or remove_silent ecc...
Added "disable_on_length" command field. This one allow's you to disable MyCommand is the length of arguments typed in the prompt is higher than the set number
Example, with disable_on_length: 1 , and i have the /ignore command, typing only "/ignore", mycommand will execute the command normally. If i type "/ignore <anything>", mycommand will not get triggered, and the original command ignore will run.