Aujourd'hui j'ai voulu créer un Scoreboard en fonction du grade sur le serveur avec les permissions (vous allez vite comprendre), et j'ai fait ceci pour chaque grade...le probleme est quand je reload j'ai 170 errors (avec des tabulations "expected 0 tabs, but found 2 tabs"), ils disent que je doit en avoir Zero et j'en suis sur qu'il en faut.
Je vous remercie d'avance pour votre aide !
(coter des addons j'ai tous logiquement)
Voici les ressources :
[spoiler=CONSOLE (9 errors)]
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: display board named "&3&l--[ &b&lLosprisia &3&l]--" to player ([sKRIPT] _ SCOREBOARD.sk, line 15: display board named "&3&l--[ &b&lLosprisia &3&l]--" to player')
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: make score "&f&lRank : &2%{RankDisplay.%uuid of player%}%" in board of player to 6 ([sKRIPT] _ SCOREBOARD.sk, line 16: make score "&f&lRank : &2%{RankDisplay.%uuid of player%}%" in board of player to 6')
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: make score "&f&lMoney : &aVariable money" in board of player to 5 ([sKRIPT] _ SCOREBOARD.sk, line 17: make score "&f&lMoney : &aVariable money" in board of player to 5')
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: make score "&f&lLevel : &aCreer la variable lvl" in board of player to 4 ([sKRIPT] _ SCOREBOARD.sk, line 18: make score "&f&lLevel : &aCreer la variable lvl" in board of player to 4')
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: make score " " in board of player to 3 ([sKRIPT] _ SCOREBOARD.sk, line 19: make score " " in board of player to 3')
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: make score "&f&lReward : &cVariable&a/10" in board of player to 2 ([sKRIPT] _ SCOREBOARD.sk, line 20: make score "&f&lReward : &cVariable&a/10" in board of player to 2')
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: make score " " in board of player to 1 ([sKRIPT] _ SCOREBOARD.sk, line 21: make score " " in board of player to 1')
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: make score "&f&lJoueurs : &aNbr player&e/120" in board of player to 0 ([sKRIPT] _ SCOREBOARD.sk, line 22: make score "&f&lJoueurs : &aNbr player&e/120" in board of player to 0')
05.06 10:54:00 [server] ERROR Can't understand this condition/effect: move display of players to sidebar ([sKRIPT] _ SCOREBOARD.sk, line 23: move display of players to sidebar')
05.06 10:54:00 [server] INFO [skript] Encountered 9 errors while reloading [sKRIPT] _ SCOREBOARD.sk!
[spoiler=Skript]
#- NOM DU SERVUER
#- ESPACE
#- RANG
#- ARGENT
#- LEVEL (en fonction du temps de la connection sur le serveur)
#- ESPACE
#- REWARD TROUVER
#- ESPACE
#- NOMBRE DE JOUEUR
command /los.scoreboard:
permission: los.scoreboard
permission message: &c&lSi ce message s'affiche toutes les minutes merci de prévenir un Administrateur !
trigger:
display board named "&3&l--[ &b&lLosprisia &3&l]--" to player
make score "&f&lRank : &2%{RankDisplay.%uuid of player%}%" in board of player to 6
make score "&f&lMoney : &aVariable money" in board of player to 5
make score "&f&lLevel : &aCreer la variable lvl" in board of player to 4
make score " " in board of player to 3
make score "&f&lReward : &cVariable&a/10" in board of player to 2
make score " " in board of player to 1
make score "&f&lJoueurs : &aNbr player&e/120" in board of player to 0
move display of players to sidebar
every 10 second:
make all players execute command "/los.scoreboard"
on join:
if player is "Fryver_" or "Traatinoh" or "JeTeRushEnBikini":
set {RankDisplay.%uuid of player%} to "&c&lOwner"
if player is "XTReMxLogik":
set {RankDisplay.%uuid of player%} to "&c&lCo-Owner"
if player has permission "chat.builder:":
set {RankDisplay.%uuid of player%} to "&2Builder"
if player has permission "chat.buildertest":
set {RankDisplay.%uuid of player%} to "&7[TEST] &2Builder"
if player has permission "chat.dev":
set {RankDisplay.%uuid of player%} to "&bDéveloppeur"
if player has permission "chat.devtest":
set {RankDisplay.%uuid of player%} to "&7[TEST] &bDéveloppeur"
if player has permission "chat.mod":
set {RankDisplay.%uuid of player%} to "&6Modérateur"
if player has permission "chat.mod+":
set {RankDisplay.%uuid of player%} to "&6&lModérateur+"
if player has permission "chat.hof":
set {RankDisplay.%uuid of player%} to "&8Hall Of Famer"
if player has permission "chat.minivip":
set {RankDisplay.%uuid of player%} to "&bMINI &9VIP"
if player has permission "chat.vip":
set {RankDisplay.%uuid of player%} to "&9VIP"
if player has permission "chat.vip+":
set {RankDisplay.%uuid of player%} to "&9VIP&6+"
if player has permission "chat.megavip":
set {RankDisplay.%uuid of player%} to "&cMEGA &9VIP"
if player has permission "youtubeur":
set {RankDisplay.%uuid of player%} to "&f&lYou&c&lTubeur"
if player has permission "megayoutubeur":
set {RankDisplay.%uuid of player%} to "&4&lMEGA &f&lYou&c&lTubeur"
if player has permission "chat.devweb":
set {RankDisplay.%uuid of player%} to "&bDéveloppeur WEB"
else:
set {RankDisplay.%uuid of player%} to "&7Joueur"
Nous avons placé des cookies sur votre appareil pour aider à améliorer ce site. Vous pouvez choisir d’ajuster vos paramètres de cookie, sinon nous supposerons que vous êtes d’accord pour continuer.
Question
XTReMxLogik
Bonjour, bonsoir
Aujourd'hui j'ai voulu créer un Scoreboard en fonction du grade sur le serveur avec les permissions (vous allez vite comprendre), et j'ai fait ceci pour chaque grade...le probleme est quand je reload j'ai 170 errors (avec des tabulations "expected 0 tabs, but found 2 tabs"), ils disent que je doit en avoir Zero et j'en suis sur qu'il en faut.
Je vous remercie d'avance pour votre aide !
(coter des addons j'ai tous logiquement)
Voici les ressources :
[spoiler=CONSOLE (9 errors)]
[spoiler=Skript]
25 réponses à cette question
Messages recommandés