%player's group%

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

Dan_k

Member
Apr 25, 2019
28
0
0
19
Soo,I can't find Skripts that will add %player's group%. If you know one commnet down below. It can be connected to permissionex or vault!
 
Soo,I can't find Skripts that will add %player's group%. If you know one commnet down below. It can be connected to permissionex or vault!
If you have SharpSk 1.6.3 or TuSKe 1.6.3, u can put:
code_language.skript:
#expression
groups of (player/argument/offline player)
# in a text.
every 10 minutes:
    loop all players:
        send "&6------------------------------" to loop-player
        send "&bYour rank is &9%groups of loop-player%" to loop-player
        send "&6------------------------------" to loop-player
(Based in https://docs.skunity.com/syntax/search/Pex)
 
If you have SharpSk 1.6.3 or TuSKe 1.6.3, u can put:
code_language.skript:
#expression
groups of (player/argument/offline player)
# in a text.
every 10 minutes:
    loop all players:
        send "&6------------------------------" to loop-player
        send "&bYour rank is &9%groups of loop-player%" to loop-player
        send "&6------------------------------" to loop-player
(Based in https://docs.skunity.com/syntax/search/Pex)

Can I use it like this??
Code:
command /group:
    if %groups of player% is Owner:
        send "&4Yay you did it!"
 
Sometimes I wish I can just use
.percent
On the forum
 

Attachments

  • B51E8D74-B152-4FB1-AB13-D2A2324AF984.png
    B51E8D74-B152-4FB1-AB13-D2A2324AF984.png
    110.1 KB · Views: 293
Can I use it like this??
Code:
command /group:
    if %groups of player% is Owner:
        send "&4Yay you did it!"
I don't know what's your spigot and skript version, but the percent symbol only used in message, things that have text above (in quotes ... let's go ...) or things like that.
for example:
code_language.skript:
command /rankofme:
    trigger:
        message "%groups of player%"

command /beforecmd [<string>]:
    trigger:
        argument 1 is set:
            argument 1 is "withperc": #and local variable.
                set {_rank} to groups of player
                message "%{_rank}%"
            argument 1 is "withoutperc": #and local variable.
                set {_rank} to groups of player
                message {_rank}
#It's the same, but, you understand.
 
I don't know what's your spigot and skript version, but the percent symbol only used in message, things that have text above (in quotes ... let's go ...) or things like that.
for example:
code_language.skript:
command /rankofme:
    trigger:
        message "%groups of player%"

command /beforecmd [<string>]:
    trigger:
        argument 1 is set:
            argument 1 is "withperc": #and local variable.
                set {_rank} to groups of player
                message "%{_rank}%"
            argument 1 is "withoutperc": #and local variable.
                set {_rank} to groups of player
                message {_rank}
#It's the same, but, you understand.

Soo, I want to do something like. How to make it correct?
Code:
on left click:
if players is sneaking:
    every 1 tick:
        loop all players:
            if player's group is Mage:
               if player's level is between 5 to 9:
                  Send "&4Wow You did it!"
 
Soo, I want to do something like. How to make it correct?
Code:
on left click:
if players is sneaking:
    every 1 tick:
        loop all players:
            if player's group is Mage:
               if player's level is between 5 to 9:
                  Send "&4Wow You did it!"
nope, when you loop all players, use the "loop-player", example:
code_language.skript:
every 1 tick
    loop all players:
        while loop-player is sneaking: #i dont know if this is correct.
            if loop-player's group is "Mage": #or if this does work, try removing quotes.
                if loop-player's level is between 5 and 9:
                    send "&4Wow You did it!"
                    wait 1 tick
 
nope, when you loop all players, use the "loop-player", example:
code_language.skript:
every 1 tick
    loop all players:
        while loop-player is sneaking: #i dont know if this is correct.
            if loop-player's group is "Mage": #or if this does work, try removing quotes.
                if loop-player's level is between 5 and 9:
                    send "&4Wow You did it!"
                    wait 1 tick
"loop-player's group" which addon can add it?
 
"loop-player's group" which addon can add it?
If I'm not mistaken, no addon has that condition, but if you want to do it in a usable way. Try using permissions, for example:
code_language.skript:
every 1 tick:
    loop all players:
        while loop-player is sneaking:
            if loop-player has permission "mage.sneaking":
                if loop-player's level is between 5 and 9:
                    send "&4Wow you did it!" to loop-player
                    wait 1 tick
 
If I'm not mistaken, no addon has that condition, but if you want to do it in a usable way. Try using permissions, for example:
code_language.skript:
every 1 tick:
    loop all players:
        while loop-player is sneaking:
            if loop-player has permission "mage.sneaking":
                if loop-player's level is between 5 and 9:
                    send "&4Wow you did it!" to loop-player
                    wait 1 tick
Wow, you helped me a lot, ty, I will try it when I will come home!
 
I hope it works :emoji_slight_smile:
Then I put this code my server crashes! Here is the errors!
Code:
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:361)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:739)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Entire Thread Dump:
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Async Chat Thread - #0
28.04 14:39:26 [Server] ERROR PID: 113 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:460)
28.04 14:39:26 [Server] ERROR java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362)
28.04 14:39:26 [Server] ERROR java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:941)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1073)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-15-thread-1
28.04 14:39:26 [Server] ERROR PID: 111 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Chunk I/O Executor Thread-1
28.04 14:39:26 [Server] ERROR PID: 110 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-42-thread-1
28.04 14:39:26 [Server] ERROR PID: 109 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Netty Epoll Server IO #1
28.04 14:39:26 [Server] ERROR PID: 105 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.Native.epollWait0(Native Method)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.Native.epollWait(Native.java:114)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:235)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:252)
28.04 14:39:26 [Server] ERROR io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-12-thread-3
28.04 14:39:26 [Server] ERROR PID: 104 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:467)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1073)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Java2D Disposer
28.04 14:39:26 [Server] ERROR PID: 98 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:165)
28.04 14:39:26 [Server] ERROR sun.java2d.Disposer.run(Disposer.java:148)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: File IO Thread
28.04 14:39:26 [Server] ERROR PID: 96 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Thread.sleep(Native Method)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.FileIOThread.c(SourceFile:51)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.FileIOThread.run(SourceFile:30)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-4
28.04 14:39:26 [Server] ERROR PID: 93 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-3
28.04 14:39:26 [Server] ERROR PID: 76 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Skript variable save thread
28.04 14:39:26 [Server] ERROR PID: 41 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR ch.njol.skript.variables.Variables$2.run(Variables.java:548)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Skript variable save thread for database 'default'
28.04 14:39:26 [Server] ERROR PID: 74 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR ch.njol.skript.variables.VariablesStorage$1.run(VariablesStorage.java:76)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-2
28.04 14:39:26 [Server] ERROR PID: 57 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-1
28.04 14:39:26 [Server] ERROR PID: 56 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Object.java:502)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:526)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: RxIoScheduler-1 (Evictor)
28.04 14:39:26 [Server] ERROR PID: 55 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: RxScheduledExecutorPool-2
28.04 14:39:26 [Server] ERROR PID: 54 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: RxScheduledExecutorPool-1
28.04 14:39:26 [Server] ERROR PID: 53 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Metrics updating thread of Maplands
28.04 14:39:26 [Server] ERROR PID: 47 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Thread.sleep(Native Method)
28.04 14:39:26 [Server] ERROR com.bergerkiller.bukkit.common.metrics.Metrics$1.run(Metrics.java:277)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-16-thread-1
28.04 14:39:26 [Server] ERROR PID: 46 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Abandoned connection cleanup thread
28.04 14:39:26 [Server] ERROR PID: 45 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
28.04 14:39:26 [Server] ERROR com.mysql.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:64)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Thread-17
28.04 14:39:26 [Server] ERROR PID: 44 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:403)
28.04 14:39:26 [Server] ERROR ch.njol.skript.ScriptLoader$AsyncLoaderThread.run(ScriptLoader.java:325)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-0
28.04 14:39:26 [Server] ERROR PID: 39 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-12-thread-2 Acceptor0 [email protected]:8123
28.04 14:39:26 [Server] ERROR PID: 38 | Suspended: false | Native: true | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Thread is waiting on monitor(s):
28.04 14:39:26 [Server] ERROR Locked on:sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method)
28.04 14:39:26 [Server] ERROR sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:422)
28.04 14:39:26 [Server] ERROR sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
28.04 14:39:26 [Server] ERROR org.dynmap.jetty.server.nio.SelectChannelConnector.accept(SelectChannelConnector.java:109)
28.04 14:39:26 [Server] ERROR org.dynmap.jetty.server.AbstractConnector$Acceptor.run(AbstractConnector.java:938)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-12-thread-1 Selector0
28.04 14:39:26 [Server] ERROR PID: 37 | Suspended: false | Native: true | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Thread is waiting on monitor(s):
28.04 14:39:26 [Server] ERROR Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
28.04 14:39:26 [Server] ERROR Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
28.04 14:39:26 [Server] ERROR Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.nio.ch.EPollArrayWrapper.epollWait(Native Method)
28.04 14:39:26 [Server] ERROR sun.nio.ch.EPollArrayWrapper.poll(EPollArrayWrapper.java:269)
28.04 14:39:26 [Server] ERROR sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:93)
28.04 14:39:26 [Server] ERROR sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
28.04 14:39:26 [Server] ERROR sun.nio.ch.SelectorImpl.select(SelectorImpl.java:97)
28.04 14:39:26 [Server] ERROR org.dynmap.jetty.io.nio.SelectorManager$SelectSet.doSelect(SelectorManager.java:569)
28.04 14:39:26 [Server] ERROR org.dynmap.jetty.io.nio.SelectorManager$1.run(SelectorManager.java:290)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: HashSessionScavenger-0
28.04 14:39:26 [Server] ERROR PID: 35 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Dynmap Render Thread
28.04 14:39:26 [Server] ERROR PID: 31 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Dynmap Render Thread
28.04 14:39:26 [Server] ERROR PID: 30 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1088)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Dynmap Render Thread
28.04 14:39:26 [Server] ERROR PID: 29 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftFuture.get(CraftFuture.java:50)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftFuture.get(CraftFuture.java:38)
28.04 14:39:26 [Server] ERROR org.dynmap.MapManager$CheckWorldTimes.run(MapManager.java:804)
28.04 14:39:26 [Server] ERROR org.dynmap.MapManager$DynmapScheduledThreadPoolExecutor$2.run(MapManager.java:206)
28.04 14:39:26 [Server] ERROR java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
28.04 14:39:26 [Server] ERROR java.util.concurrent.FutureTask.run(FutureTask.java:266)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Thread-8
28.04 14:39:26 [Server] ERROR PID: 28 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR org.dynmap.AsynchronousQueue.pop(AsynchronousQueue.java:44)
28.04 14:39:26 [Server] ERROR org.dynmap.AsynchronousQueue.running(AsynchronousQueue.java:128)
28.04 14:39:26 [Server] ERROR org.dynmap.AsynchronousQueue.access$000(AsynchronousQueue.java:9)
28.04 14:39:26 [Server] ERROR org.dynmap.AsynchronousQueue$1.run(AsynchronousQueue.java:83)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Netty Epoll Server IO #0
28.04 14:39:26 [Server] ERROR PID: 24 | Suspended: false | Native: true | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.Native.epollWait0(Native Method)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.Native.epollWait(Native.java:114)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:235)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:252)
28.04 14:39:26 [Server] ERROR io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: ObjectCleanerThread
28.04 14:39:26 [Server] ERROR PID: 23 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
28.04 14:39:26 [Server] ERROR io.netty.util.internal.ObjectCleaner$1.run(ObjectCleaner.java:54)
28.04 14:39:26 [Server] ERROR io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Spigot Metrics Thread
28.04 14:39:26 [Server] ERROR PID: 22 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Spigot Watchdog Thread
28.04 14:39:26 [Server] ERROR PID: 21 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.management.ThreadImpl.dumpThreads0(Native Method)
28.04 14:39:26 [Server] ERROR sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:454)
28.04 14:39:26 [Server] ERROR org.spigotmc.WatchdogThread.run(WatchdogThread.java:76)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Server console handler
28.04 14:39:26 [Server] ERROR PID: 19 | Suspended: false | Native: true | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Thread is waiting on monitor(s):
28.04 14:39:26 [Server] ERROR Locked on:java.io.BufferedInputStream.read(BufferedInputStream.java:265)
28.04 14:39:26 [Server] ERROR Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
28.04 14:39:26 [Server] ERROR Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.io.FileInputStream.readBytes(Native Method)
28.04 14:39:26 [Server] ERROR java.io.FileInputStream.read(FileInputStream.java:255)
28.04 14:39:26 [Server] ERROR java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
28.04 14:39:26 [Server] ERROR java.io.BufferedInputStream.read(BufferedInputStream.java:265)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:248)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readCharacter(ConsoleReader.java:2145)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLineSimple(ConsoleReader.java:3183)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2333)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2269)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2257)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.DedicatedServer$2.run(DedicatedServer.java:87)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Thread-3
28.04 14:39:26 [Server] ERROR PID: 20 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR com.mojang.util.QueueLogAppender.getNextLogEvent(QueueLogAppender.java:77)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.util.TerminalConsoleWriterThread.run(TerminalConsoleWriterThread.java:27)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: DestroyJavaVM
28.04 14:39:26 [Server] ERROR PID: 18 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Server thread
28.04 14:39:26 [Server] ERROR PID: 16 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.util.WeakHashMap.getTable(WeakHashMap.java:350)
28.04 14:39:26 [Server] ERROR java.util.WeakHashMap.get(WeakHashMap.java:397)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.Loop.getCurrent(Loop.java:105)
28.04 14:39:26 [Server] ERROR ch.njol.skript.expressions.ExprLoopValue.get(ExprLoopValue.java:175)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:161)
28.04 14:39:26 [Server] ERROR ch.njol.skript.conditions.base.PropertyCondition.check(PropertyCondition.java:134)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.While.walk(While.java:48)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.Trigger.execute(Trigger.java:57)
28.04 14:39:26 [Server] ERROR ch.njol.skript.events.EvtPeriodical.execute(EvtPeriodical.java:96)
28.04 14:39:26 [Server] ERROR ch.njol.skript.events.EvtPeriodical$1.run(EvtPeriodical.java:110)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:76)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:361)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:739)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Server Infinisleeper
28.04 14:39:26 [Server] ERROR PID: 17 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Thread.sleep(Native Method)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.DedicatedServer$1.run(DedicatedServer.java:60)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Snooper Timer
28.04 14:39:26 [Server] ERROR PID: 13 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Signal Dispatcher
28.04 14:39:26 [Server] ERROR PID: 4 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Finalizer
28.04 14:39:26 [Server] ERROR PID: 3 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:165)
28.04 14:39:26 [Server] ERROR java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:216)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Reference Handler
28.04 14:39:26 [Server] ERROR PID: 2 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Object.java:502)
28.04 14:39:26 [Server] ERROR java.lang.ref.Reference.tryHandlePending(Reference.java:191)
28.04 14:39:26 [Server] ERROR java.lang.ref.Reference$ReferenceHandler.run(Reference.java:153)
28.04 14:39:26 [Server] ERROR ------------------------------
[doublepost=1556459349,1556455506][/doublepost]
I hope it works :emoji_slight_smile:
Oh yeah, And I also want to how, how to make all this code run then player click shift+right click?
 
