Aller au contenu
  • 0

GUI liste de joueurs avec possibilité de défi


Question

Posté(e)

Version de Minecraft : 1.11.2
Version de Skript : CustomSkriptVersion

Addons utilisés:  skDragon-0.14.0; Skellett-1.9.6b; SkQuery; SkRayFall; skript-yaml; SkStuff; SkUtilities.v.0.9.2

Type du skript : Gui défi

Description du script :

Bonjour,

Je fais appel à votre aide à tous, car j'ai quelques difficultés sur l'un de mes GUI. Même si Tuske est recommandé pour les GUI, je préfère rester sur SkQuery car je maîtrise mieux le sujet.

Je cherche si vous voulez un Gui, ou lorsque un joueur s'inscrit (le code d'inscription est déja créer), le joueur peut trouver les têtes des autres joueurs déja inscrit, et lorsqu'il exécute un "clique gauche", une invitation est envoyé aux joueurs.

Voici le début de mon code, ce qui ne fonctionne pas c'est l'envois d'invitation au joueur spécifié, par exemple je suis "Mick", je veux envoyé à "Hitman77600" une invitation, par le gui :

command /§brick <text>:
	trigger:
		if arg 1 is "load":
			set {BRICK.%player%} to player
			send "Exemple" to player
			give 1 of clay_bricks_block named "&9&lDémarrer &7( clique droit )" with lore "§fExemple" to slot 5 of player
		if arg 1 is "unload":
			delete {BRICK.%player%}
			send "&c&lExemple" to player
		if arg 1 is "salon":
			wait 4 ticks
			open chest with 6 rows named "§9&lSALON" to player
			wait 9 ticks
			set {_slot.brick} to 0
			set {_nb.brick} to 1
			loop all players:
				if {BRICK.%loop-player%} is set:
					if loop-player is online:
						add loop-player to {_bricks::*}
						wait 1 ticks
						send "%{_bricks::%{_nb.brick}%}%"
						set {_head} to "%loop-player%" parsed as offline player
						format slot {_slot.brick} of player with skull of {_head} named "&6%{_head}%" with lore "&2&lClique gauche pour proposez un jeu à %{_bricks::%{_nb.brick}%}%" to close then run [make player execute command "/§brickjeu %{_head}%"]
						add 1 to {_nb.brick}
						add 1 to {_slot.brick}
						

		
command /§brickjeu <player>:
	trigger:
		set player-arg to {_pari.%player%}
		loop {_bricks::*}:
			if player-arg is in {_bricks::*}:
				send "&eCoco" to player-arg
							

La commande /§brick est une commande directement utilisable via mon menu, que je n'ai pas insérer dans le code.

 

Je vous remercie pour votre temps et votre patience :)

Hitman

16 réponses à cette question

Messages recommandés

  • 0
Posté(e)

Le problème c'est qu'il n'y en a pas, je demande simplement un code pour ouvrir un coffre avec Tuske, qui affiche la tête des joueurs, et qui lorsque l'on fait un clique gauche cela envoie un message. Il n'y a pas de message d'erreur car je ne connais pas la fonction ou la condition pour trouver le joueur sur qui je clique dans mon menu :/.

  • 0
Posté(e) (modifié)
Command /test:
	trigger:
		open virtual chest inventory with 1 row named "Mon GUI" to player
		set {_s} to 0
		loop all players:
			format gui slot {_s} of player with loop-player's skull named "&6%loop-player%" to close then run player command "/message %loop-player%"
Command /message [<player>]:
	trigger:
		message "Salut %arg 1%, %player% t'envoie ce message avec le /message !" to arg 1
		message "Vous avez /message %arg 1%" to player

Tuto Tuske : Clique ici

Modifié par TitiLaPierre
  • 0
Posté(e)

Ton code à l'air d'être bon, mais j'ai cette erreur que cause Tuske qui empêche des joueurs non op à ouvrir des coffres :

