Changing player's nametag with /disguise

  • 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!

Status
Not open for further replies.

OfficialLiovo

Member
Apr 29, 2017
16
1
0
23
Hi, so I've got this code, and as you can see, it changes the player's tab name to the disguised name, but I want it to also change the player's nametag to "&c&lDR1 %arg-1%". Any ideas?
code_language.skript:
command /disguise [<text>]:
    trigger:
        if {rank.%player%} is not "JrAdmin" or "Admin" or "Manager" or "Owner" or "Dev":
            send "&c&lPerms » &7You don't have permission!"
        else:
            if arg 1 is not set:
                if {server.disguised.%player%} is set:
                    reset the player's displayed skin
                    delete {server.disguised.%player%}
                    send "&9&lDisguise » &7You are no longer disguised."
                    rankLoad(player)
                else:
                    send "&9&lDisguise » &e/disguise <user>"
            if arg 1 is set:
                if {server.disguised.%player%} is set:
                    reset the player's displayed skin
                    delete {server.disguised.%player%}
                    send "&9&lDisguise » &7You are no longer disguised."
                else:
                    if arg 1 contains " ":
                        send "&9&lDisguise » &7A name has to be one word!"
                    else if the length of arg 1 is greater than 16:
                        send "&9&lDisguise » &7A name has to be under 16 chars!"
                    else:
                        open chest with 1 row named "&cDisguise System - Skins" to player
                        set {_steve} to "Steve" parsed as offline player
                        set {_alex} to "ShadowDanceYT" parsed as offline player
                        format slot 3 of player with {_steve}'s skull named "&a&lSTEVE" with lore "&7Disguise as &a%arg-1%&7 with the skin of &aSteve&7." to close then run [execute player command "/__set__skin__steve__ %arg-1%"]
                        format slot 5 of player with {_alex}'s skull named "&a&lALEX" with lore "&7Disguise as &a%arg-1%&7 with the skin of &aAlex&7." to close then run [execute player command "/__set__skin__alex__ %arg-1%"]                   
                        set player tab name to "&c&lDR1 &e%arg-1%"
 
Status
Not open for further replies.