a bunch of variables stopped working on restart

  • 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 community!

    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.

Doggo

Member
May 13, 2021
1
0
1
im not sure what happened, i just installed protocollib for libsdisguise, restarted server and stuff stopped working. the main issue is the %player% or player's thing in skript that stopped working, a lot of my skripts depended on that so if i can know the issue that'd be nice. heres what my scoreboard looks like now:https://gyazo.com/a0a49d91ba085321624e3f5492d3bfbf
and heres the code of it:
Code:
on join:
 
  create a new stylish scoreboard named "%player%"
 
  set title of stylish scoreboard "%player%" to "&6&lBoss Grind Sim"
  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 "&7&oBossGrind.minehut.gg"
    set the text of id "%player%-3" to "&a"
    set the text of id "%player%-4" to "Rank: &7%player's group%"
    set the text of id "%player%-5" to "&e "
    set the text of id "%player%-6" to "Balance: &7%player's money%"
    set the text of id "%player%-7" to "&f "
    set the text of id "%player%-8" to "Player:&7 %player's name%"
    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%"


NVM I SOLVED IT! SKVAULTS IS BUGGED AND BROKE EVERY
 
Last edited:
Status
Not open for further replies.