Solved Tab Skripts

  • 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.
Apr 6, 2019
21
0
0
19
THIS IS NOT A REQUEST

I'm a skripter and need to create a TabList skript. I checked the resources, needs an addon that I can't get. Checked the docs, couldn't find anything. A bit of help here?
 
THIS IS NOT A REQUEST

I'm a skripter and need to create a TabList skript. I checked the resources, needs an addon that I can't get. Checked the docs, couldn't find anything. A bit of help here?
TabList? It is simple to do:
code_language.skript:
on join:
    while player is online:
        set {_header} to "The Header text here"
        set {_footer} to "and %new line%Footer text here"
        set tab header to "%{_header}%" and footer to "%{_footer}%" for player
        wait 1 second
From what I understood, this is what you want, right?
 
TabList? It is simple to do:
code_language.skript:
on join:
    while player is online:
        set {_header} to "The Header text here"
        set {_footer} to "and %new line%Footer text here"
        set tab header to "%{_header}%" and footer to "%{_footer}%" for player
        wait 1 second
From what I understood, this is what you want, right?
Yes. Thank you. Also, I'm sorry if I'm starting to get annoying, but how do I do prefixes?
 
Would
Code:
player has permission "staff.owner"
    set %player's prefix% to "&c&lOWNER"
You needed to remove the percentages.

The percentages only been used in texts.
[doublepost=1556840249,1556840125][/doublepost]If it is to show the prefixes in the tabulator, put something like this:
code_language.skript:
on join:
    while player is online:
        set {_header} to "Server name%new line%"
        set {_footer} to "%new line%Rank: %player's prefix%"
        set tab header to "%{_header}%" and footer to "%{_footer}%" for player
        wait 1 second
[doublepost=1556840373][/doublepost]
Would
Code:
player has permission "staff.owner"
    set %player's prefix% to "&c&lOWNER"
If you need help, contact me at my discord couger44#4342, since this post is already marked as solved.
 
TabList? It is simple to do:
code_language.skript:
on join:
    while player is online:
        set {_header} to "The Header text here"
        set {_footer} to "and %new line%Footer text here"
        set tab header to "%{_header}%" and footer to "%{_footer}%" for player
        wait 1 second
From what I understood, this is what you want, right?

I think you should remove "%%" in {_header} and {_footer} to evade some problems because {_header} and {_footer} are texts before.

code_language.skript:
on join:
    while player is online:
        set {_header} to "The Header text here"
        set {_footer} to "and %new line%Footer text here"
        set tab header to {_header} and footer to {_footer} for player
        wait 1 second
 
  • Like
Reactions: Krause
Status
Not open for further replies.