Problem with SkRayfall Scoreboard

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

SamDFL

New Member
Mar 2, 2018
7
0
0
25
Skript Version: Skript (Latest Version)
Skript Author: SamDFL
Minecraft Version: 1.8.9

So I'm trying to make a scoreboard for my UHC server while players are in the lobby. It shows amount of players online, host's name, team size and the server's twitter. This was working earlier, but suddenly it just stopped working out of no-where. I haven't changed any code at all since it was working, any help? Thanks!

---

Full Code:
code_language.skript:
[/B]
command /sethost <player>:
    permission: uhc.host
    usage: /sethost <host>
    trigger:
        send "&aSet the host to &c%arg 1%&a!"       
        set {name.host} to arg-1
        stop trigger
           
command /setteamsize <text>:
    permission: uhc.host
    usage: /setteamsize <team size>
    trigger:
        send "&aSet the team size to &c%arg 1%&a!"   
        set {team.size} to arg-1
        stop trigger
   
command /hubsidebar:
    permission: uhc.host
    trigger:
        message "&aSidebar has been updated!"
        set {HubSidebar} to true
        stop trigger
       
every second:
    if {HubSidebar} is true:
        loop all players:
            wipe loop-player's sidebar
            set name of sidebar of loop-player to "&e&lLemon&4&lUHC"
            set score "&aPlayers Online: &f%amount of players%" in sidebar of loop-player to 6
            set score "&a" in sidebar of loop-player to 5
            set score "&aHost: &f%{name.host}%" in sidebar of loop-player to 4
            set score "&aTeam Size: &f%{team.size}%" in sidebar of loop-player to 3
            set score "&a" in sidebar of loop-player to 2
            set score "&6@LemonUHCNetwork" in sidebar of loop-player to 1[B]

Errors on Reload: None

Console Errors: None

Addons using (including versions):
SkRayfall (Latest version)

Troubleshooting:

Have you tried searching the docs? Yes
Have you tried searching the forums? Yes
What other methods have you tried to fix it? Not much, as I can't see what else I can do.
 
Status
Not open for further replies.