Solved {list1::*} or {list2::*} contains. How to correctly do it

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.
i have too much stuff depending on this version. i finally got it all nice and compatible with spigot 1.8.8 for a while now. when did funcitons get introduced? i found out functions are also included in skQuery. going to do some research about that now
 
updating shouldnt break anything
well there are some things changed between Minecraft versions especially with 1.9. it might have problems with a few things. i check the new version when i'm going to start building a new server. For now i got functions working with SkQuery haha

here is the code. tried using return after the if statement within the loop but that ended up spamming the message like 20 times. but not all the time, only when the player just got added and the function is being called for the first time with the new list variable. very strange, but the code below works without that problem
Schermafbeelding_2018_05_09_om_04_17_35.png

Schermafbeelding_2018_05_09_om_04_17_21.png
more docs about this here
 
Last edited:
i still recommend updating to bensku's fork, i doubt anything will break and it will save you a lot of hassle. if the latest of bensku doesnt work but with 1.8 (which i think it does) you can always use dev25 which ik works well on 1.8
 
yup im updating now. SkQuery functions are so shit. in first place it worked fine but for some reason i can't use "%player%" or any action that makes use of the 'player' expression after a function is being used. but its not always its just random, it won't work for one skript and for another with the exact same code it does. its so cryptic. It feels like some beta thing someone coded for a college project or something
[doublepost=1525878098,1525876369][/doublepost]okay nevermind. i tried using bensku fork. started my server and got really a lot of problems. Im don't want to change all methods in my skripts. also found out i just made a mistake in my skquery functions lol. within the function i used option variables. I didn't know those functions are global. works now when i put the option variable in the function name
code_language.skript:
function "{@Arena}Team1ORTeam2":
    loop {{@Arena}.Team1::*}:
        if "%loop-value%" is "%parameter 1%":
            $ access
            set {_output} to true
            stop loop
    loop {{@Arena}.Team2::*}:
        if "%loop-value%" is "%parameter 1%":
            $ access
            set {_output} to true
            stop loop
    soft return
 
yup im updating now. SkQuery functions are so shit. in first place it worked fine but for some reason i can't use "%player%" or any action that makes use of the 'player' expression after a function is being used. but its not always its just random, it won't work for one skript and for another with the exact same code it does. its so cryptic. It feels like some beta thing someone coded for a college project or something
[doublepost=1525878098,1525876369][/doublepost]okay nevermind. i tried using bensku fork. started my server and got really a lot of problems. Im don't want to change all methods in my skripts. also found out i just made a mistake in my skquery functions lol. within the function i used option variables. I didn't know those functions are global. works now when i put the option variable in the function name
code_language.skript:
function "{@Arena}Team1ORTeam2":
    loop {{@Arena}.Team1::*}:
        if "%loop-value%" is "%parameter 1%":
            $ access
            set {_output} to true
            stop loop
    loop {{@Arena}.Team2::*}:
        if "%loop-value%" is "%parameter 1%":
            $ access
            set {_output} to true
            stop loop
    soft return
jesus christ just update your skript. any issues with bensku's fork are 90% caused by addons, so post any errors you get.
 
works fine with this now. I dont get errors with bensku's fork. some features of my skript just didn't work. i can go forward with this now. thanks for help
[doublepost=1525955064,1525892604][/doublepost]here is what happened after updating.

