Aller au contenu

shizso

Membre
  • Compteur de contenus

    29
  • Inscription

  • Dernière visite

Messages posté(e)s par shizso

  1. il y a 4 minutes, Kilterra a dit :

    Bon bah nickel tu n'as plus qu'a l'adapter pour ton gui en te basant sur le même principe 😉
    Je laisse quand même le sujet ouvert pour l'instant au cas où tu aurai des problèmes pour l'adapter 😉

    Pour le gui je viens de le faire et ça merci niquel, merci à toi tu m'as beaucoup aidé ! 😉

  2. il y a 6 minutes, Kilterra a dit :

    Modifie par ça :
     

    
    command /spawner:
    	trigger:
    		giveSpawner("blaze", player)
    
    function giveSpawner(mob: text, p: player):
    	give spawner named "%{_mob}%" to {_p}
    	send "Vous avez reçu un spawner de %{_mob}%" to {_p}
    
    on place of spawner:
    	if name of player's tool is "zombie" or "blaze":
    		add "{EntityId:""Blaze""}" to nbt of event-block
    		send nbt of event-block

    Et donne moi ce que t'obtiens juste après 😉

    Ca marche niquel cette fois-ci, je comprends pas la différence entre le dernier code et celui-ci qui fait que ça fonctionne. EDIT: c'était la majuscule le problème ^^'

    aaa.png

  3. il y a 5 minutes, Kilterra a dit :
    
    command /spawner:
    	trigger:
    		giveSpawner("blaze", player)
    
    function giveSpawner(mob: text, p: player):
    	give spawner named "%{_mob}%" to {_p}
    	send "Vous avez reçu un spawner de %{_mob}%" to {_p}
    
    on place of spawner:
    	if name of player's tool is "zombie" or "blaze":
    		send "je suis rentré dans la condition"
    		add "{EntityId:""%name of player's tool%""}" to nbt of event-block

    Que ce soit avec zombie ou blaze ça me donne un spawner neutre comme ça : (EDIT : je rentre dans la condition)

    aare.png

  4. il y a 8 minutes, Kilterra a dit :

    Bonjour,
    Quel addon a tu pris pour les nbts ? Skstuff ? SkBee ?

    Rentres tu dans la condition du nom de l'item ?



     

    Bonjour, pour ce qui est de l'addon on m'a conseillé SkBee c'est donc ce dernier que j'ai sur mon serveur.

    C'est à dire je n'ai pas bien compris ta question ?

  5. Il y a 10 heures, Kilterra a dit :

    Bonjour,
    Tout d'abord @KneaXy merci de surveiller ton langage nous sommes sur un forum ici et non là ou tu le dis (pour cette fois je ne sanctionne pas, la prochaine fois c'est beaucoup moins sûr).
    Concernant la demande, voici un skript et l'explication en dessous :
     

    
    command /spawner:
    	trigger:
    		giveSpawner("blaze", player)
    
    function giveSpawner(mob: text, p: player):
    	give mob_spawner named "%{_mob}%" to {_p}
    	send "Vous avez reçu un spawner de %{_mob}%" to {_p}
    
    on place of mob_spawner:
    	if name of player's tool is "zombie" or "blaze":
    		add "{SpawnData:{id:""minecraft:%name of player's tool%""}}" to nbt of event-block
    		add "{SpawnPotentials:[{Entity:{id:""minecraft:%name of player's tool%""},Weight:1}]}" to nbt of event-block

    En effet, il y a un bug vanilla lors du give de l'item je vous l'accorde. Les nbt sont apparement "perdu" lors du give, il faut donc les modifiés après le placement.
    Pour ce skript il faut un addon pour gérer les nbt (skBee fait entièrement l'affaire et ces autres ajouts sont un gros plus).
    La commande /spawner est juste pour te montrer comment cela fonctionne. Elle fait appelle à la fonction giveSpawner qui prend en paramètre un mob (chaîne de caractère correspondant au nom du mob c'est à dire que pour faire spawn un zombie il faudrai normalement "minecraft:zombie" là tu passe juste "zombie". Cette fonction give un spawner vide avec comme nom le nom du mob.
    Puis, lors du placement du block on regarde que le nom de l'item est bien un spawner spécial, et on modifie les nbt nécessaire.

    Je t'invite donc à tester ce code d'abord avec la commande /spawner qui normalement devrai te give un spawner de blaze et si cela fonctionne bien d'adapter ce code à ton gui.
    Bien cordialement
    Kilterra

    Merci pour ton aide. J'ai essayé ton code mais les erreurs sont au niveau du "mob_spawner"

    eee.png

    J'ai essayé de remplacer par "spawner" mais lorsque je pose le spawner, cela fait un spawner à cochons

  6. Il y a 2 heures, Kilterra a dit :

    Bonjour,
    @KneaXy s'il souhaite le faire en skript plutôt qu'avec un plugin alors pourquoi te comporter comme ça ? Au contraire il a fais plusieurs recherches mais il a rien trouver de concluant et c'est donc pour cela qu'il poste ce topique.
    Concernant ta demande shizso que veux-tu faire exactement, tu veux juste un spawner d'un mob bien précis ? Si oui lequel ?

    Bonjour,

    Je souhaite faire un shop de spawners. J'ai déjà résolu le problème du gui et désormais le seul problème c'est la commande de give. J'aimerai ces spawners à acheter : pig, cow, chicken, zombie, skeleton, pig zombie, blaze, wither, iron golem

  7. Il y a 2 heures, KneaXy a dit :

    Tu es vraiment têtu, si tout le monde dit qu'il faut passer par un plugin, PASSE PAR UN PLUGIN ET ARRÊTE
    Moi-même j'ai essayé de mon côté, rien ne marche.
    Ni de /give, ni le /setblock, rien ne fonctionne

    Passe par un plugin, c'est un problème irréparable en vanilla

    J'ai posté deux messages et à aucun moment je ne t'ai manqué de respect, je ne vois pas pourquoi tu t'emballes.

    Je reste persuadé que c'est possible à faire en skript, puisque j'ai vu des exemples concrets de serveurs possédant ce système développé en skript.

    En attendant je vais prendre un plugin, même si mon problème ne sera que partiellement réglé.

    Merci pour tes messages en tout cas.

  8. J'essaye de développer au maximum en Skript pour avoir un contrôle total sur ce que je veux faire pour adapter au mieux possible. Mais si vraiment c'est trop compliqué je prendrais un plugin comme tu le dis

  9. Version de Minecraft : 1.8.8
    Version de Skript : 2.4.1

    Addons utilisés: Skelett, SkQuery, SkRayFall, skript-yaml, SkUtilities, Tuske

    Type du skript : Give de spawners

    Description du script :

    Bonjour ! J'ai un problème concernant le give de Spawner. Sur mon précédent poste, on m'a indiqué que cela pouvait être lié aux nbt.

    Voici un des nombreux codes que j'ai essayé, aucune erreur mais rien ne m'est donné.

    execute console command "/give %player% minecraft:spawner{BlockEntityTag:{SpawnData:{id:""slime""}}} 1"

    J'ai cherché sur internet mais les différentes commandes me donnes soit un pig_spawner tout le temps, soit un spawner neutre, soit rien du tout comme avec cette commande.

    Certains disent qu'il faut obligatoirement passer par un plugin mais je pense que c'est toujours possible de se débrouiller sans.

    Merci d'avance.

  10. Le dernier problème que j'ai concerne le give de spawner, voici mon code :

    execute console command "/give %player% minecraft:spawner{BlockEntityTag:{SpawnData:{id:""slime""}}} 1"

    J'ai cherché sur internet mais les différentes commandes me donnes soit un pig_spawner tout le temps, soit un spawner neutre, soit rien du tout comme avec cette commande.

    Certains disent qu'il faut obligatoirement passer par un plugin mais je pense que c'est toujours possible de se débrouiller sans.

    (Je ne sais pas si je dois recréer un sujet pour une petite question comme celle-ci)

  11. il y a 4 minutes, Alexy57 a dit :

    Quand on clique sur un spawner, tu veux que cela fasse quoi ? 

     

    Je voudrais que ça exécute la commande "/spawnerbuy X" en fonction du spawner choisi. La commande /spawnerbuy quant à elle marche puisqu'il n'y a pas de gui.

  12. il y a 4 minutes, LOUDO a dit :

    Le "to close then run" avec tuske c'est

    
    format gui slot 1 of player with emerald block named "emeraude* to run:
        close player's inventory

     

    Toujours une erreur et l'émeraude ne s'affiche pas

  13. Il y a 2 heures, Alexy57 a dit :

    Ok donc, l'erreur viens du to run. Change to run par to close then run et dis moi si cela fonctionne 

    Je ne connais pas la syntaxe exacte, j'en ai essayé plusieurs mais en vain. J'ai tenté ce code :

    format gui slot 1 of player with emerald named "test2" to close then run:
    			give 1 emerald to player

    "Can't understand this condition" est l'erreur affichée lors du reload

  14. il y a 47 minutes, Alexy57 a dit :

    Mmmhh... 

    On va faire un ptit test, essaye ça:

    
    command /test:
    	trigger:
    		open a virtual chest inventory with size 2 named "test" to player
    		format gui slot 0 of player with stone named "test" to close
    		format gui slot 1 of player with emerald named "test2" to run:
    			give 1 emerald to player 
    		send "tout est ok"

    Dis moi si tu obtiens des erreurs.

    La stone s'affiche mais pas l'émeraude, et une erreur s'affiche dans la console. Le problème vient donc de l'exécution d'une commande ?

    Je ne recois pas le "tout est ok également"

  15. il y a 5 minutes, LOUDO a dit :

    Pourtant moi ça marche...

    
    command /spawner:
    	trigger:
    		open virtual chest with size 1 named "&b&lSpawner shop" to player
    		make gui slot 2 of player with mob_spawner named "&b&lIron Golem Spawner" with lore "&7Price&8: &3&o1750" to run:
    			send "cc"
    		make gui slot 3 of player with mob_spawner named "&b&lBlaze Spawner" with lore "&7Price&8: &3&o450.000" to run:
    			send "cc"
    		make gui slot 4 of player with mob_spawner named "&b&lZombie Spawner" with lore "&7Price&8: &3&o55.000" to run:
    			send "cc"	
    		make gui slot 5 of player with mob_spawner named "&b&lPig Spawner" with lore "&7Price&8: &3&o115.000" to run:
    			send "cc"

     

    Tu es en quelle version de spigot et de skript ? Peut être que cela change

     

    EDIT : Même en rajoutant tous les autres addons de skript, aucun changement et toujours une grosse erreur console même quand je laisse juste "spawner" ou que je mets n'importe quel item comme "diamond"

  16. il y a 11 minutes, LOUDO a dit :

    Essaie de mettre au lieu du "spawner cage" avec "52" (C'est son ID)

     

    il y a 5 minutes, LOUDO a dit :

    Verdict, met "mob_spawner" et normalement c'est bon !

    Lorsque je mets 52, "Numerics ids are not supported anymore", et avec le mob_spawner "Can't understand this condition"

  17. il y a 1 minute, LOUDO a dit :

    Reprend l'ancienne version, c'est juste l'item qui ne marche pas

    Pas d'erreur avec l'ancienne version. Par contre quand j'effectue la commande /spawner le gui s'ouvre mais aucun item, "An internal error occured while attempting to perform this command."

    Erreur console :

    Révélation
    
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! [Skript] Severe Error:
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! Something went horribly wrong with Skript.
    [12:05:06 ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
    [12:05:06 ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
    [12:05:06 ERROR]: #!#! Here is full list of them:
    [12:05:06 ERROR]: #!#! TuSKe v1.8.2 (github.com/Tuke-Nuke/TuSKe)
    [12:05:06 ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
    [12:05:06 ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
    [12:05:06 ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
    [12:05:06 ERROR]: #!#! In that case, you will be given instruction on how should you report it.
    [12:05:06 ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
    [12:05:06 ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! Stack trace:
    [12:05:06 ERROR]: #!#! java.lang.ClassCastException: java.util.HashMap cannot be cast to java.util.WeakHashMap
    [12:05:06 ERROR]: #!#!     at com.github.tukenuke.tuske.util.VariableUtil.<init>(VariableUtil.java:24)
    [12:05:06 ERROR]: #!#!     at com.github.tukenuke.tuske.util.VariableUtil.getInstance(VariableUtil.java:17)
    [12:05:06 ERROR]: #!#!     at com.github.tukenuke.tuske.sections.gui.EffFormatGUI.execute(EffFormatGUI.java:141)
    [12:05:06 ERROR]: #!#!     at com.github.tukenuke.tuske.util.EffectSection.check(EffectSection.java:54)
    [12:05:06 ERROR]: #!#!     at ch.njol.skript.lang.Condition.run(Condition.java:56)
    [12:05:06 ERROR]: #!#!     at ch.njol.skript.lang.Conditional.walk(Conditional.java:51)
    [12:05:06 ERROR]: #!#!     at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
    [12:05:06 ERROR]: #!#!     at ch.njol.skript.lang.Trigger.execute(Trigger.java:57)
    [12:05:06 ERROR]: #!#!     at ch.njol.skript.command.ScriptCommand.execute2(ScriptCommand.java:292)
    [12:05:06 ERROR]: #!#!     at ch.njol.skript.command.ScriptCommand.execute(ScriptCommand.java:251)
    [12:05:06 ERROR]: #!#!     at ch.njol.skript.command.Commands.handleCommand(Commands.java:251)
    [12:05:06 ERROR]: #!#!     at ch.njol.skript.command.Commands$1.onPlayerCommand(Commands.java:168)
    [12:05:06 ERROR]: #!#!     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [12:05:06 ERROR]: #!#!     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    [12:05:06 ERROR]: #!#!     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    [12:05:06 ERROR]: #!#!     at java.lang.reflect.Method.invoke(Unknown Source)
    [12:05:06 ERROR]: #!#!     at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306)
    [12:05:06 ERROR]: #!#!     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    [12:05:06 ERROR]: #!#!     at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
    [12:05:06 ERROR]: #!#!     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PlayerConnection.handleCommand(PlayerConnection.java:1154)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:997)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:45)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:1)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13)
    [12:05:06 ERROR]: #!#!     at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
    [12:05:06 ERROR]: #!#!     at java.util.concurrent.FutureTask.run(Unknown Source)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
    [12:05:06 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
    [12:05:06 ERROR]: #!#!     at java.lang.Thread.run(Unknown Source)
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! Version Information:
    [12:05:06 ERROR]: #!#!   Skript: 2.4.1 (custom version)
    [12:05:06 ERROR]: #!#!     Flavor: selfbuilt-unknown
    [12:05:06 ERROR]: #!#!     Date: unknown
    [12:05:06 ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
    [12:05:06 ERROR]: #!#!   Minecraft: 1.8.8
    [12:05:06 ERROR]: #!#!   Java: 1.8.0_251 (Java HotSpot(TM) 64-Bit Server VM 25.251-b08)
    [12:05:06 ERROR]: #!#!   OS: Windows 10 amd64 10.0
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! Server platform: Spigot
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! Current node: null
    [12:05:06 ERROR]: #!#! Current item: format a gui slot [[long:2]] of the player with ([[itemtype:monster spawner]] named "ºbºlIron Golem Spawner" with lore "º7Priceº8: º3ºo1750" >> ch.njol.skript.classes.data.DefaultConverters$14@66787dfe: itemtype -> itemstack)
    [12:05:06 ERROR]: #!#! Current trigger: command /spawner (simple event) (spawner.sk, line -1)
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! Thread: Server thread
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! Language: english
    [12:05:06 ERROR]: #!#! Link parse mode: DISABLED
    [12:05:06 ERROR]: #!#!
    [12:05:06 ERROR]: #!#! End of Error.
    [12:05:06 ERROR]: #!#!

     

     

  18. il y a 2 minutes, LOUDO a dit :

    C'est l'item qui pose problème le mot "spawner" marche pas

    essaie de mettre à la place "mob spawner"

    Si je mets "mob spawner" au lieu de "spawner" j'ai une erreur "can't understand this condition".

  19. il y a 18 minutes, Alexy57 a dit :

    Okay, donc l'erreur semble venir de Tuske.  

    On va tenter quelque chose,  ça pourrait fonctionner.

    Change serveur.jar par ceci: ttps://getbukkit.org/get/hNiHm0tuqAg1Xg7w7zudk63uHr0xo48D

    Essaye aussi de changer TuSke par cette version: https://www.spigotmc.org/resources/tuske.25136/download?version=171805

     

    J'ai une erreur sur cette ligne : "Numerics ids are not supported anymore."

    open virtual chest with size 1 named "&b&lSpawner shop" to player

     

  20. Il y a 1 heure, Alexy57 a dit :

    Salut, dans ton dossier plugin, met tout les plugins dans un dossier à part puis laisse seulement le plugin Skript et Tuske, ensuite lance ton serv essaye et dis moi si tu as une erreur. C'est possible que tu obtienne d'autres erreurs de syntaxes mais rien de grave. 

    Le /spawner s'ouvre mais n'affiche aucun item. J'ai également une erreur console :

    Révélation
    
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! [Skript] Severe Error:
    [11:29:26 ERROR]: #!#! TuSKe's class com.github.tukenuke.tuske.effects.EffMakeDrop generated an exception while loading
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! Something went horribly wrong with Skript.
    [11:29:26 ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
    [11:29:26 ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
    [11:29:26 ERROR]: #!#! Following plugins are probably related to this error in some way:
    [11:29:26 ERROR]: #!#! TuSKe (github.com/Tuke-Nuke/TuSKe)
    [11:29:26 ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
    [11:29:26 ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
    [11:29:26 ERROR]: #!#! In that case, you will be given instruction on how should you report it.
    [11:29:26 ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
    [11:29:26 ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! Stack trace:
    [11:29:26 ERROR]: #!#! java.lang.NullPointerException
    [11:29:26 ERROR]: #!#!     at com.github.tukenuke.tuske.effects.EffMakeDrop.<clinit>(EffMakeDrop.java:25)
    [11:29:26 ERROR]: #!#!     at java.lang.Class.forName0(Native Method)
    [11:29:26 ERROR]: #!#!     at java.lang.Class.forName(Unknown Source)
    [11:29:26 ERROR]: #!#!     at ch.njol.skript.SkriptAddon.loadClasses(SkriptAddon.java:108)
    [11:29:26 ERROR]: #!#!     at com.github.tukenuke.tuske.TuSKe.onEnable(TuSKe.java:100)
    [11:29:26 ERROR]: #!#!     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321)
    [11:29:26 ERROR]: #!#!     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:332)
    [11:29:26 ERROR]: #!#!     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:407)
    [11:29:26 ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:359)
    [11:29:26 ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:318)
    [11:29:26 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:408)
    [11:29:26 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:372)
    [11:29:26 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:327)
    [11:29:26 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:267)
    [11:29:26 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:563)
    [11:29:26 ERROR]: #!#!     at java.lang.Thread.run(Unknown Source)
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! Version Information:
    [11:29:26 ERROR]: #!#!   Skript: 2.4.1 (custom version)
    [11:29:26 ERROR]: #!#!     Flavor: selfbuilt-unknown
    [11:29:26 ERROR]: #!#!     Date: unknown
    [11:29:26 ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
    [11:29:26 ERROR]: #!#!   Minecraft: 1.8.8
    [11:29:26 ERROR]: #!#!   Java: 1.8.0_251 (Java HotSpot(TM) 64-Bit Server VM 25.251-b08)
    [11:29:26 ERROR]: #!#!   OS: Windows 10 amd64 10.0
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! Server platform: Paper
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! Current node: null
    [11:29:26 ERROR]: #!#! Current item: null
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! Thread: Server thread
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! Language: english
    [11:29:26 ERROR]: #!#! Link parse mode: DISABLED
    [11:29:26 ERROR]: #!#!
    [11:29:26 ERROR]: #!#! End of Error.
    [11:29:26 ERROR]: #!#!

     

     

  21. Il y a 5 heures, KneaXy a dit :

    C'est parce-que tu utilises une version dinosaure de Skript, essaye de vérifier si avec Skript 2.4.1 tu ne peux pas utiliser la version proposé par Alexy57

    J'ai fait ce que tu m'as dit, quand je fais la commande je reçois ce message "an internal error occured while attempting to perform this command"

    l'erreur console :

    Révélation
    
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! [Skript] Severe Error:
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! Something went horribly wrong with Skript.
    [08:57:40 ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
    [08:57:40 ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
    [08:57:40 ERROR]: #!#! Here is full list of them:
    [08:57:40 ERROR]: #!#! skRayFall v1.9.20 (https://sk.rayfall.net/) TuSKe v1.8.2 (github.com/Tuke-Nuke/TuSKe) SkStuff v1.6.4.1 skript-yaml v1.3.2 skUtilities v0.9.2 (https://tim740.github.io/) Skellett v1.9.8 (https://forums.skunity.com/resources/skellett.24/) SkQuery v4.1.0
    [08:57:40 ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
    [08:57:40 ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
    [08:57:40 ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
    [08:57:40 ERROR]: #!#! In that case, you will be given instruction on how should you report it.
    [08:57:40 ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
    [08:57:40 ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! Stack trace:
    [08:57:40 ERROR]: #!#! java.lang.ClassCastException: java.util.HashMap cannot be cast to java.util.WeakHashMap
    [08:57:40 ERROR]: #!#!     at com.github.tukenuke.tuske.util.VariableUtil.<init>(VariableUtil.java:24)
    [08:57:40 ERROR]: #!#!     at com.github.tukenuke.tuske.util.VariableUtil.getInstance(VariableUtil.java:17)
    [08:57:40 ERROR]: #!#!     at com.github.tukenuke.tuske.sections.gui.EffFormatGUI.execute(EffFormatGUI.java:141)
    [08:57:40 ERROR]: #!#!     at com.github.tukenuke.tuske.util.EffectSection.check(EffectSection.java:54)
    [08:57:40 ERROR]: #!#!     at ch.njol.skript.lang.Condition.run(Condition.java:56)
    [08:57:40 ERROR]: #!#!     at ch.njol.skript.lang.Conditional.walk(Conditional.java:51)
    [08:57:40 ERROR]: #!#!     at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
    [08:57:40 ERROR]: #!#!     at ch.njol.skript.lang.Trigger.execute(Trigger.java:57)
    [08:57:40 ERROR]: #!#!     at ch.njol.skript.command.ScriptCommand.execute2(ScriptCommand.java:292)
    [08:57:40 ERROR]: #!#!     at ch.njol.skript.command.ScriptCommand.execute(ScriptCommand.java:251)
    [08:57:40 ERROR]: #!#!     at ch.njol.skript.command.Commands.handleCommand(Commands.java:251)
    [08:57:40 ERROR]: #!#!     at ch.njol.skript.command.Commands$1.onPlayerCommand(Commands.java:168)
    [08:57:40 ERROR]: #!#!     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [08:57:40 ERROR]: #!#!     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    [08:57:40 ERROR]: #!#!     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    [08:57:40 ERROR]: #!#!     at java.lang.reflect.Method.invoke(Unknown Source)
    [08:57:40 ERROR]: #!#!     at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:300)
    [08:57:40 ERROR]: #!#!     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:78)
    [08:57:40 ERROR]: #!#!     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    [08:57:40 ERROR]: #!#!     at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:517)
    [08:57:40 ERROR]: #!#!     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:502)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PlayerConnection.handleCommand(PlayerConnection.java:1181)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:1001)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:45)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:1)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13)
    [08:57:40 ERROR]: #!#!     at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
    [08:57:40 ERROR]: #!#!     at java.util.concurrent.FutureTask.run(Unknown Source)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:774)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
    [08:57:40 ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
    [08:57:40 ERROR]: #!#!     at java.lang.Thread.run(Unknown Source)
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! Version Information:
    [08:57:40 ERROR]: #!#!   Skript: 2.4.1 (custom version)
    [08:57:40 ERROR]: #!#!     Flavor: selfbuilt-unknown
    [08:57:40 ERROR]: #!#!     Date: unknown
    [08:57:40 ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
    [08:57:40 ERROR]: #!#!   Minecraft: 1.8.8
    [08:57:40 ERROR]: #!#!   Java: 1.8.0_251 (Java HotSpot(TM) 64-Bit Server VM 25.251-b08)
    [08:57:40 ERROR]: #!#!   OS: Windows 10 amd64 10.0
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! Server platform: Paper
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! Current node: null
    [08:57:40 ERROR]: #!#! Current item: format a gui slot [[long:2]] of the player with ([[itemtype:monster spawner]] named "ºbºlIron Golem Spawner" with lore "º7Priceº8: º3ºo1750" >> ch.njol.skript.classes.data.DefaultConverters$14@6b25536f: itemtype -> itemstack)
    [08:57:40 ERROR]: #!#! Current trigger: command /spawner (simple event) (spawner.sk, line -1)
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! Thread: Server thread
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! Language: english
    [08:57:40 ERROR]: #!#! Link parse mode: DISABLED
    [08:57:40 ERROR]: #!#!
    [08:57:40 ERROR]: #!#! End of Error.
    [08:57:40 ERROR]: #!#!

     

     

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