AutoBroadcast (json.sk)

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

xXSwainXx

Active Member
Jan 27, 2017
55
5
8
25
Hey Guys,

i need help


Code:
code_language.skript:
every 5 minutes:
    if {msg} is not set:
        set {msg} to 2
        json("%player%", "&1DM-News &8» &7Besuche &7doch &7unser &6&o&lForum&7.||url:http://www.darkmystic.de/||ttp:&6&lKlick &7mich &7um &7das &7Forum &7zu &7betreten!")
    else if {msg} is 1:
        set {msg} to 2
        json("%player%", "&1DM-News &8» &7Erstelle &7dir &7eine &7eigene &7Insel. &6&o&lKlick||cmd:/is||ttp:&6&lKlick &7mich &7um &7eine &7Insel &7zu &7Erstellen")
    else if {msg} is 2:
        set {msg} to 3
        json("%player%", "&1DM-News &8» &7Du &7siehst &7einen &7Hacker&7? &6&o&lKlick||sgt:/report Spielername Hacking||ttp:&6&lKlick &7mich &7um &7einen &7Spieler &7zu &7Reporten!")
    else if {msg} is 3:
        set {msg} to 4
        json("%player%", "&1DM-News &8» &7Du &7hast &7noch &7keinen &7Foren &7account&7? &6&o&lKlick||sgt:/forum e-mail passwort||ttp:&6&lKlick &7mich &7um &7einen &7Foren &7account &7zu &7erstellen")
    else if {msg} is 4:
        set {msg} to 1
        json("%player%", "&1DM-News &8» &7Besuche &7doch &7unseren &6&o&lShop&7.||url:http://www.darkmystic.de/shop||ttp:&6&lKlick &7mich &7um &7den &7Shop &7zu &7betreten!")

The Error:
code_language.skript:
[01:06:55] [Server thread/ERROR]: There's no world in a periodic event if no world is given in the event (e.g. like 'every hour in "world"') (armor.sk, line 55: json("%player%", "&1DM-News &8» &7Besuche &7doch &7unser &6&o&lForum&7.||url:http://www.darkmystic.de/||ttp:&6&lKlick &7mich &7um &7das &7Forum &7zu &7betreten!")')
[01:06:55] [Server thread/ERROR]: There's no world in a periodic event if no world is given in the event (e.g. like 'every hour in "world"') (armor.sk, line 58: json("%player%", "&1DM-News &8» &7Erstelle &7dir &7eine &7eigene &7Insel. &6&o&lKlick||cmd:/is||ttp:&6&lKlick &7mich &7um &7eine &7Insel &7zu &7Erstellen")')
[01:06:55] [Server thread/ERROR]: There's no world in a periodic event if no world is given in the event (e.g. like 'every hour in "world"') (armor.sk, line 61: json("%player%", "&1DM-News &8» &7Du &7siehst &7einen &7Hacker&7? &6&o&lKlick||sgt:/report Spielername Hacking||ttp:&6&lKlick &7mich &7um &7einen &7Spieler &7zu &7Reporten!")')
[01:06:55] [Server thread/ERROR]: There's no world in a periodic event if no world is given in the event (e.g. like 'every hour in "world"') (armor.sk, line 64: json("%player%", "&1DM-News &8» &7Du &7hast &7noch &7keinen &7Foren &7account&7? &6&o&lKlick||sgt:/forum e-mail passwort||ttp:&6&lKlick &7mich &7um &7einen &7Foren &7account &7zu &7erstellen")')
[01:06:55] [Server thread/ERROR]: There's no world in a periodic event if no world is given in the event (e.g. like 'every hour in "world"') (armor.sk, line 67: json("%player%", "&1DM-News &8» &7Besuche &7doch &7unseren &6&o&lShop&7.||url:http://www.darkmystic.de/shop||ttp:&6&lKlick &7mich &7um &7den &7Shop &7zu &7betreten!")')


Pls help :emoji_stuck_out_tongue:
 
You can't use "%player%" in a periodic event.