[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[15:23:18] [Server thread/ERROR]: #!#! TuSKe's class com.github.tukenuke.tuske.effects.EffMakeDrop generated an exception while loading
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[15:23:18] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[15:23:18] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[15:23:18] [Server thread/ERROR]: #!#! Following plugins are probably related to this error in some way:
[15:23:18] [Server thread/ERROR]: #!#! TuSKe (github.com/Tuke-Nuke/TuSKe) 
[15:23:18] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[15:23:18] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[15:23:18] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[15:23:18] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[15:23:18] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it as Skript issue (url below)
[15:23:18] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/SkriptLang/Skript/issues (only if you know what you're doing!)
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! Stack trace:
[15:23:18] [Server thread/ERROR]: #!#! java.lang.NullPointerException
[15:23:18] [Server thread/ERROR]: #!#!     at com.github.tukenuke.tuske.effects.EffMakeDrop.<clinit>(EffMakeDrop.java:25)
[15:23:18] [Server thread/ERROR]: #!#!     at java.lang.Class.forName0(Native Method)
[15:23:18] [Server thread/ERROR]: #!#!     at java.lang.Class.forName(Unknown Source)
[15:23:18] [Server thread/ERROR]: #!#!     at ch.njol.skript.SkriptAddon.loadClasses(SkriptAddon.java:108)
[15:23:18] [Server thread/ERROR]: #!#!     at com.github.tukenuke.tuske.TuSKe.onEnable(TuSKe.java:100)
[15:23:18] [Server thread/ERROR]: #!#!     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:271)
[15:23:18] [Server thread/ERROR]: #!#!     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:337)
[15:23:18] [Server thread/ERROR]: #!#!     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:405)
[15:23:18] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_11_R1.CraftServer.enablePlugin(CraftServer.java:376)
[15:23:18] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_11_R1.CraftServer.enablePlugins(CraftServer.java:326)
[15:23:18] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_11_R1.MinecraftServer.t(MinecraftServer.java:421)
[15:23:18] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_11_R1.MinecraftServer.l(MinecraftServer.java:382)
[15:23:18] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_11_R1.MinecraftServer.a(MinecraftServer.java:337)
[15:23:18] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_11_R1.DedicatedServer.init(DedicatedServer.java:272)
[15:23:18] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_11_R1.MinecraftServer.run(MinecraftServer.java:544)
[15:23:18] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Unknown Source)
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! Version Information:
[15:23:18] [Server thread/ERROR]: #!#!   Skript: 2.2-dev36
[15:23:18] [Server thread/ERROR]: #!#!   Bukkit: 1.11.2-R0.1-SNAPSHOT
[15:23:18] [Server thread/ERROR]: #!#!   Minecraft: 1.11.2
[15:23:18] [Server thread/ERROR]: #!#!   Java: 1.8.0_211 (Java HotSpot(TM) 64-Bit Server VM 25.211-b12)
[15:23:18] [Server thread/ERROR]: #!#!   OS: Windows 10 amd64 10.0
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! Server platform: Spigot
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! Current node: null
[15:23:18] [Server thread/ERROR]: #!#! Current item: null
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! Thread: Server thread
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! Language: english
[15:23:18] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/ERROR]: #!#! End of Error.
[15:23:18] [Server thread/ERROR]: #!#! 
[15:23:18] [Server thread/INFO]: [TuSKe] Loaded 8 events, 12 conditions, 20 effects, 60 expressions and 0 types. Have fun!
[15:23:18] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:23:18] [Server thread/INFO]: Done (14,451s)! For help, type "help" or "?"
[15:23:19] [Server thread/INFO]: [Skript] Loading variables...
[15:23:19] [Server thread/INFO]: [Skript] Loaded 3 variables in 0.0 seconds
[15:23:19] [Craft Scheduler Thread - 0/INFO]: [0;37;22m[[0;33;22mSkript[0;37;22m][m You're currently running custom Skript version. No updates will be automatically installed.[m
[15:23:24] [Server thread/ERROR]: [Skript] a player can't be set to anything (Menu.sk, line 59: set player-arg to {_pari.%player%}')
[15:23:24] [Server thread/INFO]: [Skript] Loaded 4 scripts with a total of 4 triggers and 15 commands in 5.12 seconds
[15:23:24] [Server thread/INFO]: [Skript] Finished loading.
[15:23:24] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.11.1(316)
[15:23:24] [Server thread/INFO]: §3[§bskDragon§3] §aChecking for updates now!
[15:23:24] [Server thread/INFO]: §3[§bskDragon§3] §av0.16 is available
[15:23:24] [Server thread/INFO]: §3[§bskDragon§3] §aUpdated to 1.15, Happy Holidays!
[15:23:24] [Server thread/INFO]: §3[§bskDragon§3] §a>> https://forums.skunity.com/resources/skdragon-emotes-particles.20/
[15:23:24] [Server thread/INFO]: §3[§bskDragon§3] §a>> https://www.spigotmc.org/resources/skript-addon-skdragon-v0-13-1-beta-free-emotes-particles-great-eula-perks.24173/
[15:23:24] [Server thread/INFO]: GroupManager - INFO - Bukkit Permissions Updated!
[15:23:24] [Server thread/WARN]: [ViaVersion] There is a newer version available: 2.2.3, you're on: 1.5.2
[15:23:25] [Craft Scheduler Thread - 3/INFO]: [TuSKe] Checking for latest update...
[15:23:26] [Craft Scheduler Thread - 3/INFO]: [TuSKe] No new update was found!
[15:23:29] [Craft Scheduler Thread - 1/INFO]: [TuSKe] Generating documentation of Skript & Addons.
[15:23:29] [Craft Scheduler Thread - 1/INFO]: [TuSKe] Documentation was generated successfully.
[15:23:34] [User Authenticator #1/INFO]: UUID of player Hitman77600 is 858b05c7-345e-3c39-9921-aabd5a653b9b
[15:23:34] [Server thread/INFO]: [0;32;22m[21mUn bon retour parmi nous Hitman77600.[m
[15:23:34] [Server thread/INFO]: Cleared the inventory of Hitman77600, removing 1 items
[15:23:34] [Server thread/INFO]: Hitman77600[/127.0.0.1:62332] logged in with entity id 261 at ([Spawn]161.6665856535061, 18.0, -324.81863454822235)
[15:23:36] [User Authenticator #2/INFO]: UUID of player John is c32e762f-4ac4-35f3-aa5d-9f57cdd5be94
[15:23:36] [Server thread/INFO]: [0;32;22m[21mUn bon retour parmi nous John.[m
[15:23:36] [Server thread/INFO]: Cleared the inventory of John, removing 1 items
[15:23:36] [Server thread/INFO]: John[/127.0.0.1:62335] logged in with entity id 262 at ([Spawn]151.13705709464264, 18.0, -318.8973978038986)
[15:23:37] [Server thread/INFO]: Hitman77600 [858b05c7-345e-3c39-9921-aabd5a653b9b]: /menu
[15:23:38] [Server thread/INFO]: Hitman77600 [858b05c7-345e-3c39-9921-aabd5a653b9b]: /§menuBrick
[15:23:41] [Server thread/INFO]: John [c32e762f-4ac4-35f3-aa5d-9f57cdd5be94]: /menu
[15:23:43] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Skript v2.2-dev36
java.lang.IllegalArgumentException: Permission name cannot be null
	at org.bukkit.permissions.PermissibleBase.addAttachment(PermissibleBase.java:197) ~[spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at org.bukkit.craftbukkit.v1_11_R1.entity.CraftHumanEntity.addAttachment(CraftHumanEntity.java:128) ~[spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at com.github.tukenuke.tuske.util.CommandUtils.runCommand(CommandUtils.java:37) ~[?:?]
	at com.github.tukenuke.tuske.sections.gui.EffFormatGUI.lambda$execute$0(EffFormatGUI.java:132) ~[?:?]
	at com.github.tukenuke.tuske.manager.gui.GUI.run(GUI.java:29) ~[?:?]
	at com.github.tukenuke.tuske.manager.gui.GUIManager$1.onClick(GUIManager.java:149) ~[?:?]
	at com.github.tukenuke.tuske.listeners.GUIListener.onEvent(GUIListener.java:57) ~[?:?]
	at com.github.tukenuke.tuske.manager.gui.v2.SkriptGUIEvent.check(SkriptGUIEvent.java:39) ~[?:?]
	at ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:145) ~[?:?]
	at ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:109) ~[?:?]
	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62) ~[spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at net.minecraft.server.v1_11_R1.PlayerConnection.a(PlayerConnection.java:1849) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at net.minecraft.server.v1_11_R1.PacketPlayInWindowClick.a(SourceFile:33) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at net.minecraft.server.v1_11_R1.PacketPlayInWindowClick.a(SourceFile:10) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at net.minecraft.server.v1_11_R1.PlayerConnectionUtils$1.run(SourceFile:13) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_211]
	at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_211]
	at net.minecraft.server.v1_11_R1.SystemUtils.a(SourceFile:46) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at net.minecraft.server.v1_11_R1.MinecraftServer.D(MinecraftServer.java:747) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at net.minecraft.server.v1_11_R1.DedicatedServer.D(DedicatedServer.java:399) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at net.minecraft.server.v1_11_R1.MinecraftServer.C(MinecraftServer.java:678) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at net.minecraft.server.v1_11_R1.MinecraftServer.run(MinecraftServer.java:576) [spigot-1.11.2.jar:git-Spigot-3fb9445-6e3cec8]
	at java.lang.Thread.run(Unknown Source) [?:1.8.0_211]

L'erreur tout en bas apparait quand j'essaye d'ouvrir le menu, l'erreur au dessus quand je démarre mon serveur.

  • 0
Posté(e) (modifié)
Il y a 1 heure, Alex77600 a dit :

Could not pass event InventoryClickEvent to Skript v2.2-dev36

Il est dit que l'event "InventoryClickEvent" ne peux pas passer avec la version 2.2-dev36 de skript

Il faut que tu changes ta version de skript

 

Et pour TusKe, tu as pris quelle version ?

Modifié par LOUDO
Faute d'orthographe x)
  • 0
Posté(e)

Alors j'ai changé absolument toutes les version ainsi que tous les addons de mon skript, j'ai plus d'erreurs sur Tuske et tout à l'air stable, en revanche les variables ne sont plus prises en compte par Tuske, comme si je n'avais plus le plugin. La version de mon Tuske est en 1.7.3, cela fais 2h que je fais des recherches et apparament les nouvelles version sont complètement buguer ...

 

Je vous fais part des logs :

[11:05:21] [Server thread/INFO]: [TuSKe] Enabling TuSKe v1.7.3
[11:05:21] [Server thread/INFO]: [TuSKe] Enabling Metrics... Done!
[11:05:21] [Server thread/INFO]: [TuSKe] Loaded sucessfully a total of 8 events, 12 conditions, 58 expressions and 13 effects in 0.0 seconds. Enjoy ^-^
[11:05:21] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[11:05:21] [Server thread/INFO]: Done (12,946s)! For help, type "help" or "?"
[11:05:21] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.11.1(316)
[11:05:21] [Server thread/INFO]: [Skript] Loading variables...
[11:05:21] [Server thread/INFO]: [Skript] Loaded 3 variables in 0.0 seconds
[11:05:21] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 6 named "§6&lBrick de %player%" to player (Brick.sk, line 4: open virtual chest inventory with size 6 named "§6&lBrick de %player%" to player')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 10 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 8: format gui slot 10 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 11 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 9: format gui slot 11 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 12 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 10: format gui slot 12 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 13 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 11: format gui slot 13 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 14 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 12: format gui slot 14 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 15 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 13: format gui slot 15 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 16 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 14: format gui slot 16 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 19 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 18: format gui slot 19 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 20 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 19: format gui slot 20 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 21 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 20: format gui slot 21 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 22 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 21: format gui slot 22 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 23 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 22: format gui slot 23 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 24 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 23: format gui slot 24 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 25 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 24: format gui slot 25 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 28 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 28: format gui slot 28 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 29 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 29: format gui slot 29 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 30 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 30: format gui slot 30 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 31 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 31: format gui slot 31 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 32 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 32: format gui slot 32 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 33 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 33: format gui slot 33 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 34 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 34: format gui slot 34 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 49 of player with eyes_of_ender without any NBT named "&2&lRegarder le jeu de %player%" with lore "&7&lClique gauche pour regarder le jeu de %player%" to run player command "/brick2" (Brick.sk, line 36: format gui slot 49 of player with eyes_of_ender without any NBT named "&2&lRegarder le jeu de %player%" with lore "&7&lClique gauche pour regarder le jeu de %player%" to run player command "/brick2"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 6 named "§6&lBrick de %player%" to player (Brick.sk, line 41: open virtual chest inventory with size 6 named "§6&lBrick de %player%" to player')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 10 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 46: format gui slot 10 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 11 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 47: format gui slot 11 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 12 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 48: format gui slot 12 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 13 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 49: format gui slot 13 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 14 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 50: format gui slot 14 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 15 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 51: format gui slot 15 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 16 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 52: format gui slot 16 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 19 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 56: format gui slot 19 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 20 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 57: format gui slot 20 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 21 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 58: format gui slot 21 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 22 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 59: format gui slot 22 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 23 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 60: format gui slot 23 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 24 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 61: format gui slot 24 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 25 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 62: format gui slot 25 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 28 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 66: format gui slot 28 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 29 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 67: format gui slot 29 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 30 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 68: format gui slot 30 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 31 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 69: format gui slot 31 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 32 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 70: format gui slot 32 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 33 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 71: format gui slot 33 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 34 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 72: format gui slot 34 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 49 of player with eyes_of_ender without any NBT named "&2&lRegarder le jeu de %player%" with lore "&7&lClique gauche pour regarder le jeu de %player%" to run player command "/brick1" (Brick.sk, line 76: format gui slot 49 of player with eyes_of_ender without any NBT named "&2&lRegarder le jeu de %player%" with lore "&7&lClique gauche pour regarder le jeu de %player%" to run player command "/brick1"')
[11:05:23] [Server thread/ERROR]: [Skript] can't understand this condition: 'file "plugins/Skript/scripts/%{_arg}%.sk" exists' (Convert.sk, line 15: if file "plugins/Skript/scripts/%{_arg}%.sk" exists:')
[11:05:23] [Server thread/ERROR]: [Skript] 'else' has to be placed just after an 'if' or 'else if' section (Convert.sk, line 52: else:')
[11:05:24] [Server thread/ERROR]: [Skript] can't understand this event: 'on right click with a clay_bricks_block' (Join.sk, line 38: on right click with a clay_bricks_block:')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 6 named "§6&lMenu" to player (Join.sk, line 45: open virtual chest inventory with size 6 named "§6&lMenu" to player')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 4 of player with golden_ingot without any NBT named "&e&lVotre argent" with lore "&7&l%{MONEY.%player's UUID%}%&7&l €" to do nothing (Join.sk, line 47: format gui slot 4 of player with golden_ingot without any NBT named "&e&lVotre argent" with lore "&7&l%{MONEY.%player's UUID%}%&7&l €" to do nothing')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 11 of player with clay_bricks_block without any NBT named "&9&lJEUX DE LA BRIQUE" with lore "&7&lClique gauche pour voir le Jeu." to run player command "/§menuBrick" (Join.sk, line 49: format gui slot 11 of player with clay_bricks_block without any NBT named "&9&lJEUX DE LA BRIQUE" with lore "&7&lClique gauche pour voir le Jeu." to run player command "/§menuBrick"')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 4 of player with golden_ingot without any NBT named "&c&lVotre argent" with lore "&7&l%{MONEY.%player's UUID%}%&7&l €||&4&lVous n'avez pas suffisament de fonds pour parier,||&4&lvous pouvez en ajoutez sur notre site" to do nothing (Join.sk, line 51: format gui slot 4 of player with golden_ingot without any NBT named "&c&lVotre argent" with lore "&7&l%{MONEY.%player's UUID%}%&7&l €||&4&lVous n'avez pas suffisament de fonds pour parier,||&4&lvous pouvez en ajoutez sur notre site" to do nothing')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with 1 row named "Mon GUI" to player (Join.sk, line 79: open virtual chest inventory with 1 row named "Mon GUI" to player')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 3 named "§9&lJEUX DE LA BRIQUE" to player (Menu.sk, line 4: open virtual chest inventory with size 3 named "§9&lJEUX DE LA BRIQUE" to player')
[11:05:24] [Server thread/ERROR]: [Skript] '1 of clay_bricks_block named "&9&lDemarrer &7( clique droit )" with lore "§fClique droit pour acceder au menu des paris"' can't be added to a slot because the former is neither an item type nor an item stack (Menu.sk, line 33: give 1 of clay_bricks_block named "&9&lDemarrer &7( clique droit )" with lore "§fClique droit pour acceder au menu des paris" to slot 5 of player')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 6 named "§9&lSALON" to player (Menu.sk, line 40: open virtual chest inventory with size 6 named "§9&lSALON" to player')
[11:05:24] [Server thread/ERROR]: [Skript] a player can't be set to anything (Menu.sk, line 59: set player-arg to {_pari.%player%}')
[11:05:24] [Server thread/INFO]: [Skript] Loaded 4 scripts with a total of 3 triggers and 15 commands in 3.25 seconds
[11:05:24] [Server thread/INFO]: [Skript] Finished loading.
[11:05:24] [Server thread/INFO]: GroupManager - INFO - Bukkit Permissions Updated!
[11:05:24] [Server thread/WARN]: [ViaVersion] There is a newer version available: 2.2.3, you're on: 1.5.2
[11:05:25] [Craft Scheduler Thread - 0/INFO]: [TuSKe] Checking for latest update...
[11:05:26] [Craft Scheduler Thread - 0/INFO]: [TuSKe] New update available: v1.8.2
[11:05:26] [Craft Scheduler Thread - 0/INFO]: [TuSKe] Check what's new in: https://github.com/Tuke-Nuke/TuSKe/releases/tag/1.8.2
[11:05:26] [Craft Scheduler Thread - 0/INFO]: [TuSKe] You can download and update it with /tuske update.
[11:05:29] [Craft Scheduler Thread - 0/INFO]: [TuSKe] Documentation was generated correctly.

 

  • 0
Posté(e)
il y a 39 minutes, Alex77600 a dit :

Alors j'ai changé absolument toutes les version ainsi que tous les addons de mon skript, j'ai plus d'erreurs sur Tuske et tout à l'air stable, en revanche les variables ne sont plus prises en compte par Tuske, comme si je n'avais plus le plugin. La version de mon Tuske est en 1.7.3, cela fais 2h que je fais des recherches et apparament les nouvelles version sont complètement buguer ...

 

Je vous fais part des logs :


[11:05:21] [Server thread/INFO]: [TuSKe] Enabling TuSKe v1.7.3
[11:05:21] [Server thread/INFO]: [TuSKe] Enabling Metrics... Done!
[11:05:21] [Server thread/INFO]: [TuSKe] Loaded sucessfully a total of 8 events, 12 conditions, 58 expressions and 13 effects in 0.0 seconds. Enjoy ^-^
[11:05:21] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[11:05:21] [Server thread/INFO]: Done (12,946s)! For help, type "help" or "?"
[11:05:21] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.11.1(316)
[11:05:21] [Server thread/INFO]: [Skript] Loading variables...
[11:05:21] [Server thread/INFO]: [Skript] Loaded 3 variables in 0.0 seconds
[11:05:21] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 6 named "§6&lBrick de %player%" to player (Brick.sk, line 4: open virtual chest inventory with size 6 named "§6&lBrick de %player%" to player')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 10 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 8: format gui slot 10 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 11 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 9: format gui slot 11 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 12 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 10: format gui slot 12 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 13 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 11: format gui slot 13 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 14 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 12: format gui slot 14 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 15 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 13: format gui slot 15 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 16 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 14: format gui slot 16 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 19 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 18: format gui slot 19 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 20 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 19: format gui slot 20 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 21 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 20: format gui slot 21 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 22 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 21: format gui slot 22 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 23 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 22: format gui slot 23 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 24 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 23: format gui slot 24 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 25 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 24: format gui slot 25 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 28 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 28: format gui slot 28 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:22] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 29 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 29: format gui slot 29 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 30 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 30: format gui slot 30 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 31 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 31: format gui slot 31 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 32 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 32: format gui slot 32 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 33 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 33: format gui slot 33 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 34 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 34: format gui slot 34 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 49 of player with eyes_of_ender without any NBT named "&2&lRegarder le jeu de %player%" with lore "&7&lClique gauche pour regarder le jeu de %player%" to run player command "/brick2" (Brick.sk, line 36: format gui slot 49 of player with eyes_of_ender without any NBT named "&2&lRegarder le jeu de %player%" with lore "&7&lClique gauche pour regarder le jeu de %player%" to run player command "/brick2"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 6 named "§6&lBrick de %player%" to player (Brick.sk, line 41: open virtual chest inventory with size 6 named "§6&lBrick de %player%" to player')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 10 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 46: format gui slot 10 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 11 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 47: format gui slot 11 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 12 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 48: format gui slot 12 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 13 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 49: format gui slot 13 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 14 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 50: format gui slot 14 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 15 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 51: format gui slot 15 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 16 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 52: format gui slot 16 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 19 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 56: format gui slot 19 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 20 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 57: format gui slot 20 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 21 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 58: format gui slot 21 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 22 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 59: format gui slot 22 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 23 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 60: format gui slot 23 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 24 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 61: format gui slot 24 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 25 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 62: format gui slot 25 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 28 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 66: format gui slot 28 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 29 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 67: format gui slot 29 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 30 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 68: format gui slot 30 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 31 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 69: format gui slot 31 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 32 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 70: format gui slot 32 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 33 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 71: format gui slot 33 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 34 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site" (Brick.sk, line 72: format gui slot 34 of player with clay_bricks_block without any NBT named "&e&lBRIQUE SURPRISE" with lore "&7&lClique gauche pour casser la brique" to run player command "/§site"')
[11:05:23] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 49 of player with eyes_of_ender without any NBT named "&2&lRegarder le jeu de %player%" with lore "&7&lClique gauche pour regarder le jeu de %player%" to run player command "/brick1" (Brick.sk, line 76: format gui slot 49 of player with eyes_of_ender without any NBT named "&2&lRegarder le jeu de %player%" with lore "&7&lClique gauche pour regarder le jeu de %player%" to run player command "/brick1"')
[11:05:23] [Server thread/ERROR]: [Skript] can't understand this condition: 'file "plugins/Skript/scripts/%{_arg}%.sk" exists' (Convert.sk, line 15: if file "plugins/Skript/scripts/%{_arg}%.sk" exists:')
[11:05:23] [Server thread/ERROR]: [Skript] 'else' has to be placed just after an 'if' or 'else if' section (Convert.sk, line 52: else:')
[11:05:24] [Server thread/ERROR]: [Skript] can't understand this event: 'on right click with a clay_bricks_block' (Join.sk, line 38: on right click with a clay_bricks_block:')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 6 named "§6&lMenu" to player (Join.sk, line 45: open virtual chest inventory with size 6 named "§6&lMenu" to player')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 4 of player with golden_ingot without any NBT named "&e&lVotre argent" with lore "&7&l%{MONEY.%player's UUID%}%&7&l €" to do nothing (Join.sk, line 47: format gui slot 4 of player with golden_ingot without any NBT named "&e&lVotre argent" with lore "&7&l%{MONEY.%player's UUID%}%&7&l €" to do nothing')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 11 of player with clay_bricks_block without any NBT named "&9&lJEUX DE LA BRIQUE" with lore "&7&lClique gauche pour voir le Jeu." to run player command "/§menuBrick" (Join.sk, line 49: format gui slot 11 of player with clay_bricks_block without any NBT named "&9&lJEUX DE LA BRIQUE" with lore "&7&lClique gauche pour voir le Jeu." to run player command "/§menuBrick"')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: format gui slot 4 of player with golden_ingot without any NBT named "&c&lVotre argent" with lore "&7&l%{MONEY.%player's UUID%}%&7&l €||&4&lVous n'avez pas suffisament de fonds pour parier,||&4&lvous pouvez en ajoutez sur notre site" to do nothing (Join.sk, line 51: format gui slot 4 of player with golden_ingot without any NBT named "&c&lVotre argent" with lore "&7&l%{MONEY.%player's UUID%}%&7&l €||&4&lVous n'avez pas suffisament de fonds pour parier,||&4&lvous pouvez en ajoutez sur notre site" to do nothing')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with 1 row named "Mon GUI" to player (Join.sk, line 79: open virtual chest inventory with 1 row named "Mon GUI" to player')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 3 named "§9&lJEUX DE LA BRIQUE" to player (Menu.sk, line 4: open virtual chest inventory with size 3 named "§9&lJEUX DE LA BRIQUE" to player')
[11:05:24] [Server thread/ERROR]: [Skript] '1 of clay_bricks_block named "&9&lDemarrer &7( clique droit )" with lore "§fClique droit pour acceder au menu des paris"' can't be added to a slot because the former is neither an item type nor an item stack (Menu.sk, line 33: give 1 of clay_bricks_block named "&9&lDemarrer &7( clique droit )" with lore "§fClique droit pour acceder au menu des paris" to slot 5 of player')
[11:05:24] [Server thread/ERROR]: [Skript] Can't understand this condition/effect: open virtual chest inventory with size 6 named "§9&lSALON" to player (Menu.sk, line 40: open virtual chest inventory with size 6 named "§9&lSALON" to player')
[11:05:24] [Server thread/ERROR]: [Skript] a player can't be set to anything (Menu.sk, line 59: set player-arg to {_pari.%player%}')
[11:05:24] [Server thread/INFO]: [Skript] Loaded 4 scripts with a total of 3 triggers and 15 commands in 3.25 seconds
[11:05:24] [Server thread/INFO]: [Skript] Finished loading.
[11:05:24] [Server thread/INFO]: GroupManager - INFO - Bukkit Permissions Updated!
[11:05:24] [Server thread/WARN]: [ViaVersion] There is a newer version available: 2.2.3, you're on: 1.5.2
[11:05:25] [Craft Scheduler Thread - 0/INFO]: [TuSKe] Checking for latest update...
[11:05:26] [Craft Scheduler Thread - 0/INFO]: [TuSKe] New update available: v1.8.2
[11:05:26] [Craft Scheduler Thread - 0/INFO]: [TuSKe] Check what's new in: https://github.com/Tuke-Nuke/TuSKe/releases/tag/1.8.2
[11:05:26] [Craft Scheduler Thread - 0/INFO]: [TuSKe] You can download and update it with /tuske update.
[11:05:29] [Craft Scheduler Thread - 0/INFO]: [TuSKe] Documentation was generated correctly.

La 1.7.3 !! xD

Cette version est vielle !

Essaie cette version: TusKe

  • 0
Posté(e)

Déjà essayé :/, j'ai même supprimé tous les addons, mis la dernière version de Skript, et changé de version skript juste ce que ça marche, mais rien n'y fait, j'ai toujours un message d'erreur. J'utilise Spigot, mais après je ne pense pas que le problème viens de la ...

  • 0
Posté(e)
il y a 1 minute, Alex77600 a dit :

Déjà essayé :/, j'ai même supprimé tous les addons, mis la dernière version de Skript, et changé de version skript juste ce que ça marche, mais rien n'y fait, j'ai toujours un message d'erreur. J'utilise Spigot, mais après je ne pense pas que le problème viens de la ...

Essais celle la -> TusKe

  • 0
Posté(e)

J'ai réussi ! Cela venait de moi. Le patch à résolu le problème, mais je n'avais pas fais attention aux variables que j'utilisais, qui s'avérais être fausse !

 

Merci à tous de m'avoir aider !

  • Haha 1
  • 0
Posté(e)
il y a 1 minute, Alex77600 a dit :

J'ai réussi ! Cela venait de moi. Le patch à résolu le problème, mais je n'avais pas fais attention aux variables que j'utilisais, qui s'avérais être fausse !

 

Merci à tous de m'avoir aider !

De rien !

N'hésite pas à passer en résolu (et merci au passage pour les 10 crédits 💪)

Capture.JPG.14cd658ae2670cd2741d8c46e1b4fbf5.JPG

Invité
Ce sujet ne peut plus recevoir de nouvelles réponses.
×
×
  • Créer...

Information importante

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.