Solved Change nametag and tab name

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

privatemethod

New Member
Jul 19, 2019
9
0
0
24
Hello,

I tried to change my nametag (the name above my head in minecraft) and it didn't work out..
Do you guys maybe know the issue?
Also I have set every staff member there tablist name to dark red, but it isn't all the way on top.
I want that every staff member is above the tablist and all the normal players down.

My code for now:

Code:
on join:
    if player has permission "staff":
        set player tab name to "&4%player%"
    else:
        set player tab name to "&7%player%"

every 1 second:
    loop all players:
        if loop-player has permission "staff":
            set loop-player tab name to "&4%loop-player%"
        else:
            set loop-player tab name to "&7%loop-player%"
 
Code:
on join:
   if player has permission ”staff”:
        set player’s tablist name to ”&4%player%”
    else:
        set player’s tablist name to ”&7%player%”

every 1 second:
        loop all players:
             if loop-player has permission "staff":
                   set loop-player tablist name to "&4%loop-player%"
               else:
                  set loop-player tablist name to "&7%loop-player%”
 
Code:
on join:
    if player has permission "staff":
        set player nametag to "&4%player%"
    else:
        set player nametag to "&7%player%"
 
every 1 second:
    loop all players:
        if loop-player has permission "staff":
            set loop-player nametag to "&4%loop-player%"
        else:
            set loop-player nametag to "&7%loop-player%"

  • Requires: MundoSK
 
Code:
on join:
    if player has permission "staff":
        set player nametag to "&4%player%"
    else:
        set player nametag to "&7%player%"
 
every 1 second:
    loop all players:
        if loop-player has permission "staff":
            set loop-player nametag to "&4%loop-player%"
        else:
            set loop-player nametag to "&7%loop-player%"

  • Requires: MundoSK
Didn't work..
[doublepost=1578582538,1578525205][/doublepost]
Code:
on join:
   if player has permission ”staff”:
        set player’s tablist name to ”&4%player%”
    else:
        set player’s tablist name to ”&7%player%”

every 1 second:
        loop all players:
             if loop-player has permission "staff":
                   set loop-player tablist name to "&4%loop-player%"
               else:
                  set loop-player tablist name to "&7%loop-player%”
That is not what I need. I name something to change my Nametag not my Tabname
 
Are you using MundoSK? what're you errors "didn't work" isn't very helpful
Popping Jayden's code into the Parser gives these errors:

Code:
Line 3: Can't understand this condition/effect: set player nametag to "&4%player%" (line 5: set player nametag to "&4%player%"') (The Parser doesn't support every syntax element.)

Line 5: Can't understand this condition/effect: set player nametag to "&7%player%" (line 8: set player nametag to "&7%player%"') (The Parser doesn't support every syntax element.)

Line 9: There's no loop that matches 'loop-player nametag' (script.sk, line 9: set loop-player nametag to "&4%loop-player%"')

Line 11: There's no loop that matches 'loop-player nametag' (script.sk, line 11: set loop-player nametag to "&7%loop-player%"')
 
I have a feeling that OP is making a Minehut server, considering the fact that he has the mental ability of someone whom uses Minehut and thinks it's the best.
If he is using a 1.15.1 skript plugin he is most likely making a Minehut server
 
Literally everyone has PL on their server, that's why I didn't include it.
You can't just diss the whole Minehut community, I know where you're coming from, but I've been with Minehut since it had less than 50 players a day on average, there are some really talented people there, and I don't mean with Skript, but with Java or art, or any of the sorts (Even one of the people who contributed to Skript the most uses Minehut). Now don't get me wrong ever since it gained popularity it's been getting a worse community on the day. idk, this isn't a spot for arguments, just putting my word out.
 
You can't just diss the whole Minehut community, I know where you're coming from, but I've been with Minehut since it had less than 50 players a day on average, there are some really talented people there, and I don't mean with Skript, but with Java or art, or any of the sorts (Even one of the people who contributed to Skript the most uses Minehut). Now don't get me wrong ever since it gained popularity it's been getting a worse community on the day. idk, this isn't a spot for arguments, just putting my word out.
You can't just make stuff up that is completely irrelevant.
 
Status
Not open for further replies.