code_language.skript:
every 5 minutes:
    loop all players:
        if {msg} is not set:
            set {msg} to 2
            json("%loop-player%", "&1DM-News &8» &7Besuche &7doch &7unser &6&o&lForum&7.||url:http://www.darkmystic.de/||ttp:&6&lKlick &7mich &7um &7das &7Forum &7zu &7betreten!")
        else if {msg} is 1:
            set {msg} to 2
            json("%loop-player%", "&1DM-News &8» &7Erstelle &7dir &7eine &7eigene &7Insel. &6&o&lKlick||cmd:/is||ttp:&6&lKlick &7mich &7um &7eine &7Insel &7zu &7Erstellen")
        else if {msg} is 2:
            set {msg} to 3
            json("%loop-player%", "&1DM-News &8» &7Du &7siehst &7einen &7Hacker&7? &6&o&lKlick||sgt:/report Spielername Hacking||ttp:&6&lKlick &7mich &7um &7einen &7Spieler &7zu &7Reporten!")
        else if {msg} is 3:
            set {msg} to 4
            json("%loop-player%", "&1DM-News &8» &7Du &7hast &7noch &7keinen &7Foren &7account&7? &6&o&lKlick||sgt:/forum e-mail passwort||ttp:&6&lKlick &7mich &7um &7einen &7Foren &7account &7zu &7erstellen")
        else if {msg} is 4:
            set {msg} to 1
            json("%loop-player%", "&1DM-News &8» &7Besuche &7doch &7unseren &6&o&lShop&7.||url:http://www.darkmystic.de/shop||ttp:&6&lKlick &7mich &7um &7den &7Shop &7zu &7betreten!")
 
after 5 minutes stops the server i use the newes version of json.sk


