Item maker

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

LeeifMR

Member
Oct 2, 2024
24
0
1
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 "&#007FFF⛏ &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."
{447F8295-D16D-49BF-AFA5-F963885C3055}.png