Then I put this code my server crashes! Here is the errors!
Java:
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:361)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:739)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Entire Thread Dump:
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Async Chat Thread - #0
28.04 14:39:26 [Server] ERROR PID: 113 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:460)
28.04 14:39:26 [Server] ERROR java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362)
28.04 14:39:26 [Server] ERROR java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:941)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1073)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-15-thread-1
28.04 14:39:26 [Server] ERROR PID: 111 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Chunk I/O Executor Thread-1
28.04 14:39:26 [Server] ERROR PID: 110 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-42-thread-1
28.04 14:39:26 [Server] ERROR PID: 109 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Netty Epoll Server IO #1
28.04 14:39:26 [Server] ERROR PID: 105 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.Native.epollWait0(Native Method)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.Native.epollWait(Native.java:114)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:235)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:252)
28.04 14:39:26 [Server] ERROR io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-12-thread-3
28.04 14:39:26 [Server] ERROR PID: 104 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:467)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1073)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Java2D Disposer
28.04 14:39:26 [Server] ERROR PID: 98 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:165)
28.04 14:39:26 [Server] ERROR sun.java2d.Disposer.run(Disposer.java:148)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: File IO Thread
28.04 14:39:26 [Server] ERROR PID: 96 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Thread.sleep(Native Method)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.FileIOThread.c(SourceFile:51)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.FileIOThread.run(SourceFile:30)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-4
28.04 14:39:26 [Server] ERROR PID: 93 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-3
28.04 14:39:26 [Server] ERROR PID: 76 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Skript variable save thread
28.04 14:39:26 [Server] ERROR PID: 41 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR ch.njol.skript.variables.Variables$2.run(Variables.java:548)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Skript variable save thread for database 'default'
28.04 14:39:26 [Server] ERROR PID: 74 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR ch.njol.skript.variables.VariablesStorage$1.run(VariablesStorage.java:76)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-2
28.04 14:39:26 [Server] ERROR PID: 57 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-1
28.04 14:39:26 [Server] ERROR PID: 56 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Object.java:502)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:526)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: RxIoScheduler-1 (Evictor)
28.04 14:39:26 [Server] ERROR PID: 55 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: RxScheduledExecutorPool-2
28.04 14:39:26 [Server] ERROR PID: 54 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: RxScheduledExecutorPool-1
28.04 14:39:26 [Server] ERROR PID: 53 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Metrics updating thread of Maplands
28.04 14:39:26 [Server] ERROR PID: 47 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Thread.sleep(Native Method)
28.04 14:39:26 [Server] ERROR com.bergerkiller.bukkit.common.metrics.Metrics$1.run(Metrics.java:277)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-16-thread-1
28.04 14:39:26 [Server] ERROR PID: 46 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Abandoned connection cleanup thread
28.04 14:39:26 [Server] ERROR PID: 45 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
28.04 14:39:26 [Server] ERROR com.mysql.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:64)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Thread-17
28.04 14:39:26 [Server] ERROR PID: 44 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:403)
28.04 14:39:26 [Server] ERROR ch.njol.skript.ScriptLoader$AsyncLoaderThread.run(ScriptLoader.java:325)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Timer-0
28.04 14:39:26 [Server] ERROR PID: 39 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-12-thread-2 Acceptor0 [email protected]:8123
28.04 14:39:26 [Server] ERROR PID: 38 | Suspended: false | Native: true | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Thread is waiting on monitor(s):
28.04 14:39:26 [Server] ERROR Locked on:sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method)
28.04 14:39:26 [Server] ERROR sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:422)
28.04 14:39:26 [Server] ERROR sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
28.04 14:39:26 [Server] ERROR org.dynmap.jetty.server.nio.SelectChannelConnector.accept(SelectChannelConnector.java:109)
28.04 14:39:26 [Server] ERROR org.dynmap.jetty.server.AbstractConnector$Acceptor.run(AbstractConnector.java:938)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: pool-12-thread-1 Selector0
28.04 14:39:26 [Server] ERROR PID: 37 | Suspended: false | Native: true | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Thread is waiting on monitor(s):
28.04 14:39:26 [Server] ERROR Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
28.04 14:39:26 [Server] ERROR Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
28.04 14:39:26 [Server] ERROR Locked on:sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.nio.ch.EPollArrayWrapper.epollWait(Native Method)
28.04 14:39:26 [Server] ERROR sun.nio.ch.EPollArrayWrapper.poll(EPollArrayWrapper.java:269)
28.04 14:39:26 [Server] ERROR sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:93)
28.04 14:39:26 [Server] ERROR sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
28.04 14:39:26 [Server] ERROR sun.nio.ch.SelectorImpl.select(SelectorImpl.java:97)
28.04 14:39:26 [Server] ERROR org.dynmap.jetty.io.nio.SelectorManager$SelectSet.doSelect(SelectorManager.java:569)
28.04 14:39:26 [Server] ERROR org.dynmap.jetty.io.nio.SelectorManager$1.run(SelectorManager.java:290)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: HashSessionScavenger-0
28.04 14:39:26 [Server] ERROR PID: 35 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Dynmap Render Thread
28.04 14:39:26 [Server] ERROR PID: 31 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Dynmap Render Thread
28.04 14:39:26 [Server] ERROR PID: 30 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1088)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Dynmap Render Thread
28.04 14:39:26 [Server] ERROR PID: 29 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftFuture.get(CraftFuture.java:50)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftFuture.get(CraftFuture.java:38)
28.04 14:39:26 [Server] ERROR org.dynmap.MapManager$CheckWorldTimes.run(MapManager.java:804)
28.04 14:39:26 [Server] ERROR org.dynmap.MapManager$DynmapScheduledThreadPoolExecutor$2.run(MapManager.java:206)
28.04 14:39:26 [Server] ERROR java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
28.04 14:39:26 [Server] ERROR java.util.concurrent.FutureTask.run(FutureTask.java:266)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
28.04 14:39:26 [Server] ERROR java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Thread-8
28.04 14:39:26 [Server] ERROR PID: 28 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR org.dynmap.AsynchronousQueue.pop(AsynchronousQueue.java:44)
28.04 14:39:26 [Server] ERROR org.dynmap.AsynchronousQueue.running(AsynchronousQueue.java:128)
28.04 14:39:26 [Server] ERROR org.dynmap.AsynchronousQueue.access$000(AsynchronousQueue.java:9)
28.04 14:39:26 [Server] ERROR org.dynmap.AsynchronousQueue$1.run(AsynchronousQueue.java:83)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Netty Epoll Server IO #0
28.04 14:39:26 [Server] ERROR PID: 24 | Suspended: false | Native: true | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.Native.epollWait0(Native Method)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.Native.epollWait(Native.java:114)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.EpollEventLoop.epollWait(EpollEventLoop.java:235)
28.04 14:39:26 [Server] ERROR io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:252)
28.04 14:39:26 [Server] ERROR io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: ObjectCleanerThread
28.04 14:39:26 [Server] ERROR PID: 23 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
28.04 14:39:26 [Server] ERROR io.netty.util.internal.ObjectCleaner$1.run(ObjectCleaner.java:54)
28.04 14:39:26 [Server] ERROR io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Spigot Metrics Thread
28.04 14:39:26 [Server] ERROR PID: 22 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Spigot Watchdog Thread
28.04 14:39:26 [Server] ERROR PID: 21 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.management.ThreadImpl.dumpThreads0(Native Method)
28.04 14:39:26 [Server] ERROR sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:454)
28.04 14:39:26 [Server] ERROR org.spigotmc.WatchdogThread.run(WatchdogThread.java:76)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Server console handler
28.04 14:39:26 [Server] ERROR PID: 19 | Suspended: false | Native: true | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Thread is waiting on monitor(s):
28.04 14:39:26 [Server] ERROR Locked on:java.io.BufferedInputStream.read(BufferedInputStream.java:265)
28.04 14:39:26 [Server] ERROR Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
28.04 14:39:26 [Server] ERROR Locked on:org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.io.FileInputStream.readBytes(Native Method)
28.04 14:39:26 [Server] ERROR java.io.FileInputStream.read(FileInputStream.java:255)
28.04 14:39:26 [Server] ERROR java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
28.04 14:39:26 [Server] ERROR java.io.BufferedInputStream.read(BufferedInputStream.java:265)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.internal.NonBlockingInputStream.read(NonBlockingInputStream.java:248)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:261)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.internal.InputStreamReader.read(InputStreamReader.java:198)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readCharacter(ConsoleReader.java:2145)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLineSimple(ConsoleReader.java:3183)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2333)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2269)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.libs.jline.console.ConsoleReader.readLine(ConsoleReader.java:2257)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.DedicatedServer$2.run(DedicatedServer.java:87)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Thread-3
28.04 14:39:26 [Server] ERROR PID: 20 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR sun.misc.Unsafe.park(Native Method)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
28.04 14:39:26 [Server] ERROR java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
28.04 14:39:26 [Server] ERROR java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
28.04 14:39:26 [Server] ERROR com.mojang.util.QueueLogAppender.getNextLogEvent(QueueLogAppender.java:77)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.util.TerminalConsoleWriterThread.run(TerminalConsoleWriterThread.java:27)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: DestroyJavaVM
28.04 14:39:26 [Server] ERROR PID: 18 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Server thread
28.04 14:39:26 [Server] ERROR PID: 16 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.util.WeakHashMap.getTable(WeakHashMap.java:350)
28.04 14:39:26 [Server] ERROR java.util.WeakHashMap.get(WeakHashMap.java:397)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.Loop.getCurrent(Loop.java:105)
28.04 14:39:26 [Server] ERROR ch.njol.skript.expressions.ExprLoopValue.get(ExprLoopValue.java:175)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:161)
28.04 14:39:26 [Server] ERROR ch.njol.skript.conditions.base.PropertyCondition.check(PropertyCondition.java:134)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.While.walk(While.java:48)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
28.04 14:39:26 [Server] ERROR ch.njol.skript.lang.Trigger.execute(Trigger.java:57)
28.04 14:39:26 [Server] ERROR ch.njol.skript.events.EvtPeriodical.execute(EvtPeriodical.java:96)
28.04 14:39:26 [Server] ERROR ch.njol.skript.events.EvtPeriodical$1.run(EvtPeriodical.java:110)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:76)
28.04 14:39:26 [Server] ERROR org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:361)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:739)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577)
28.04 14:39:26 [Server] ERROR java.lang.Thread.run(Thread.java:748)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Server Infinisleeper
28.04 14:39:26 [Server] ERROR PID: 17 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Thread.sleep(Native Method)
28.04 14:39:26 [Server] ERROR net.minecraft.server.v1_12_R1.DedicatedServer$1.run(DedicatedServer.java:60)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Snooper Timer
28.04 14:39:26 [Server] ERROR PID: 13 | Suspended: false | Native: false | State: TIMED_WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.mainLoop(Timer.java:552)
28.04 14:39:26 [Server] ERROR java.util.TimerThread.run(Timer.java:505)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Signal Dispatcher
28.04 14:39:26 [Server] ERROR PID: 4 | Suspended: false | Native: false | State: RUNNABLE
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Finalizer
28.04 14:39:26 [Server] ERROR PID: 3 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
28.04 14:39:26 [Server] ERROR java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:165)
28.04 14:39:26 [Server] ERROR java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:216)
28.04 14:39:26 [Server] ERROR ------------------------------
28.04 14:39:26 [Server] ERROR Current Thread: Reference Handler
28.04 14:39:26 [Server] ERROR PID: 2 | Suspended: false | Native: false | State: WAITING
28.04 14:39:26 [Server] ERROR Stack:
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Native Method)
28.04 14:39:26 [Server] ERROR java.lang.Object.wait(Object.java:502)
28.04 14:39:26 [Server] ERROR java.lang.ref.Reference.tryHandlePending(Reference.java:191)
28.04 14:39:26 [Server] ERROR java.lang.ref.Reference$ReferenceHandler.run(Reference.java:153)
28.04 14:39:26 [Server] ERROR ------------------------------
[doublepost=1556459349,1556455506][/doublepost]
Oh yeah, And I also want to how, how to make all this code run then player click shift+right click?
but when you reload your skript, whats send in the chat?
 
