I made a skript so I can create items for my server quicker, but for some emojis, like the pickaxe and dagger emoji, it adds this little box next to it, that is like "vs 16" and it does that whenever you put the emoji in minecraft, so I the skript is create it just fine, but it has the little "vs 16" box, any idea how to fix?
Code:
command /createitem [<text>] [<number>] [<number>]:
aliases: /ci, /createi, /citem
permission: op
trigger:
if arg-1 is "pick":
if player's tool is not air:
if arg-2 is set:
if arg-3 is set:
set {eAmount} to arg-2
set {foAmount} to arg-3
add "FFF⛏ &f&lEfficiency: &a+%{eAmount}%" to lore of player's tool
wait 3 ticks
add "&a &f&lFortune: &a+%{foAmount}%" to lore of player's tool
wait 3 ticks
add "&d &f&lTelekinesis" to lore of player's tool
wait 3 ticks
add "&c &f&lSmelt" to lore of player's tool
send "&eSuccessfully added all enchantments to your pickaxe!"
else:
send "&cIncorrect format, please do /ci help for more information."
else if arg-1 is "sword":
if player's tool is not air:
if arg-2 is set:
if arg-3 is set:
set {sAmount} to arg-2
set {fiAmount} to arg-3
add "&c️ &f&lSharpness: &a+%{sAmount}%" to lore of player's tool
wait 3 ticks
add "&c &f&lFire Aspect: &a+%{fiAmount}%" to lore of player's tool
send "&eSuccessfully added all enchantments to your sword!"
else:
send "&cIncorrect format, please do /ci help for more information."
else if arg-1 is "armor":
if player's tool is not air:
if arg-2 is set:
if arg-3 is set:
set {pAmount} to arg-2
set {tAmount} to arg-3
add "&c❤️ &f&lProtection: &a+%{pAmount}%" to lore of player's tool
wait 3 ticks
add "&c &f&lThorns: &a+%{tAmount}%" to lore of player's tool
send "&eSuccessfully added all enchantments to your armor!"
else:
send "&cIncorrect format, please do /ci help for more information."