code_language.skript:
[08:22:47] [Server thread/INFO]: [Skript] Loaded 12091 variables in 0.6 seconds
[08:22:48] [Server thread/WARN]: [Skript] Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section. (MatchMaking.sk, line 264: if arg-1 is "2v2":')
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load A2_IRON_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (A2_IRON_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load A3_AXE_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (A3_AXE_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load A4_GAPPLE_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (A4_GAPPLE_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load AuthSessionServer.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: wait 1 tick (AuthSessionServer.sk, line 3)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load B2_IRON_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (B2_IRON_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load B3_AXE_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (B3_AXE_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load BuyMessage.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.command.Commands.loadCommand(Commands.java:488)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:621)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: command sender is the console (BuyMessage.sk, line 3)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load C1_IRON_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (C1_IRON_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load D1_DIAMOND_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (D1_DIAMOND_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load D2_AXE_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (D2_AXE_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load F1_DIAMOND_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (F1_DIAMOND_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load G2_DIAMOND_1v1.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {arena.{@Arena}.running} to false (G2_DIAMOND_1v1.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load GoldenApple.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {_i} to event-item (GoldenApple.sk, line 2)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load HubAlias.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.command.Commands.loadCommand(Commands.java:488)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:621)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: bungeecord connect player to "survival" (HubAlias.sk, line 4)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load HyperGenAccounts.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: wait 1 tick (HyperGenAccounts.sk, line 3)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load MailSERVER.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: wait 1 tick (MailSERVER.sk, line 3)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load MatchMaking.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Condition.parse(Condition.java:81)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1048)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.TriggerSection.<init>(TriggerSection.java:54)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Conditional.<init>(Conditional.java:44)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1055)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.TriggerSection.<init>(TriggerSection.java:54)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Conditional.<init>(Conditional.java:44)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1055)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.command.Commands.loadCommand(Commands.java:488)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:621)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: if {{@1v1.ArenaBow1}.Joinable} is true: (MatchMaking.sk, line 35)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load Menu.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:325)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:627)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.VariableString.newInstance(VariableString.java:241)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.VariableString.newInstance(VariableString.java:145)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:493)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {_uuid} to "%player's UUID%" (Menu.sk, line 6)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load PetManager.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: wait 1 tick (PetManager.sk, line 3)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load RankTest.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Condition.parse(Condition.java:81)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1048)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.command.Commands.loadCommand(Commands.java:488)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:621)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: if player has permission "RankTest.ALL": (RankTest.sk, line 3)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load Spawn.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1458)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1531)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.TriggerSection.<init>(TriggerSection.java:54)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Conditional.<init>(Conditional.java:44)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1055)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.command.Commands.loadCommand(Commands.java:488)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:621)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: set {hubspawn.1} to location of player (Spawn.sk, line 7)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load Spectate.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: wait 1 tick (Spectate.sk, line 6)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/WARN]: [Skript] the chat message is already a text, so you should not put it in one (e.g. the chat message instead of "%the chat message%") (SwearChanger.sk, line 2: set {_message} to "%message%"')
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load SwearChanger.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:325)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:627)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:987)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: loop all players: (SwearChanger.sk, line 16)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load TitleManager.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:495)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:814)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1535)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1465)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:969)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: wait 1 tick (TitleManager.sk, line 3)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/WARN]: [Skript] the chat message is already a text, so you should not put it in one (e.g. the chat message instead of "%the chat message%") (playermention.sk, line 14: set {_message1} to "%message%"')
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[08:22:48] [Server thread/ERROR]: #!#! Could not load playermention.sk
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[08:22:48] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[08:22:48] [Server thread/ERROR]: #!#! Your Minecraft version or server software appears to be unsupported by Skript (bensku's version).
[08:22:48] [Server thread/ERROR]: #!#! Currently only supported servers are Spigot and its forks for Minecraft 1.9 or newer.
[08:22:48] [Server thread/ERROR]: #!#! Other versions might work, but since you're getting this error message something is NOT working,
[08:22:48] [Server thread/ERROR]: #!#! nor it will work, unless you switch to supported platform.
[08:22:48] [Server thread/ERROR]: #!#! Issue tracker: https://github.com/bensku/Skript/issues (only if you know what you're doing!)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Stack trace:
[08:22:48] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1804)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1771)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1519)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:225)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:180)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:325)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:627)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:987)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:662)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:389)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:401)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$0(ScriptLoader.java:331)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:361)
[08:22:48] [Server thread/ERROR]: #!#!     at ch.njol.skript.Skript$2.run(Skript.java:490)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[08:22:48] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[08:22:48] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[08:22:48] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Thread.java:748)
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Version Information:
[08:22:48] [Server thread/ERROR]: #!#!   Skript: 2.2-dev35b
[08:22:48] [Server thread/ERROR]: #!#!   Bukkit: 1.8.8-R0.1-SNAPSHOT
[08:22:48] [Server thread/ERROR]: #!#!   Minecraft: 1.8.8
[08:22:48] [Server thread/ERROR]: #!#!   Java: 1.8.0_151 (Java HotSpot(TM) 64-Bit Server VM 25.151-b12)
[08:22:48] [Server thread/ERROR]: #!#!   OS: Linux amd64 3.2.0-4-amd64
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Server platform: Spigot
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Current node: loop all players: (playermention.sk, line 26)
[08:22:48] [Server thread/ERROR]: #!#! Current item: null
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Thread: Server thread
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! Language: english
[08:22:48] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/ERROR]: #!#! End of Error.
[08:22:48] [Server thread/ERROR]: #!#!
[08:22:48] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[08:22:48] [Server thread/INFO]: [Skript] Loaded 25 scripts with a total of 1 trigger and 0 commands in 0.4 seconds
[08:22:48] [Server thread/INFO]: [Skript] Finished loading.
 
Status
Not open for further replies.