I'm trying to make a 1.19 PvP server where when you kill someone in the arena, they drop an emerald for use in the villager shops. I've tried doing a Skript, but it gives me this error in the console:
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:833)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:50)
[20:02:17] [Server thread/ERROR]: #!#! at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:298)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:282)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.b(PlayerConnection.java:1940)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.lambda$18(PlayerConnection.java:1905)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.b(SourceFile:68)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.TickTask.run(SourceFile:18)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:157)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1150)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:131)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1129)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1122)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:140)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1106)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1017)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:293)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.lang.Thread.run(Thread.java:833)
[20:02:17] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.patterns.MalformedPatternException: caught exception while compiling pattern [pattern: accepted items for %customenchantment%]
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:522)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:753)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:126)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.OptionalPatternElement.match(OptionalPatternElement.java:46)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:121)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.SkriptPattern.match(SkriptPattern.java:58)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1255)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Condition.parse(Condition.java:77)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.sections.SecConditional.init(SecConditional.java:83)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.init(Section.java:69)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.parse(Section.java:156)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.reloadScript(ScriptLoader.java:1061)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptCommand.onCommand(SkriptCommand.java:171)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:833)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:50)
[20:02:17] [Server thread/ERROR]: #!#! at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:298)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:282)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.b(PlayerConnection.java:1940)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.lambda$18(PlayerConnection.java:1905)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.b(SourceFile:68)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.TickTask.run(SourceFile:18)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:157)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1150)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:131)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1129)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1122)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:140)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1106)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1017)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:293)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.lang.Thread.run(Thread.java:833)
[20:02:17] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.SkriptAPIException: No class info found for customenchantment
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:264)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.fromString(TypePatternElement.java:92)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:138)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:49)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:522)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:753)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:126)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.OptionalPatternElement.match(OptionalPatternElement.java:46)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:121)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.SkriptPattern.match(SkriptPattern.java:58)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1255)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Condition.parse(Condition.java:77)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.sections.SecConditional.init(SecConditional.java:83)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.init(Section.java:69)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.parse(Section.java:156)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.reloadScript(ScriptLoader.java:1061)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptCommand.onCommand(SkriptCommand.java:171)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:833)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:50)
[20:02:17] [Server thread/ERROR]: #!#! at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:298)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:282)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.b(PlayerConnection.java:1940)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.lambda$18(PlayerConnection.java:1905)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.b(SourceFile:68)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.TickTask.run(SourceFile:18)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:157)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1150)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:131)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1129)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1122)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:140)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1106)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1017)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:293)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.lang.Thread.run(Thread.java:833)
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Version Information:
[20:02:17] [Server thread/ERROR]: #!#! Java: 17.0.1 (OpenJDK 64-Bit Server VM 17.0.1+12)
[20:02:17] [Server thread/ERROR]: #!#! OS: Linux amd64 5.15.0-46-generic
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Server platform: Spigot
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Current node: if attacker is a player: (giveemeralds.sk, line 2)
[20:02:17] [Server thread/ERROR]: #!#! Current item: null
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Thread: Server thread
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Language: english
[20:02:17] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! End of Error.
[20:02:17] [Server thread/ERROR]: #!#!
If there is a way that somebody can help me with this via a Skript, Spigot plugin, or anything else, thank you. I'm also trying to add custom mob drops for the mob arena if somebody can help me with that. It has to be 1.19 compatible as mentioned before, too.
Question
Extenos
I'm trying to make a 1.19 PvP server where when you kill someone in the arena, they drop an emerald for use in the villager shops. I've tried doing a Skript, but it gives me this error in the console:
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:833)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:50)
[20:02:17] [Server thread/ERROR]: #!#! at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:298)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:282)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.b(PlayerConnection.java:1940)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.lambda$18(PlayerConnection.java:1905)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.b(SourceFile:68)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.TickTask.run(SourceFile:18)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:157)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1150)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:131)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1129)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1122)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:140)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1106)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1017)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:293)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.lang.Thread.run(Thread.java:833)
[20:02:17] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.patterns.MalformedPatternException: caught exception while compiling pattern [pattern: accepted items for %customenchantment%]
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:522)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:753)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:126)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.OptionalPatternElement.match(OptionalPatternElement.java:46)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:121)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.SkriptPattern.match(SkriptPattern.java:58)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1255)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Condition.parse(Condition.java:77)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.sections.SecConditional.init(SecConditional.java:83)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.init(Section.java:69)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.parse(Section.java:156)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.reloadScript(ScriptLoader.java:1061)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptCommand.onCommand(SkriptCommand.java:171)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:833)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:50)
[20:02:17] [Server thread/ERROR]: #!#! at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:298)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:282)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.b(PlayerConnection.java:1940)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.lambda$18(PlayerConnection.java:1905)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.b(SourceFile:68)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.TickTask.run(SourceFile:18)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:157)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1150)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:131)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1129)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1122)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:140)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1106)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1017)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:293)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.lang.Thread.run(Thread.java:833)
[20:02:17] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.SkriptAPIException: No class info found for customenchantment
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:264)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.fromString(TypePatternElement.java:92)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:138)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:49)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:522)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:753)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:126)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.OptionalPatternElement.match(OptionalPatternElement.java:46)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:121)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:59)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.patterns.SkriptPattern.match(SkriptPattern.java:58)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1255)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Condition.parse(Condition.java:77)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.sections.SecConditional.init(SecConditional.java:83)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.init(Section.java:69)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Section.parse(Section.java:156)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.ScriptLoader.reloadScript(ScriptLoader.java:1061)
[20:02:17] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptCommand.onCommand(SkriptCommand.java:171)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:833)
[20:02:17] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_19_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:50)
[20:02:17] [Server thread/ERROR]: #!#! at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:298)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:282)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.b(PlayerConnection.java:1940)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.network.PlayerConnection.lambda$18(PlayerConnection.java:1905)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.b(SourceFile:68)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.TickTask.run(SourceFile:18)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:157)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1150)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:131)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1129)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1122)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:140)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1106)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1017)
[20:02:17] [Server thread/ERROR]: #!#! at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:293)
[20:02:17] [Server thread/ERROR]: #!#! at java.base/java.lang.Thread.run(Thread.java:833)
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Version Information:
[20:02:17] [Server thread/ERROR]: #!#! Skript: 2.6.3 (latest)
[20:02:17] [Server thread/ERROR]: #!#! Flavor: skriptlang-github
[20:02:17] [Server thread/ERROR]: #!#! Date: 00:55:22.847925631
[20:02:17] [Server thread/ERROR]: #!#! Bukkit: 1.19.2-R0.1-SNAPSHOT
[20:02:17] [Server thread/ERROR]: #!#! Minecraft: 1.19.2
[20:02:17] [Server thread/ERROR]: #!#! Java: 17.0.1 (OpenJDK 64-Bit Server VM 17.0.1+12)
[20:02:17] [Server thread/ERROR]: #!#! OS: Linux amd64 5.15.0-46-generic
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Server platform: Spigot
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Current node: if attacker is a player: (giveemeralds.sk, line 2)
[20:02:17] [Server thread/ERROR]: #!#! Current item: null
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Thread: Server thread
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! Language: english
[20:02:17] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[20:02:17] [Server thread/ERROR]: #!#!
[20:02:17] [Server thread/ERROR]: #!#! End of Error.
[20:02:17] [Server thread/ERROR]: #!#!
If there is a way that somebody can help me with this via a Skript, Spigot plugin, or anything else, thank you. I'm also trying to add custom mob drops for the mob arena if somebody can help me with that. It has to be 1.19 compatible as mentioned before, too.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now