Sidebar

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

sagp15

Member
Jun 16, 2017
22
1
0
22
Hello everyone,

I'm doing a project with a scoreboard and this has to be compatible with version 1.7. I would like to know if there is any Addon that I can use to make it.

I have tried using SkRayFall but it is not compatible with the version.
 
Last edited:
Here's an old code that used to work perfectly on my old server. I recommend using featherboards, but if you can't then here tried this, like I said it's old code that used to work, not sure if it would work same for you.

code_language.skript:
on join:
    while player is online:
        wipe player's sidebar
        set name of sidebar of player to "&c&lserver-name"
        set score "&e&lWelcome to &6server-name&e!" in sidebar of player to 15
        set score "&fTS3: &bts3.server-name.com" in sidebar of player to 14
        set score "&fWebsite: &bserver-name.com" in sidebar of player to 13
        set score "&1" in sidebar of player to 12
        set score "&a&lOnline" in sidebar of player to 11
        set score "&f%amount of players%" in sidebar of player to 10
        set score "&2"  in sidebar of player to 9
        set score "&9&lBalance" in sidebar of player to 8
        set score "&f%player's balance%" in sidebar of player to 7
        set score "&3"  in sidebar of player to 6
        set score "&d&lPING" in sidebar of player to 5
        set score "&f%player's ping%ms" in sidebar of player to 4
        set score "&f----------------" in sidebar of player to 3
        wait 17 ticks
 
Here's an old code that used to work perfectly on my old server. I recommend using featherboards, but if you can't then here tried this, like I said it's old code that used to work, not sure if it would work same for you.

code_language.skript:
on join:
    while player is online:
        wipe player's sidebar
        set name of sidebar of player to "&c&lserver-name"
        set score "&e&lWelcome to &6server-name&e!" in sidebar of player to 15
        set score "&fTS3: &bts3.server-name.com" in sidebar of player to 14
        set score "&fWebsite: &bserver-name.com" in sidebar of player to 13
        set score "&1" in sidebar of player to 12
        set score "&a&lOnline" in sidebar of player to 11
        set score "&f%amount of players%" in sidebar of player to 10
        set score "&2"  in sidebar of player to 9
        set score "&9&lBalance" in sidebar of player to 8
        set score "&f%player's balance%" in sidebar of player to 7
        set score "&3"  in sidebar of player to 6
        set score "&d&lPING" in sidebar of player to 5
        set score "&f%player's ping%ms" in sidebar of player to 4
        set score "&f----------------" in sidebar of player to 3
        wait 17 ticks

It doesn't work
 
Have you tried Skellett scoreboards? Im not sure if they work on 1.7... you might have a lot of trouble making things work on a server software that was discontinued 4 years ago
 
Have you tried Skellett scoreboards? Im not sure if they work on 1.7... you might have a lot of trouble making things work on a server software that was discontinued 4 years ago

Could you show me an example of how to make a scoreboard with Skellet, I have no knowledge of this addon
 
Could you show me an example of how to make a scoreboard with Skellet, I have no knowledge of this addon
code_language.skript:
on join:

  create a new stylish scoreboard named "%player%"

  set title of stylish scoreboard "%player%" to "&6&lExample"

  create a new id based score "%player%-9" with text "a9" slot 9 for stylish scoreboard "%player%"
  create a new id based score "%player%-8" with text "a8" slot 8 for stylish scoreboard "%player%"
  create a new id based score "%player%-7" with text "a7" slot 7 for stylish scoreboard "%player%"
  create a new id based score "%player%-6" with text "a6" slot 6 for stylish scoreboard "%player%"
  create a new id based score "%player%-5" with text "a5" slot 5 for stylish scoreboard "%player%"
  create a new id based score "%player%-4" with text "a4" slot 4 for stylish scoreboard "%player%"
  create a new id based score "%player%-3" with text "a3" slot 3 for stylish scoreboard "%player%"
  create a new id based score "%player%-2" with text "a2" slot 2 for stylish scoreboard "%player%"
  create a new id based score "%player%-1" with text "a1" slot 1 for stylish scoreboard "%player%"

  set stylish scoreboard of player to "%player%"

  while player is online:

    set the text of id "%player%-1" to "&7&m--------------------"
    set the text of id "%player%-2" to "we"
    set the text of id "%player%-3" to "need"
    set the text of id "%player%-4" to "a"
    set the text of id "%player%-5" to "better"
    set the text of id "%player%-6" to "skript"
    set the text of id "%player%-7" to "scoreboard"
    set the text of id "%player%-8" to "addon"
    set the text of id "%player%-9" to "&7&m --------------------"

    wait 1 second

on disconnect:

  reset stylish scoreboard of player

  delete stylish scoreboard named "%player%"
from @Ofus
 
code_language.skript:
on join:

  create a new stylish scoreboard named "%player%"

  set title of stylish scoreboard "%player%" to "&6&lExample"

  create a new id based score "%player%-9" with text "a9" slot 9 for stylish scoreboard "%player%"
  create a new id based score "%player%-8" with text "a8" slot 8 for stylish scoreboard "%player%"
  create a new id based score "%player%-7" with text "a7" slot 7 for stylish scoreboard "%player%"
  create a new id based score "%player%-6" with text "a6" slot 6 for stylish scoreboard "%player%"
  create a new id based score "%player%-5" with text "a5" slot 5 for stylish scoreboard "%player%"
  create a new id based score "%player%-4" with text "a4" slot 4 for stylish scoreboard "%player%"
  create a new id based score "%player%-3" with text "a3" slot 3 for stylish scoreboard "%player%"
  create a new id based score "%player%-2" with text "a2" slot 2 for stylish scoreboard "%player%"
  create a new id based score "%player%-1" with text "a1" slot 1 for stylish scoreboard "%player%"

  set stylish scoreboard of player to "%player%"

  while player is online:

    set the text of id "%player%-1" to "&7&m--------------------"
    set the text of id "%player%-2" to "we"
    set the text of id "%player%-3" to "need"
    set the text of id "%player%-4" to "a"
    set the text of id "%player%-5" to "better"
    set the text of id "%player%-6" to "skript"
    set the text of id "%player%-7" to "scoreboard"
    set the text of id "%player%-8" to "addon"
    set the text of id "%player%-9" to "&7&m --------------------"

    wait 1 second

on disconnect:

  reset stylish scoreboard of player

  delete stylish scoreboard named "%player%"
from @Ofus

aw you're a cutie
 
Status
Not open for further replies.