Skellet Scoreboard Not Working

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

ConLudi

Member
Jan 23, 2020
43
0
0
45
So I was testing out Skellet scoreboards, and when I do the code below, and I typed "/testing", it says "Unknown Command"! I also couldn't make my own scoreboard which I can give the code for as well when asked

Code:
function animate(p: player):
    add "&a", "&b", "&c", "&d", "&e", "&1", "&2", "&3", "&4", "&5", "&6", "&7", "&8", "&9" and "&f" to {_d::*}
    set {_t} to "This is some text made for testing yeeeeeeeeeeeeeee!"
    set {_num} to a random integer out of {list::*}
    remove {_num} from {list::*}
    #set {_time} to "%random integer between 1 and 3% ticks" parsed as timespan
    loop (the length of {_t}) times:
        wait a tick
        set {_s} to subtext of {_t} from characters loop-number to (loop-number + 32)
        set the text of id "%{_p}%Slot%{_num}%" to "%{_d::%{_num}%}%&6%{_s}%"
command /testing:
    trigger:     
        add "&a", "&b", "&c", "&d", "&e", "&1", "&2", "&3", "&4", "&5", "&6", "&7", "&8", "&9" and "&f" to {_d::*}
        if stylish scoreboard "T-%player%" does not exist:
            create new stylish scoreboard named "T-%player%"
            loop 15 times:
                if loop-number is not 15:
                    add loop-number to {list::*}
                create a new id based score "%player%Slot%loop-number%" with text "%{_d::%loop-number%}%" slot loop-number for stylish scoreboard "T-%player%"
        set title of stylish scoreboard "T-%player%" to "&a&lSkellett"
        set stylish scoreboard of player to "T-%player%"
        set the text of id "%player%Slot15" to "&a&lSkellett stylish scoreboards ftw"
        loop 50 times:
            animate(player)
            wait "%random integer between 1 and 10% ticks" parsed as timespan
        delete {list::*}
        wait a second
        message "done"
        loop 15 times:
            delete the id based score "%player%Slot%loop-number%" in stylish scoreboard "T-%player%"
        delete stylish scoreboard "T-%player%"
        loop 15 times:
            delete the id based score "%player%Slot%loop-number%" in stylish scoreboard "TEST-%player%"
        delete stylish scoreboard "TEST-%player%"
[doublepost=1597599155,1597514332][/doublepost]Bump
[doublepost=1597740940][/doublepost]Bump!
[doublepost=1597864452][/doublepost]Bummmp!
 
We can't do much without any info, have you put the skript file in the scripts folder? Have you reloaded the skript file? Also Check the logs for any errors.
 
Last edited:
Status
Not open for further replies.