If I'm not mistaken, no addon has that condition, but if you want to do it in a usable way. Try using permissions, for example:
code_language.skript:
every 1 tick:
    loop all players:
        while loop-player is sneaking:
            if loop-player has permission "mage.sneaking":
                if loop-player's level is between 5 and 9:
                    send "&4Wow you did it!" to loop-player
                    wait 1 tick
This is really inefficient code (so I hope you're joking, but I can't tell). First every 1 tick, then loop all players (which probably won't even do what it's supposed to do, since you have a inconsistent delay in the loop, because of the while loop: if the first player of `all players` is sneaking, the code will never be ran for the other players), then a while loop, which will crash the server unless the 2 conditions within it return true (since it will only wait 1 tick if the 2 conditions return true). So I have no idea what this code is even supposed to do, but it won't work nevertheless
 
This is really inefficient code (so I hope you're joking, but I can't tell). First every 1 tick, then loop all players (which probably won't even do what it's supposed to do, since you have a inconsistent delay in the loop, because of the while loop: if the first player of `all players` is sneaking, the code will never be ran for the other players), then a while loop, which will crash the server unless the 2 conditions within it return true (since it will only wait 1 tick if the 2 conditions return true). So I have no idea what this code is even supposed to do, but it won't work nevertheless
How can I loop a specific player that clicks shift+right click.
 
Status
Not open for further replies.