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!
You can always check out our Wiki for downloads and any other information about 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
HEY... you have been asked multiple times by staff.... if you aren't going to contribute to the community don't reply. You dont need to go onto multiple threads asking people to mark them as solved. Especially if you have not provided any input!If your issue has been resolved, please flag this thread as SOLVED.
Please don't revive month(s) old posts, since people may get caught in the crossfire of you sending that message, and they won't get helpIf your issue has been resolved, please flag this thread as SOLVED.
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
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
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 @Ofuscode_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%"