ERROR:
code_language.skript:
[14:04:13] [Spigot Watchdog Thread/ERROR]: The server has stopped responding!
[14:04:13] [Spigot Watchdog Thread/ERROR]: Please report this to http://www.spigotmc.org/
[14:04:13] [Spigot Watchdog Thread/ERROR]: Be sure to include ALL relevant console errors and Minecraft crash reports
[14:04:13] [Spigot Watchdog Thread/ERROR]: Spigot version: git-Spigot-f94fe8f-d27e6d0 (MC: 1.8.7)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Spigot!):
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 16 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.getArray(SimpleExpression.java:103)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:106)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:1)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:162)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondIsOnline.check(CondIsOnline.java:66)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.While.walk(While.java:50)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:91)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:150)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:110)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:36)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.onPlayerJoin(PlayerList.java:298)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.a(PlayerList.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.b(LoginListener.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.c(LoginListener.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.NetworkManager.a(NetworkManager.java:231)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:813)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:653)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:556)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Entire Thread Dump:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Async Chat Thread - #1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 111 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:42)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:132)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.events.EvtChat$1.execute(EvtChat.java:83)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:24)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:484)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.chat(PlayerConnection.java:1084)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:1022)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PacketPlayInChat$1.run(PacketPlayInChat.java:39)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.FutureTask.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Async Chat Thread - #0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 110 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:42)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:132)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.events.EvtChat$1.execute(EvtChat.java:83)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:24)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:484)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.chat(PlayerConnection.java:1084)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:1022)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PacketPlayInChat$1.run(PacketPlayInChat.java:39)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.FutureTask.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: pool-22-thread-7
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 109 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.parkNanos(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue$TransferStack.transfer(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #3
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 26 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #2
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 25 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: CombatTagPlus ForceField Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 95 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Chunk I/O Executor Thread-1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 92 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: ProtocolLib-StructureCompiler 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 90 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 24 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: File IO Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 84 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.FileIOThread.c(SourceFile:51)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.FileIOThread.run(SourceFile:30)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: JDBM Soft Cache Disposer 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 81 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         jdbm.recman.CacheRecordManager$SoftRunnable.run(CacheRecordManager.java:501)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Head Conversion Thread - 1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 80 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Head Conversion Thread - 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 79 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Skript variable save thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 53 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.variables.Variables$2.run(Variables.java:454)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Skript variable save thread for database 'default'
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 66 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.variables.VariablesStorage$1.run(VariablesStorage.java:78)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] Keep alive
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 39 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.sl.run(sl.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] SocketWriter
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 38 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.ul.run(ul.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] SocketReader
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 37 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.cs.StreamDecoder.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.socketRead0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.socketRead(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.implRead(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.InputStreamReader.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.fill(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.tl.run(tl.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Timer-1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 31 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Thread-9
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 30 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:java.net.PlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.DualStackPlainSocketImpl.accept0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.DualStackPlainSocketImpl.socketAccept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.AbstractPlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.PlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.ServerSocket.implAccept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.ServerSocket.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.vexsoftware.votifier.net.VoteReceiver.run(VoteReceiver.java:114)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Timer-0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 28 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 23 | Suspended: false | Native: false | State: BLOCKED
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.util.ListWrapper.add(ListWrapper.java:48)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection$4.initChannel(ServerConnection.java:98)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.bukkit.handlers.BukkitChannelInitializer.initChannel(BukkitChannelInitializer.java:40)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.bukkit.handlers.BukkitChannelInitializer.initChannel(BukkitChannelInitializer.java:15)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:69)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.DefaultChannelPipeline.fireChannelRegistered(DefaultChannelPipeline.java:732)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannel$AbstractUnsafe.register0(AbstractChannel.java:442)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannel$AbstractUnsafe.register(AbstractChannel.java:412)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.SingleThreadEventLoop.register(SingleThreadEventLoop.java:60)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.SingleThreadEventLoop.register(SingleThreadEventLoop.java:48)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.MultithreadEventLoopGroup.register(MultithreadEventLoopGroup.java:64)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.bootstrap.ServerBootstrap$ServerBootstrapAcceptor.channelRead(ServerBootstrap.java:251)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.comphenix.protocol.injector.netty.ProtocolInjector$3.channelRead(ProtocolInjector.java:171)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.mirre.random.utils.comphenix.TinyProtocol$3.channelRead(TinyProtocol.java:143)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.AbstractNioMessageChannel$NioMessageUnsafe.read(AbstractNioMessageChannel.java:92)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Spigot Watchdog Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 22 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.management.ThreadImpl.dumpThreads0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.management.ThreadImpl.dumpAllThreads(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.spigotmc.WatchdogThread.run(WatchdogThread.java:76)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server console handler
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 19 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:169)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.ReadConsoleInputW(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.readConsoleInputHelper(Kernel32.java:761)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.readConsoleKeyInput(Kernel32.java:794)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.WindowsSupport.readConsoleInput(WindowsSupport.java:97)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal.readConsoleInput(WindowsTerminal.java:215)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal.access$000(WindowsTerminal.java:55)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal$1.read(WindowsTerminal.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:169)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:137)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:246)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readCharacter(ConsoleReader.java:2145)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2349)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer$2.run(DedicatedServer.java:79)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Thread-5
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 20 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.isInterrupted(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.interrupted(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireInterruptibly(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.ReentrantLock.lockInterruptibly(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.mojang.util.QueueLogAppender.getNextLogEvent(QueueLogAppender.java:77)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.util.TerminalConsoleWriterThread.run(TerminalConsoleWriterThread.java:25)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: DestroyJavaVM
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 18 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 16 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.getArray(SimpleExpression.java:103)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:106)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:1)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:162)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondPermission.check(CondPermission.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Condition.run(Condition.java:58)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Conditional.walk(Conditional.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:91)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:150)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:110)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:36)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.onPlayerJoin(PlayerList.java:298)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.a(PlayerList.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.b(LoginListener.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.c(LoginListener.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.NetworkManager.a(NetworkManager.java:231)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:813)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:653)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:556)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server Infinisleeper
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer$1.run(DedicatedServer.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: NonBlockingInputStreamThread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 14 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.run(NonBlockingInputStream.java:278)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Snooper Timer
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 12 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Attach Listener
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 5 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Signal Dispatcher
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 4 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Finalizer
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 3 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Reference Handler
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 2 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Reference.tryHandlePending(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/INFO]: Startup script './start.sh' does not exist! Stopping server.
[14:04:13] [Thread-4/INFO]: Stopping server[14:04:13] [Spigot Watchdog Thread/ERROR]: The server has stopped responding!
[14:04:13] [Spigot Watchdog Thread/ERROR]: Please report this to http://www.spigotmc.org/
[14:04:13] [Spigot Watchdog Thread/ERROR]: Be sure to include ALL relevant console errors and Minecraft crash reports
[14:04:13] [Spigot Watchdog Thread/ERROR]: Spigot version: git-Spigot-f94fe8f-d27e6d0 (MC: 1.8.7)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Spigot!):
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 16 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.getArray(SimpleExpression.java:103)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:106)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:1)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:162)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondIsOnline.check(CondIsOnline.java:66)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.While.walk(While.java:50)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:91)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:150)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:110)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:36)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.onPlayerJoin(PlayerList.java:298)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.a(PlayerList.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.b(LoginListener.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.c(LoginListener.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.NetworkManager.a(NetworkManager.java:231)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:813)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:653)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:556)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Entire Thread Dump:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Async Chat Thread - #1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 111 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:42)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:132)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.events.EvtChat$1.execute(EvtChat.java:83)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:24)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:484)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.chat(PlayerConnection.java:1084)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:1022)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PacketPlayInChat$1.run(PacketPlayInChat.java:39)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.FutureTask.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Async Chat Thread - #0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 110 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:42)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:132)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.events.EvtChat$1.execute(EvtChat.java:83)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:24)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:484)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.chat(PlayerConnection.java:1084)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:1022)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PacketPlayInChat$1.run(PacketPlayInChat.java:39)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.FutureTask.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: pool-22-thread-7
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 109 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.parkNanos(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue$TransferStack.transfer(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #3
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 26 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #2
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 25 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: CombatTagPlus ForceField Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 95 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Chunk I/O Executor Thread-1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 92 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: ProtocolLib-StructureCompiler 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 90 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 24 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: File IO Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 84 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.FileIOThread.c(SourceFile:51)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.FileIOThread.run(SourceFile:30)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: JDBM Soft Cache Disposer 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 81 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         jdbm.recman.CacheRecordManager$SoftRunnable.run(CacheRecordManager.java:501)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Head Conversion Thread - 1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 80 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Head Conversion Thread - 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 79 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Skript variable save thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 53 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.variables.Variables$2.run(Variables.java:454)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Skript variable save thread for database 'default'
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 66 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.variables.VariablesStorage$1.run(VariablesStorage.java:78)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] Keep alive
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 39 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.sl.run(sl.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] SocketWriter
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 38 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.ul.run(ul.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] SocketReader
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 37 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.cs.StreamDecoder.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.socketRead0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.socketRead(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.implRead(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.InputStreamReader.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.fill(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.tl.run(tl.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Timer-1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 31 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Thread-9
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 30 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:java.net.PlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.DualStackPlainSocketImpl.accept0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.DualStackPlainSocketImpl.socketAccept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.AbstractPlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.PlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.ServerSocket.implAccept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.ServerSocket.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.vexsoftware.votifier.net.VoteReceiver.run(VoteReceiver.java:114)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Timer-0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 28 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 23 | Suspended: false | Native: false | State: BLOCKED
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.util.ListWrapper.add(ListWrapper.java:48)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection$4.initChannel(ServerConnection.java:98)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.bukkit.handlers.BukkitChannelInitializer.initChannel(BukkitChannelInitializer.java:40)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.bukkit.handlers.BukkitChannelInitializer.initChannel(BukkitChannelInitializer.java:15)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:69)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.DefaultChannelPipeline.fireChannelRegistered(DefaultChannelPipeline.java:732)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannel$AbstractUnsafe.register0(AbstractChannel.java:442)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannel$AbstractUnsafe.register(AbstractChannel.java:412)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.SingleThreadEventLoop.register(SingleThreadEventLoop.java:60)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.SingleThreadEventLoop.register(SingleThreadEventLoop.java:48)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.MultithreadEventLoopGroup.register(MultithreadEventLoopGroup.java:64)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.bootstrap.ServerBootstrap$ServerBootstrapAcceptor.channelRead(ServerBootstrap.java:251)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.comphenix.protocol.injector.netty.ProtocolInjector$3.channelRead(ProtocolInjector.java:171)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.mirre.random.utils.comphenix.TinyProtocol$3.channelRead(TinyProtocol.java:143)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.AbstractNioMessageChannel$NioMessageUnsafe.read(AbstractNioMessageChannel.java:92)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Spigot Watchdog Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 22 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.management.ThreadImpl.dumpThreads0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.management.ThreadImpl.dumpAllThreads(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.spigotmc.WatchdogThread.run(WatchdogThread.java:76)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server console handler
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 19 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:169)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.ReadConsoleInputW(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.readConsoleInputHelper(Kernel32.java:761)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.readConsoleKeyInput(Kernel32.java:794)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.WindowsSupport.readConsoleInput(WindowsSupport.java:97)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal.readConsoleInput(WindowsTerminal.java:215)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal.access$000(WindowsTerminal.java:55)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal$1.read(WindowsTerminal.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:169)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:137)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:246)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readCharacter(ConsoleReader.java:2145)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2349)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer$2.run(DedicatedServer.java:79)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Thread-5
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 20 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.isInterrupted(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.interrupted(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireInterruptibly(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.ReentrantLock.lockInterruptibly(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.mojang.util.QueueLogAppender.getNextLogEvent(QueueLogAppender.java:77)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.util.TerminalConsoleWriterThread.run(TerminalConsoleWriterThread.java:25)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: DestroyJavaVM
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 18 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 16 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.getArray(SimpleExpression.java:103)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:106)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:1)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:162)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondPermission.check(CondPermission.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Condition.run(Condition.java:58)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Conditional.walk(Conditional.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:91)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:150)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:110)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:36)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.onPlayerJoin(PlayerList.java:298)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.a(PlayerList.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.b(LoginListener.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.c(LoginListener.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.NetworkManager.a(NetworkManager.java:231)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:813)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:653)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:556)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server Infinisleeper
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer$1.run(DedicatedServer.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: NonBlockingInputStreamThread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 14 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.run(NonBlockingInputStream.java:278)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Snooper Timer
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 12 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Attach Listener
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 5 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Signal Dispatcher
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 4 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Finalizer
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 3 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Reference Handler
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 2 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Reference.tryHandlePending(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/INFO]: Startup script './start.sh' does not exist! Stopping server.
[14:04:13] [Thread-4/INFO]: Stopping server[14:04:13] [Spigot Watchdog Thread/ERROR]: The server has stopped responding!
[14:04:13] [Spigot Watchdog Thread/ERROR]: Please report this to http://www.spigotmc.org/
[14:04:13] [Spigot Watchdog Thread/ERROR]: Be sure to include ALL relevant console errors and Minecraft crash reports
[14:04:13] [Spigot Watchdog Thread/ERROR]: Spigot version: git-Spigot-f94fe8f-d27e6d0 (MC: 1.8.7)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Spigot!):
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 16 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.getArray(SimpleExpression.java:103)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:106)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:1)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:162)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondIsOnline.check(CondIsOnline.java:66)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.While.walk(While.java:50)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:91)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:150)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:110)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:36)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.onPlayerJoin(PlayerList.java:298)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.a(PlayerList.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.b(LoginListener.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.c(LoginListener.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.NetworkManager.a(NetworkManager.java:231)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:813)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:653)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:556)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Entire Thread Dump:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Async Chat Thread - #1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 111 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:42)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:132)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.events.EvtChat$1.execute(EvtChat.java:83)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:24)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:484)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.chat(PlayerConnection.java:1084)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:1022)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PacketPlayInChat$1.run(PacketPlayInChat.java:39)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.FutureTask.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Async Chat Thread - #0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 110 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftFuture.get(CraftFuture.java:42)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.util.Task.callSync(Task.java:132)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.events.EvtChat$1.execute(EvtChat.java:83)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:24)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:484)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.chat(PlayerConnection.java:1084)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:1022)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PacketPlayInChat$1.run(PacketPlayInChat.java:39)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.FutureTask.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: pool-22-thread-7
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 109 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.parkNanos(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue$TransferStack.transfer(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.SynchronousQueue.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #3
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 26 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #2
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 25 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: CombatTagPlus ForceField Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 95 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Chunk I/O Executor Thread-1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 92 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: ProtocolLib-StructureCompiler 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 90 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 24 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.WindowsSelectorImpl.doSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.lockAndDoSelect(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.ch.SelectorImpl.select(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:622)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:310)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: File IO Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 84 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.FileIOThread.c(SourceFile:51)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.FileIOThread.run(SourceFile:30)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: JDBM Soft Cache Disposer 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 81 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         jdbm.recman.CacheRecordManager$SoftRunnable.run(CacheRecordManager.java:501)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Head Conversion Thread - 1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 80 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Head Conversion Thread - 0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 79 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Skript variable save thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 53 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.variables.Variables$2.run(Variables.java:454)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Skript variable save thread for database 'default'
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 66 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.misc.Unsafe.park(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.LockSupport.park(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.variables.VariablesStorage$1.run(VariablesStorage.java:78)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] Keep alive
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 39 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.sl.run(sl.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] SocketWriter
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 38 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.ul.run(ul.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: [CloudBot] SocketReader
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 37 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:sun.nio.cs.StreamDecoder.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.socketRead0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.socketRead(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.SocketInputStream.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.implRead(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.nio.cs.StreamDecoder.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.InputStreamReader.read(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.fill(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.io.BufferedReader.readLine(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         LeVence_CloudBot.tl.run(tl.java)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Timer-1
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 31 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Thread-9
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 30 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:java.net.PlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.DualStackPlainSocketImpl.accept0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.DualStackPlainSocketImpl.socketAccept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.AbstractPlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.PlainSocketImpl.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.ServerSocket.implAccept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.net.ServerSocket.accept(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.vexsoftware.votifier.net.VoteReceiver.run(VoteReceiver.java:114)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Timer-0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 28 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Netty Server IO #0
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 23 | Suspended: false | Native: false | State: BLOCKED
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.util.ListWrapper.add(ListWrapper.java:48)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection$4.initChannel(ServerConnection.java:98)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.bukkit.handlers.BukkitChannelInitializer.initChannel(BukkitChannelInitializer.java:40)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         us.myles.ViaVersion.bukkit.handlers.BukkitChannelInitializer.initChannel(BukkitChannelInitializer.java:15)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:69)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.ChannelInitializer.channelRegistered(ChannelInitializer.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRegistered(AbstractChannelHandlerContext.java:158)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRegistered(AbstractChannelHandlerContext.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.DefaultChannelPipeline.fireChannelRegistered(DefaultChannelPipeline.java:732)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannel$AbstractUnsafe.register0(AbstractChannel.java:442)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannel$AbstractUnsafe.register(AbstractChannel.java:412)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.SingleThreadEventLoop.register(SingleThreadEventLoop.java:60)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.SingleThreadEventLoop.register(SingleThreadEventLoop.java:48)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.MultithreadEventLoopGroup.register(MultithreadEventLoopGroup.java:64)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.bootstrap.ServerBootstrap$ServerBootstrapAcceptor.channelRead(ServerBootstrap.java:251)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.comphenix.protocol.injector.netty.ProtocolInjector$3.channelRead(ProtocolInjector.java:171)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.mirre.random.utils.comphenix.TinyProtocol$3.channelRead(TinyProtocol.java:143)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.AbstractNioMessageChannel$NioMessageUnsafe.read(AbstractNioMessageChannel.java:92)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Spigot Watchdog Thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 22 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.management.ThreadImpl.dumpThreads0(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         sun.management.ThreadImpl.dumpAllThreads(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.spigotmc.WatchdogThread.run(WatchdogThread.java:76)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server console handler
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 19 | Suspended: false | Native: true | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:169)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.ReadConsoleInputW(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.readConsoleInputHelper(Kernel32.java:761)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.Kernel32.readConsoleKeyInput(Kernel32.java:794)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.fusesource.jansi.internal.WindowsSupport.readConsoleInput(WindowsSupport.java:97)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal.readConsoleInput(WindowsTerminal.java:215)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal.access$000(WindowsTerminal.java:55)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.WindowsTerminal$1.read(WindowsTerminal.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:169)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:137)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:246)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readCharacter(ConsoleReader.java:2145)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2349)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer$2.run(DedicatedServer.java:79)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Thread-5
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 20 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.isInterrupted(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.interrupted(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireInterruptibly(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.locks.ReentrantLock.lockInterruptibly(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         com.mojang.util.QueueLogAppender.getNextLogEvent(QueueLogAppender.java:77)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_8_R3.util.TerminalConsoleWriterThread.run(TerminalConsoleWriterThread.java:25)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: DestroyJavaVM
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 18 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server thread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 16 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         Locked on:net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.getArray(SimpleExpression.java:103)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:106)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.expressions.ExprEntity.get(ExprEntity.java:1)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:162)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondPermission.check(CondPermission.java:71)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Condition.run(Condition.java:58)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Conditional.walk(Conditional.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:91)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:53)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:150)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:110)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.TimedRegisteredListener.callEvent(TimedRegisteredListener.java:36)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.onPlayerJoin(PlayerList.java:298)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.PlayerList.a(PlayerList.java:157)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.b(LoginListener.java:144)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.LoginListener.c(LoginListener.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.NetworkManager.a(NetworkManager.java:231)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:148)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:813)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:653)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:556)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Server Infinisleeper
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.sleep(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         net.minecraft.server.v1_8_R3.DedicatedServer$1.run(DedicatedServer.java:54)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: NonBlockingInputStreamThread
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 14 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.run(NonBlockingInputStream.java:278)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Thread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Snooper Timer
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 12 | Suspended: false | Native: false | State: TIMED_WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.mainLoop(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.util.TimerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Attach Listener
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 5 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Signal Dispatcher
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 4 | Suspended: false | Native: false | State: RUNNABLE
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Finalizer
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 3 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.ReferenceQueue.remove(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/ERROR]: Current Thread: Reference Handler
[14:04:13] [Spigot Watchdog Thread/ERROR]:     PID: 2 | Suspended: false | Native: false | State: WAITING
[14:04:13] [Spigot Watchdog Thread/ERROR]:     Stack:
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Native Method)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.Object.wait(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Reference.tryHandlePending(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]:         java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
[14:04:13] [Spigot Watchdog Thread/ERROR]: ------------------------------
[14:04:13] [Spigot Watchdog Thread/INFO]: Startup script './start.sh' does not exist! Stopping server.
[14:04:13] [Thread-4/INFO]: Stopping server
 
Please give me more info about your server, Version, Skript and addons etc.
I will look to this at home. :emoji_grinning:

BTW, nice idea for autobroadcast message system! :emoji_grinning:
 
Hey i have all addons on the newest update... there are no errors in this code but after 5 min. The server stops??


Server version 1.8.7
Skript version: 2.2 Fixes
Sk query the new update
And umbaska newest update...
All my addons are the newest...


Pls help xD
 
@xXSwainXx

Tested on my server , it works well and without any type of crash.
Using last version of Bensku Skript Fork.

Another method for do that and using a lot of less lines
code_language.skript:
every [x] seconds:
    set {_broadcast} to a random integer between 1 and 5
    if {_broadcast} is 1:
#Here the broadcast

If you are using the same version of skript like me , try to remove Umbaska from your server.
 
@YoshYz random values have a big chance to broadcast more than 2 similar messages in a row.

@xXSwainXx there's better example:
code_language.skript:
#messages.yml
broadcast:
 messages:
  - &1DM-News &8» &7Besuche &7doch &7unser &6&o&lForum&7.||url:http://www.darkmystic.de/||ttp:&6&lKlick &7mich &7um &7das &7Forum &7zu &7betreten!
  - message 1
  - message 2
  - message 3

#autobroadcast.sk
every 5 minutes:
 if size of {messages::*} is 0:
  set {messages::*} to yaml list "broadcast.messages" of file "configs/messages.yml"
 loop {messages::*}:
  json("@a","%loop-value%")
  remove loop-value from {messages::*}
  stop trigger
 
Last edited by a moderator:
  • Like
Reactions: FuwariYurayura
I have a similar broadcast script and I don't loop all players, I simply do json("%players%", "json text here") and it works fine
 
Just use "@a" to broadcast to all players.

code_language.skript:
json("@a", "Hello")

json.sk simply uses the /tellraw command, after all.

You can't use "%player%" in a periodic event.

code_language.skript:
every 5 minutes:
    loop all players:
        if {msg} is not set:
            set {msg} to 2
            json("%loop-player%", "&1DM-News &8» &7Besuche &7doch &7unser &6&o&lForum&7.||url:http://www.darkmystic.de/||ttp:&6&lKlick &7mich &7um &7das &7Forum &7zu &7betreten!")
        else if {msg} is 1:
            set {msg} to 2
            json("%loop-player%", "&1DM-News &8» &7Erstelle &7dir &7eine &7eigene &7Insel. &6&o&lKlick||cmd:/is||ttp:&6&lKlick &7mich &7um &7eine &7Insel &7zu &7Erstellen")
        else if {msg} is 2:
            set {msg} to 3
            json("%loop-player%", "&1DM-News &8» &7Du &7siehst &7einen &7Hacker&7? &6&o&lKlick||sgt:/report Spielername Hacking||ttp:&6&lKlick &7mich &7um &7einen &7Spieler &7zu &7Reporten!")
        else if {msg} is 3:
            set {msg} to 4
            json("%loop-player%", "&1DM-News &8» &7Du &7hast &7noch &7keinen &7Foren &7account&7? &6&o&lKlick||sgt:/forum e-mail passwort||ttp:&6&lKlick &7mich &7um &7einen &7Foren &7account &7zu &7erstellen")
        else if {msg} is 4:
            set {msg} to 1
            json("%loop-player%", "&1DM-News &8» &7Besuche &7doch &7unseren &6&o&lShop&7.||url:http://www.darkmystic.de/shop||ttp:&6&lKlick &7mich &7um &7den &7Shop &7zu &7betreten!")
This would send a different message to each player. An autobroadcast system typically sends the same message to everyone.

@YoshYz random values have a big chance to broadcast more than 2 similar messages in a row.

@xXSwainXx there's better example:
code_language.skript:
#messages.yml
broadcast:
 messages:
  - &1DM-News &8» &7Besuche &7doch &7unser &6&o&lForum&7.||url:http://www.darkmystic.de/||ttp:&6&lKlick &7mich &7um &7das &7Forum &7zu &7betreten!
  - message 1
  - message 2
  - message 3

#autobroadcast.sk
every 5 minutes:
 if size of {messages::*} is 0:
  set {messages::*} to yaml list "broadcast.messages" of file "configs/messages.yml"
 loop {messages::*}:
  loop all players:
   json("%loop-value-2%","%loop-value-1%")
   remove loop-value-1 from {messages::*}
   stop trigger
Same problem here. Except this one will only send a message to one player then stop executing all together?

Most of these problems can be solved by moving the message-selection logic out of the player loop.
 
Just use "@a" to broadcast to all players.

code_language.skript:
json("@a", "Hello")

json.sk simply uses the /tellraw command, after all.


This would send a different message to each player. An autobroadcast system typically sends the same message to everyone.


Same problem here. Except this one will only send a message to one player then stop executing all together?

Most of these problems can be solved by moving the message-selection logic out of the player loop.
Whoops... i missclicked on phone spaces on last 2 lines

@Rezz edited, thanks)
 
Last edited by a moderator:
Status
Not open for further replies.