Paste #113257: Unnamed Server Log Paste

Date: 2023/08/03 03:31:40 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044


[10:30:03] [ServerMain/INFO]: [SparkProviderSource] Purpur: Using user-provided spark plugin instead of our own.
[10:30:06] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[10:30:07] [ServerMain/INFO]: Loaded 7 recipes
[10:30:07] [Server thread/INFO]: Starting minecraft server version 1.20.1
[10:30:07] [Server thread/INFO]: Loading properties
[10:30:07] [Server thread/INFO]: This server is running Purpur version git-Purpur-2023 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 41b121b on HEAD)
[10:30:07] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:30:07] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:30:07] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[10:30:08] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[10:30:08] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[10:30:08] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[10:30:08] [Server thread/INFO]: Default game type: SURVIVAL
[10:30:08] [Server thread/INFO]: Generating keypair
[10:30:08] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[10:30:08] [Server thread/INFO]: Using epoll channel type
[10:30:08] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[10:30:08] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[10:30:09] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[10:30:09] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[10:30:09] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[10:30:09] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[10:30:09] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loading 1 libraries... please wait
[10:30:09] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/container/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[10:30:09] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[10:30:09] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:30:11] [Server thread/WARN]: Legacy plugin AntiNetherRoof v1.2.4 does not specify an api-version.
[10:30:11] [Server thread/WARN]: Legacy plugin RedstoneLimiter v0.0.3 does not specify an api-version.
[10:30:11] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[10:30:11] [Server thread/WARN]: Legacy plugin CMCAlert v1.0-SNAPSHOT does not specify an api-version.
[10:30:11] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.88
[10:30:12] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3
[10:30:12] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.5-SNAPSHOT-518;685248d
[10:30:13] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6315fad2]
[10:30:13] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9-SNAPSHOT+2241-c0cbe27
[10:30:13] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0-SNAPSHOT-652
[10:30:13] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.1) has not yet been tested! Proceed with caution.
[10:30:13] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[10:30:13] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.7.0-beta2
[10:30:13] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[10:30:13] [Server thread/INFO]: [Graves] Loading server plugin Graves v4.9
[10:30:13] [Server thread/INFO]: [Graves] Integration: Hooked into WorldGuard 7.0.9-SNAPSHOT+2241-c0cbe27.
[10:30:13] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1-dev+37-b2ae28b
[10:30:13] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[10:30:13] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.10 build-12/06/2023
[10:30:13] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[10:30:13] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.8.11
[10:30:13] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.7.1.307-Beta
[10:30:13] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.32-SNAPSHOT (build 3176)
[10:30:13] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[10:30:13] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.2-SNAPSHOT (b59-2278589)
[10:30:14] [Server thread/INFO]: [floodgate] Took 270ms to boot Floodgate
[10:30:14] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.3.0.2
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.2.0.1.1085
[10:30:14] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading expansions...
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v16.5'...
[10:30:14] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.9-SNAPSHOT+2241-c0cbe27
[10:30:14] [Server thread/INFO]: [CombatLogX]  
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'EssentialsX Compatibility v16.3'...
[10:30:14] [Server thread/INFO]: [CombatLogX]  
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'Newbie Helper v17.0'...
[10:30:14] [Server thread/INFO]: [CombatLogX]  
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'Citizens Compatibility v17.0'...
[10:30:14] [Server thread/INFO]: [CombatLogX]  
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v17.1'...
[10:30:14] [Server thread/INFO]: [CombatLogX]  
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v16.9'...
[10:30:14] [Server thread/INFO]: [CombatLogX]  
[10:30:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'SuperVanish/PremiumVanish Compatibility v16.2'...
[10:30:14] [Server thread/INFO]: [CombatLogX]  
[10:30:14] [Server thread/INFO]: [CombatLogX] Successfully loaded 7 expansions.
[10:30:14] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.22.2
[10:30:14] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.87.0
[10:30:14] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.3
[10:30:14] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.10
[10:30:14] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.2
[10:30:14] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.3
[10:30:14] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.1.2-SNAPSHOT
[10:30:14] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[10:30:14] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[10:30:14] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[10:30:14] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[10:30:14] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.3
[10:30:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:30:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:30:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[10:30:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'LuckPerms' to create a bStats instance!
[10:30:14] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[10:30:14] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[10:30:14] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.0.0
[10:30:14] [Server thread/INFO]: [Deathlocation] Loading server plugin Deathlocation v1.0-SNAPSHOT
[10:30:14] [Server thread/INFO]: [AntiNetherRoof] Loading server plugin AntiNetherRoof v1.2.4
[10:30:14] [Server thread/INFO]: [TitleManager] Loading server plugin TitleManager v2.3.6
[10:30:14] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[10:30:14] [Server thread/INFO]: [RocketPlaceholders] Loading server plugin RocketPlaceholders v2.3
[10:30:14] [Server thread/INFO]: [RocketPlaceholders] Loading libraries, please wait..
[10:30:14] [Server thread/INFO]: [RocketPlaceholders] Loaded all libraries in 86ms.
[10:30:14] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[10:30:14] [Server thread/INFO]: [SilkSpawners_v2] Loading server plugin SilkSpawners_v2 v2.2.1
[10:30:14] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart vBuild 54a
[10:30:14] [Server thread/INFO]: [CustomDeathMessages] Loading server plugin CustomDeathMessages v2.0.1
[10:30:14] [Server thread/INFO]: [ajParkour] Loading server plugin ajParkour v2.12.10
[10:30:14] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v2.9.14.5
[10:30:14] [Server thread/INFO]: [RedstoneLimiter] Loading server plugin RedstoneLimiter v0.0.3
[10:30:14] [Server thread/INFO]: [VoidSpawn] Loading server plugin VoidSpawn v1.20.0
[10:30:14] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.22.2
[10:30:14] [Server thread/INFO]: [EZColors] Loading server plugin EZColors v2.2.3
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.6.8
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[10:30:14] [Thread-10/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[10:30:14] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[10:30:14] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.4.0
[10:30:14] [Server thread/INFO]: [Analyse] Loading server plugin Analyse v2.0.8
[10:30:14] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.1-dev+37-b2ae28b
[10:30:14] [Server thread/INFO]: [Sellwand] Loading server plugin Sellwand v1.5.4
[10:30:14] [Server thread/INFO]: [Mclogs] Loading server plugin Mclogs v2.4.1
[10:30:14] [Server thread/INFO]: [DailyRewards] Loading server plugin DailyRewards v1.3.9
[10:30:14] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.3.0
[10:30:14] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.21.1
[10:30:14] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.0.13
[10:30:14] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[10:30:14] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.22.2
[10:30:14] [Server thread/INFO]: [Maintenance] Loading server plugin Maintenance v4.1.0
[10:30:14] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.2 (build 353)
[10:30:14] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.9-SNAPSHOT+2241-c0cbe27 loaded.
[10:30:14] [Server thread/INFO]: [ChestShop] GriefPrevention version 16.18.1 loaded.
[10:30:14] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[10:30:14] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.21
[10:30:14] [Server thread/INFO]: [CoinBoostCMC] Loading server plugin CoinBoostCMC v1.0-SNAPSHOT
[10:30:14] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.2
[10:30:14] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.25.3
[10:30:14] [Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.7.2
[10:30:14] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[10:30:14] [Server thread/INFO]: [BetterTeams] File is up to date
[10:30:14] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[10:30:14] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.61.0
[10:30:14] [Server thread/INFO]: [CLV] Loading server plugin CyberLevels v0.5.8
[10:30:14] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.6-Release
[10:30:14] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[10:30:14] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.12.4
[10:30:14] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v3.2.4
[10:30:14] [Server thread/INFO]: [ExploitFixer] Loading server plugin ExploitFixer v2.2.8
[10:30:14] [Server thread/INFO]: [ChatFilter] Loading server plugin ChatFilter v2.0.14
[10:30:14] [Server thread/INFO]: [AureliumSkills] Loading server plugin AureliumSkills vBeta 1.3.21
[10:30:14] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.1.3.4
[10:30:14] [Server thread/INFO]: [UltraStaffChatPro] Loading server plugin UltraStaffChatPro v2.0.17
[10:30:14] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.10
[10:30:14] [Server thread/INFO]: [Images] Loading server plugin Images v2.3.0
[10:30:14] [Server thread/INFO]: [CMCAlert] Loading server plugin CMCAlert v1.0-SNAPSHOT
[10:30:14] [Server thread/INFO]: [Spartan] Loading server plugin Spartan vPhase 515
[10:30:14] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.10
[10:30:14] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.3
[10:30:14] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.14.2-3345d07
[10:30:14] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.3.1
[10:30:14] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:30:14] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.88
[10:30:15] [Server thread/INFO]:         __    
[10:30:15] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.88
[10:30:15] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[10:30:15] [Server thread/INFO]: 
[10:30:15] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:30:16] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:30:16] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:30:17] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:30:17] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2645ms)
[10:30:17] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3
[10:30:17] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:30:17] [Server thread/INFO]: [Vault] Enabled Version 1.7.3
[10:30:17] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:30:17] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.5-SNAPSHOT-518;685248d
[10:30:17] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[10:30:17] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[10:30:17] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:30:17] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:30:17] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[10:30:18] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0-SNAPSHOT-652
[10:30:18] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.10 build-12/06/2023
[10:30:18] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[10:30:18] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_20_R1
[10:30:18] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[10:30:18] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[10:30:18] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[10:30:18] [Server thread/INFO]: [NexEngine] Using 'en' language.
[10:30:18] [Server thread/INFO]: [NexEngine] Plugin loaded in 50 ms!
[10:30:18] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.7.1.307-Beta
[10:30:18] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[10:30:18] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 27 build(s) out of date.
You are running build 518, the latest version is build 545.
Update at https://www.spigotmc.org/resources/13932/
[10:30:18] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[10:30:18] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[10:30:18] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[10:30:18] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.2
[10:30:18] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[10:30:18] [Server thread/WARN]: It seems like you're running on paper.
[10:30:18] [Server thread/WARN]: This may cause issues.
[10:30:18] [Server thread/WARN]: If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
[10:30:18] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[10:30:18] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[10:30:18] [Server thread/INFO]: Preparing level "world"
[10:30:19] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:30:19] [Server thread/INFO]: Time elapsed: 203 ms
[10:30:19] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:30:19] [Server thread/INFO]: Time elapsed: 29 ms
[10:30:19] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9-SNAPSHOT+2241-c0cbe27
[10:30:19] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[10:30:19] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[10:30:19] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[10:30:19] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[10:30:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[10:30:19] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[10:30:19] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[10:30:19] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[10:30:19] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[10:30:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[10:30:19] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:30:19] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[10:30:20] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:30:20] [Server thread/INFO]: [Skript] Enabling Skript v2.7.0-beta2
[10:30:21] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[10:30:25] [Server thread/INFO]: [Skript] Loaded 150750 aliases in 5202ms
[10:30:25] [Server thread/INFO]: [Skript] Missing lang enum constant for 'damage causes.KILL'
[10:30:25] [Server thread/INFO]: [Skript] Missing lang enum constant for 'damage causes.WORLD_BORDER'
[10:30:25] [Server thread/INFO]: [Skript] Missing lang enum constant for 'damage causes.KILL'
[10:30:25] [Server thread/INFO]: [Skript] Missing lang enum constant for 'damage causes.WORLD_BORDER'
[10:30:25] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[10:30:25] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[10:30:25] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[10:30:25] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[10:30:25] [Server thread/INFO]: Could not set generator for world 'par': Plugin 'VoidGen' does not exist
[10:30:26] [Server thread/INFO]: Preparing start region for dimension minecraft:par
[10:30:26] [Server thread/INFO]: Time elapsed: 323 ms
[10:30:26] [Server thread/INFO]: [WorldGuard] (par) TNT ignition is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (par) Lighters are PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (par) Lava fire is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (par) Fire spread is UNRESTRICTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'par'
[10:30:26] [Server thread/INFO]: Could not set generator for world 'par': Plugin 'VoidGen' does not exist
[10:30:26] [Server thread/INFO]: Could not set generator for world 'pvparena': Plugin 'VoidGen' does not exist
[10:30:26] [Server thread/INFO]: Preparing start region for dimension minecraft:pvparena
[10:30:26] [Server thread/INFO]: Time elapsed: 36 ms
[10:30:26] [Server thread/INFO]: [WorldGuard] (pvparena) TNT ignition is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (pvparena) Lighters are PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (pvparena) Lava fire is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (pvparena) Fire spread is UNRESTRICTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvparena'
[10:30:26] [Server thread/INFO]: Could not set generator for world 'pvparena': Plugin 'VoidGen' does not exist
[10:30:26] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:30:26] [Server thread/INFO]: Time elapsed: 36 ms
[10:30:26] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[10:30:26] [Server thread/INFO]: Could not set generator for world 'spawn': Plugin 'VoidGen' does not exist
[10:30:26] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[10:30:26] [Server thread/INFO]: Time elapsed: 62 ms
[10:30:26] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[10:30:26] [Server thread/INFO]: Could not set generator for world 'spawn': Plugin 'VoidGen' does not exist
[10:30:26] [Server thread/INFO]: Preparing start region for dimension minecraft:flat
[10:30:26] [Server thread/INFO]: Time elapsed: 19 ms
[10:30:26] [Server thread/INFO]: [WorldGuard] (flat) TNT ignition is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (flat) Lighters are PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (flat) Lava fire is PERMITTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] (flat) Fire spread is UNRESTRICTED.
[10:30:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flat'
[10:30:26] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[10:30:26] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[10:30:26] [Server thread/INFO]: [Graves] Enabling Graves v4.9
[10:30:26] [Server thread/INFO]: [Graves] Integration: Hooked into Vault 1.7.3.
[10:30:26] [Server thread/INFO]: [Graves] Integration: Hooked into ProtocolLib 5.1.0-SNAPSHOT-652.
[10:30:26] [Server thread/INFO]: [Graves] Integration: Hooked into FastAsyncWorldEdit 2.6.5-SNAPSHOT-518;685248d.
[10:30:26] [Server thread/INFO]: [Graves] Integration: Hooked into WorldGuard 7.0.9-SNAPSHOT+2241-c0cbe27.
[10:30:26] [Server thread/INFO]: [Graves] Integration: Hooked into MiniMessage.
[10:30:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: graves [4.9]
[10:30:26] [Server thread/INFO]: [Graves] Integration: Hooked into PlaceholderAPI 2.11.3.
[10:30:26] [Server thread/INFO]: [Graves] Compatibility: World "pvparena" has keepInventory set to true, Graves will not be created here.
[10:30:26] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1-dev+37-b2ae28b
[10:30:27] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:30:27] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:30:27] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[10:30:27] [Server thread/INFO]: [Essentials] Using locale en_US
[10:30:27] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:30:27] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:30:27] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:30:27] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[10:30:27] [Server thread/INFO]: [Votifier] Loaded token for website: default
[10:30:27] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[10:30:27] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[10:30:27] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8194.
[10:30:27] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[10:30:27] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[10:30:27] [Server thread/INFO]: [GriefPrevention] 274 total claims loaded.
[10:30:27] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[10:30:27] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[10:30:27] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[10:30:27] [Server thread/INFO]: [GriefPrevention] Boot finished.
[10:30:27] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.8.11
[10:30:27] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for server list ping support
[10:30:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.8.11]
[10:30:27] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[10:30:27] [Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[10:30:28] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3176)
[10:30:28] [Server thread/INFO]: [Citizens] Loading external libraries
[10:30:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[10:30:28] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[10:30:28] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[10:30:28] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b59-2278589)
[10:30:28] [Server thread/INFO]: [CMILib] Enabling CMILib v1.3.0.2
[10:30:29] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.1 - paper
[10:30:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.3.0.2]
[10:30:29] [Server thread/INFO]: PlaceholderAPI hooked.
[10:30:29] [Server thread/INFO]: Updated (EN) language file. Took 26ms
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.2.0.1.1085
[10:30:29] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[10:30:29] [Server thread/INFO]: CombatLogX was loaded successfully.
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v17.1'...
[10:30:29] [Server thread/INFO]: [CombatLogX]  
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Citizens Compatibility v17.0'...
[10:30:29] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Successfully found a dependency: Citizens v2.0.32-SNAPSHOT (build 3176)
[10:30:29] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Dependency 'Citizens' is not the correct version!
[10:30:29] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Citizens Compatibility v17.0'...
[10:30:29] [Server thread/INFO]: [CombatLogX]  
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'EssentialsX Compatibility v16.3'...
[10:30:29] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Successfully found a dependency: Essentials v2.20.1-dev+37-b2ae28b
[10:30:29] [Server thread/INFO]: [CombatLogX]  
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v16.9'...
[10:30:29] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.3
[10:30:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: combatlogx [16.9]
[10:30:29] [Server thread/INFO]: [CombatLogX]  
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'SuperVanish/PremiumVanish Compatibility v16.2'...
[10:30:29] [Server thread/WARN]: [CombatLogX] [SuperVanish/PremiumVanish Compatibility] A dependency is not installed on the server: SuperVanish
[10:30:29] [Server thread/INFO]: [CombatLogX] [SuperVanish/PremiumVanish Compatibility] Successfully found a dependency: PremiumVanish v2.8.11
[10:30:29] [Server thread/INFO]: [CombatLogX]  
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v16.5'...
[10:30:29] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.9-SNAPSHOT+2241-c0cbe27
[10:30:29] [Server thread/INFO]: [CombatLogX]  
[10:30:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Newbie Helper v17.0'...
[10:30:29] [Server thread/INFO]: [CombatLogX]  
[10:30:29] [Server thread/INFO]: [CombatLogX] Successfully enabled 6 expansions.
[10:30:29] [Server thread/INFO]: CombatLogX was enabled successfully.
[10:30:29] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.22.2
[10:30:29] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.87.0
[10:30:29] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading specialElements > balance  (config.yml), item not loaded: No item specified
[10:30:29] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.3
[10:30:29] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[10:30:30] [Server thread/INFO]: [GSit] Enabling GSit v1.4.10
[10:30:30] [Server thread/INFO]: [!] Sit → The plugin was successfully enabled.
[10:30:30] [Server thread/INFO]: [!] Sit → Link with GriefPrevention successful!
[10:30:30] [Server thread/INFO]: [!] Sit → Link with PlaceholderAPI successful!
[10:30:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.4.10]
[10:30:30] [Server thread/INFO]: [!] Sit → Link with WorldGuard successful!
[10:30:30] [Server thread/INFO]: [TAB] Enabling TAB v4.0.2
[10:30:30] [Server thread/INFO]: [TAB] Server version: 1.20.1 (v1_20_R1)
[10:30:30] [Server thread/INFO]: [TAB] Loaded NMS hook in 16ms
[10:30:30] [Server thread/INFO]: [TAB] Enabled in 91ms
[10:30:30] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.3
[10:30:30] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.1.2-SNAPSHOT
[10:30:30] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[10:30:30] [Server thread/INFO]: [PremiumVanish] Hooked into DiscordSRV
[10:30:30] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[10:30:30] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[10:30:30] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[10:30:30] [Server thread/INFO]: --------------------
[10:30:30] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[10:30:30] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[10:30:30] [Server thread/INFO]: --------------------
[10:30:30] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.3
[10:30:30] [Server thread/INFO]: [NBTAPI] Adding listeners...
[10:30:30] [Server thread/INFO]: [NBTAPI] Gson:
[10:30:30] [Server thread/INFO]: [NBTAPI] Checking bindings...
[10:30:30] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[10:30:30] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[10:30:30] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[10:30:30] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[10:30:30] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[10:30:30] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[10:30:30] [Server thread/INFO]: [DeluxeTags] 32 tags loaded
[10:30:30] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[10:30:30] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[10:30:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[10:30:30] [Server thread/INFO]: [DeluxeTags] ----------------------------
[10:30:30] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[10:30:30] [Server thread/INFO]: [DeluxeTags]  
[10:30:30] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[10:30:30] [Server thread/INFO]: [DeluxeTags] The latest version
[10:30:30] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[10:30:30] [Server thread/INFO]: [DeluxeTags]  
[10:30:30] [Server thread/INFO]: [DeluxeTags] ----------------------------
[10:30:30] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[10:30:30] [pool-83-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[10:30:30] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[10:30:30] [Server thread/INFO]: [spark] Starting background profiler...
[10:30:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.34]
[10:30:30] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[10:30:30] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.0.0
[10:30:30] [Server thread/INFO]: ------------- Jobs -------------
[10:30:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.2.0.0]
[10:30:30] [Server thread/INFO]: PlaceholderAPI hooked.
[10:30:30] [Server thread/INFO]: Connected to database (SqLite)
[10:30:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[10:30:31] [Server thread/INFO]: Loaded 8 titles
[10:30:31] [Server thread/INFO]: [Jobs] Your defined (CARROT) protected block id/name is not correct!
[10:30:31] [Server thread/INFO]: [Jobs] Your defined (POTATO) protected block id/name is not correct!
[10:30:31] [Server thread/INFO]: Loaded 78 protected blocks timers
[10:30:31] [Server thread/INFO]: Loaded 1403 custom item names
[10:30:31] [Server thread/INFO]: Loaded 81 custom entity names
[10:30:31] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[10:30:31] [Server thread/INFO]: Loaded 38 custom enchant names
[10:30:31] [Server thread/INFO]: Loaded 21 custom enchant names
[10:30:31] [Server thread/INFO]: Loaded 16 custom color names
[10:30:31] [Server thread/INFO]: Loaded 5 jobs
[10:30:31] [Server thread/INFO]: Loaded 0 boosted items
[10:30:31] [Server thread/INFO]: Loaded 1599 furnace for reassigning.
[10:30:31] [Server thread/INFO]: Loaded 257 brewing for reassigning.
[10:30:31] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[10:30:31] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[10:30:31] [Server thread/INFO]: Preloaded 1021 players data in 0.02
[10:30:31] [Server thread/INFO]: WorldGuard detected.
[10:30:31] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[10:30:31] [Server thread/INFO]: Loading explorer data
[10:30:32] [Server thread/INFO]: Loaded explorer data (240948) in 606 ms
[10:30:32] [Server thread/INFO]: Plugin has been enabled successfully.
[10:30:32] [Server thread/INFO]: ------------------------------------
[10:30:32] [Server thread/INFO]: [Deathlocation] Enabling Deathlocation v1.0-SNAPSHOT
[10:30:32] [Server thread/INFO]: [AntiNetherRoof] Enabling AntiNetherRoof v1.2.4*
[10:30:32] [Server thread/INFO]: AntiNetherRoof 1.2.4
[10:30:32] [Server thread/INFO]: Developer: Discord: iAngry#0932 Spigot: gregoryg
[10:30:32] [Server thread/INFO]: Enabled
[10:30:32] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.6
[10:30:32] [Server thread/INFO]: [TitleManager] Invalid version of CombatLogX minimum required version is version 10.X.X.X
[10:30:32] [Server thread/INFO]: [PremiumVanish] Hooked into TitleManager
[10:30:32] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[10:30:32] [Server thread/INFO]: [BuycraftX] Validating your server key...
[10:30:32] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:CheekyMC(1054662214059048990)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✅・partners(1131822476754698261)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📖・news(1054665170154160138)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎮・bedrock-guide(1054665225103736854)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☕・java-guide(1082482293370781827)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎁・giveaways(1054665297564532858)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚨・rules(1082208243666923580)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐣・welcome(1054665341365669898)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗳・vote-links(1117142932315717653)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤝・partner-program(1128121792632983603)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎟・create-a-ticket(1082173348777304124)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📝・general-chat(1054662216948908036)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌎・server-chat(1082416997205282846)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌼・suggestions(1054662216948908037)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖・bot-commands(1054662216948908038)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤪・off-topic(1054662216948908039)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🦍・memes(1054662216948908040)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧮・counting(1133161099487883397)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:partner-announcements(1131819457522704394)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:partner-chat(1131820207493623909)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-announcements(1054662218169450507)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-chat(1054662217909415986)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-guide(1128486378238378016)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-logs(1128484513685717114)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-off-topic(1054662218169450506)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bug-reports(1092287965323083816)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-staff-chat(1085374525870456912)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-logs(1054662218169450509)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-commands(1136394443646304346)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-chat(1098825212449017877)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-temps(1129129295873310750)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-bot-cmds(1054662218169450508)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:132-macrae186(1134347144174776361)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcripts(1128482834433179649)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:79-allygator97-wolf-without-the-e9417(1132165324855324772)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:92-1998junebug7382(1132843395983888505)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:166-vansh_verma(1136568754583646298)
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[10:30:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[10:30:32] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[10:30:33] [Server thread/INFO]: [RocketPlaceholders] Enabling RocketPlaceholders v2.3
[10:30:33] [Server thread/INFO]: [RocketPlaceholders] Loaded 1 placeholders!
[10:30:33] [Server thread/INFO]: [RocketPlaceholders] PlaceholderAPI hooked!
[10:30:33] [Server thread/INFO]: [RocketPlaceholders] RocketPlaceholders v2.3 by Lorenzo0111 is now enabled!
[10:30:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rp [2.3]
[10:30:33] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[10:30:33] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[10:30:33] [Server thread/INFO]: | Hooked on Vault 1.7.3
[10:30:33] [Server thread/INFO]: | Command file(s) found : 1
[10:30:33] [Server thread/INFO]: | Config : Ready.
[10:30:33] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[10:30:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[10:30:33] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[10:30:33] [Server thread/INFO]: | Custom commands loaded : 4
[10:30:33] [Server thread/INFO]: | You're running the latest version of MyCommand.
[10:30:33] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[10:30:33] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[10:30:33] [Server thread/INFO]: [SilkSpawners_v2] Enabling SilkSpawners_v2 v2.2.1
[10:30:33] [pool-90-thread-1/INFO]: [SilkSpawners] [INFO]: Checking for updates
[10:30:33] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting SilkSpawners v2.2.1
[10:30:33] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading Cross-Version support
[10:30:33] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading support for NMS-Version v1_20_R1
[10:30:33] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading locale file
[10:30:33] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting metrics service. You can disable the collection of anonymous usage data by editing the config file under /plugins/bStats/
[10:30:33] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering listeners
[10:30:33] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering commands
[10:30:33] [Server thread/INFO]: [SilkSpawners] [INFO]: Started SilkSpawners v2.2.1
[10:30:33] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 54a
[10:30:33] [Server thread/INFO]: [UltimateAutoRestart] Build 54a, a free resource by Norska - Thanks for downloading!
[10:30:33] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[10:30:33] [pool-90-thread-1/INFO]: [SilkSpawners] [INFO]: The plugin is up to date (v2.2.1)
[10:30:33] [Server thread/INFO]: [CustomDeathMessages] Enabling CustomDeathMessages v2.0.1
[10:30:33] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.12.10
[10:30:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajpk [2.12.10]
[10:30:33] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been enabled!
[10:30:33] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v2.9.14.5
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Loading the Config.yml
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Config.yml
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Loading the Data.yml
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Data.yml
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Loading the Messages.yml
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Messages.yml
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Loading the VoucherCodes.yml
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Successfully loaded VoucherCodes.yml
[10:30:34] [Server thread/INFO]: [CrazyVouchers] Metrics has been enabled.
[10:30:34] [Server thread/INFO]: [RedstoneLimiter] Enabling RedstoneLimiter v0.0.3*
[10:30:34] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[10:30:34] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[10:30:34] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[10:30:34] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.22.2
[10:30:34] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.3
[10:30:36] [Server thread/INFO]: [!] Chat Colors →  Successfully downloaded 12 languages from the cloud!
[10:30:37] [Server thread/INFO]: [!] Chat Colors →  Loading EZColors v2.2.3!
[10:30:37] [Server thread/INFO]: [!] Chat Colors →  Found a compatible version. Hooking into V1_20_R1!
[10:30:37] [Server thread/INFO]: [!] Chat Colors →  Using HIGHEST as the Chat Listener.
[10:30:37] [Server thread/INFO]: [!] Chat Colors →  Found PlaceholderAPI. Loading hook!
[10:30:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ezcolors [1.0.0]
[10:30:37] [Server thread/INFO]: [!] Chat Colors →  Successfully Loaded EZColors v2.2.3 in 2878ms!
[10:30:37] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.8
[10:30:37] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[10:30:37] [Server thread/INFO]: [ajLeaderboards] The columns already exist for clv_player_level. Canceling updater and bumping DB version.
[10:30:37] [Server thread/INFO]: [ajLeaderboards] The columns already exist for playerpoints_points. Canceling updater and bumping DB version.
[10:30:37] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_deaths. Canceling updater and bumping DB version.
[10:30:37] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_hours_played. Canceling updater and bumping DB version.
[10:30:37] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[10:30:37] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance_commas. Canceling updater and bumping DB version.
[10:30:37] [Server thread/INFO]: [ajLeaderboards] Loaded 6 boards
[10:30:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.8]
[10:30:37] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[10:30:37] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[10:30:37] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.8 by ajgeiss0702 enabled!
[10:30:37] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.4.0
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: __________________________________________________________
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]:                        TradeSystem [2.4.0]
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: Status:
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: MC-Version: 1.20.1 (R0.1-SNAPSHOT, Purpur)
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[10:30:37] [Server thread/INFO]:   > Loading sounds
[10:30:37] [Server thread/INFO]:   > Loading blacklist
[10:30:37] [Server thread/INFO]:     ...got 3 blocked item(s)
[10:30:37] [Server thread/INFO]:   > Loading layouts
[10:30:37] [Server thread/INFO]:     ...got 4 layout(s)
[10:30:37] [Server thread/INFO]:   > Queuing database initializing task
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: Finished (221ms)
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: __________________________________________________________
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: [Analyse] Enabling Analyse v2.0.8
[10:30:37] [Server thread/INFO]: [Analyse] Hooked into PlaceholderAPI.
[10:30:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: analyse [2.0.8]
[10:30:37] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1-dev+37-b2ae28b
[10:30:37] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[10:30:37] [Server thread/INFO]: [Sellwand] Enabling Sellwand v1.5.4
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: ====================================
[10:30:37] [Server thread/INFO]: Plugin name: Sellwand
[10:30:37] [Server thread/INFO]: Version: 1.5.4
[10:30:37] [Server thread/INFO]: Core version: 0.7.25
[10:30:37] [Server thread/INFO]: ====================================
[10:30:37] [Server thread/INFO]:  
[10:30:37] [Server thread/INFO]: [Sellwand] Loaded locale "en_US"
[10:30:37] [Server thread/INFO]: [Mclogs] Enabling Mclogs v2.4.1
[10:30:38] [Server thread/INFO]: [DailyRewards] Enabling DailyRewards v1.3.9
[10:30:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dailyrewards [1.3.9]
[10:30:38] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.3.0
[10:30:38] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[10:30:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.3.0]
[10:30:38] [Server thread/INFO]: [ExcellentCrates] Using 'en' language.
[10:30:38] [OkHttp https://app.analyse.net/.../INFO]: [Analyse] Connected to 'CheekyMC'.
[10:30:38] [OkHttp https://app.analyse.net/.../INFO]: [Analyse] You are running the latest version of Analyse.
[10:30:38] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[10:30:38] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@2062cb64
[10:30:38] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[10:30:38] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate keys.
[10:30:38] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[10:30:38] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crates.
[10:30:38] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[10:30:38] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 382 ms!
[10:30:38] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.21.1
[10:30:38] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[10:30:38] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[10:30:38] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[10:30:38] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[10:30:38] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[10:30:38] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[10:30:38] [Server thread/INFO]: [Minepacks] Loading item translations ...
[10:30:38] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[10:30:38] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[10:30:38] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.13
[10:30:38] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[10:30:38] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.22.2
[10:30:38] [Server thread/INFO]: [Maintenance] Enabling Maintenance v4.1.0
[10:30:39] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.2 (build 353)
[10:30:39] [Server thread/INFO]: [ChestShop] Found locales ar, it, es, el, hu, fr, pl, cs, pt_br, ja, sv, da, es_mx, sr, tr, nl, zh_tw, af, ko, no, vi, ro, he, ru, ca, zh, de, fi, en, uk
[10:30:39] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now.
[10:30:39] [Server thread/INFO]: [ChestShop] Vault loaded!
[10:30:39] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[10:30:39] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[10:30:39] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[10:30:39] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[10:30:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tempfly [3.1.7]
[10:30:39] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[10:30:39] [Server thread/INFO]: [CoinBoostCMC] Enabling CoinBoostCMC v1.0-SNAPSHOT
[10:30:39] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.25.3
[10:30:39] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[10:30:41] [Server thread/INFO]: [PlayerWarps] Found 22 config files to load!
[10:30:41] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[10:30:41] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[10:30:41] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[10:30:41] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[10:30:41] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[10:30:41] [Server thread/WARN]: java.lang.AbstractMethodError: Receiver class com.olziedev.playerwarps.essentials.EssentialsExpansion does not define or inherit an implementation of the resolved method 'abstract void onLoad()' of abstract class com.olziedev.playerwarps.api.expansion.Expansion.
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.m.h.b(ExpansionManager.java:204)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.api.events.WarpEvent.b(WarpEvent.java:146)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.api.events.WarpEvent.acceptCallback(WarpEvent.java:107)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.api.events.WarpEvent.callEvent(WarpEvent.java:148)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.m.h.b(ExpansionManager.java:187)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.m.h.b(ExpansionManager.java:241)
[10:30:41] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.m.h.b(ExpansionManager.java:235)
[10:30:41] [Server thread/WARN]:     at java.base/java.util.HashMap.forEach(HashMap.java:1421)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.m.h.b(ExpansionManager.java:235)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.m.h.b(ExpansionManager.java:251)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.m.h.b(ExpansionManager.java:229)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.m.f.<init>(DatabaseManager.java:105)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.PlayerWarps.f(PlayerWarps.java:58)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:162)
[10:30:41] [Server thread/WARN]:     at PlayerWarps 6.22.1.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:57)
[10:30:41] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[10:30:41] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[10:30:41] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[10:30:41] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[10:30:41] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:653)
[10:30:41] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:564)
[10:30:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:641)
[10:30:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:440)
[10:30:41] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[10:30:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1117)
[10:30:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[10:30:41] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[10:30:41] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[10:30:41] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[10:30:41] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[10:30:41] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.7.2
[10:30:41] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[10:30:41] [Server thread/INFO]: [BetterTeams] File is up to date
[10:30:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterTeams [4.7.2]
[10:30:41] [Server thread/INFO]: Display team name config value: prefix
[10:30:41] [Server thread/INFO]: Loading below name. Type: PREFIX
[10:30:41] [Server thread/INFO]: Not loading management
[10:30:41] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[10:30:41] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[10:30:41] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.61.0
[10:30:41] [Server thread/INFO]: [PinataParty] Registering hooks...
[10:30:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinataparty [2.61.0]
[10:30:41] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[10:30:41] [Server thread/INFO]: [PinataParty] Hooked into Votifier
[10:30:41] [Server thread/INFO]: [PinataParty] Hooked into Vault
[10:30:41] [Server thread/INFO]: [PinataParty] Registering commands...
[10:30:41] [Server thread/INFO]: [PinataParty] Registering listeners...
[10:30:41] [Server thread/INFO]: [PinataParty] Loading data...
[10:30:41] [Server thread/INFO]: [PinataParty] Starting tasks...
[10:30:41] [Server thread/INFO]: [PinataParty] Starting metrics...
[10:30:41] [Server thread/INFO]: [PinataParty] Plugin registered to 385197 | 579562331
[10:30:41] [Server thread/INFO]: [PinataParty] Done and enabled in 27.26ms
[10:30:41] [Server thread/INFO]: [CLV] Enabling CyberLevels v0.5.8
[10:30:41] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[10:30:41] [Server thread/INFO]: [CLV] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╱╭╮
[10:30:41] [Server thread/INFO]: [CLV] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱╱┃┃
[10:30:41] [Server thread/INFO]: [CLV] ┃┃╰╋╮╭┫╰━┳━━┳━┫┃╱╱╭━━┳╮╭┳━━┫┃╭━━╮
[10:30:41] [Server thread/INFO]: [CLV] ┃┃╭┫┃┃┃╭╮┃┃━┫╭┫┃╭┫┃━┫╰╯┃┃━┫┃┃━━┫
[10:30:41] [Server thread/INFO]: [CLV] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃┃╰━╯┃┃━╋╮╭┫┃━┫╰╋━━┃
[10:30:41] [Server thread/INFO]: [CLV] ╰━━━┻━╮╭┻━━┻━━┻╯╰━━━┻━━╯╰╯╰━━┻━┻━━╯
[10:30:41] [Server thread/INFO]: [CLV] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[10:30:41] [Server thread/INFO]: [CLV] ╱╱╱╱╰━━╯  Version: 0.5.8
[10:30:41] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[10:30:41] [Server thread/INFO]: [CLV] 
[10:30:41] [Server thread/INFO]: [CLV] Loading YAML files...
[10:30:41] [Server thread/INFO]: [CLV] Loaded file config.yml.
[10:30:41] [Server thread/INFO]: [CLV] Loaded file lang.yml.
[10:30:41] [Server thread/INFO]: [CLV] Loaded file levels.yml.
[10:30:41] [Server thread/INFO]: [CLV] Loaded file rewards.yml.
[10:30:42] [Server thread/INFO]: [CLV] Loaded file earn-exp.yml.
[10:30:42] [Server thread/INFO]: [CLV] Loaded file anti-abuse.yml.
[10:30:42] [Server thread/INFO]: [CLV] Loaded 6 files in 35ms.
[10:30:42] [Server thread/INFO]: [CLV] 
[10:30:42] [Server thread/INFO]: [CLV] Loading exp earning events...
[10:30:42] [Server thread/INFO]: [CLV] Loaded 7 exp earn events in 1ms.
[10:30:42] [Server thread/INFO]: [CLV] 
[10:30:42] [Server thread/INFO]: [CLV] Loading anti-abuse...
[10:30:42] [Server thread/INFO]: [CLV] Loaded 2 anti-abuse settings in 1ms.
[10:30:42] [Server thread/INFO]: [CLV] 
[10:30:42] [Server thread/INFO]: [CLV] Loading level data...
[10:30:42] [Server thread/INFO]: [CLV] Loaded 500 level(s) in 2ms.
[10:30:42] [Server thread/INFO]: [CLV] 
[10:30:42] [Server thread/INFO]: [CLV] Loading reward data...
[10:30:42] [Server thread/INFO]: [CLV] Loaded 1 reward(s) in 1ms.
[10:30:42] [Server thread/INFO]: [CLV] 
[10:30:42] [Server thread/INFO]: [CLV] Loading leaderboard data...
[10:30:42] [Server thread/INFO]: [CLV] Loaded 10 players in 110ms.
[10:30:42] [Server thread/INFO]: [CLV] 
[10:30:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clv [0.5.8]
[10:30:42] [Server thread/INFO]: [CLV] Loaded CLV v0.5.8 in 167ms.
[10:30:42] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[10:30:42] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-Release
[10:30:42] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[10:30:42] [Server thread/INFO]: [DeluxeMenus] 33 GUI menus loaded!
[10:30:42] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[10:30:42] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[10:30:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-Release]
[10:30:42] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.4
[10:30:42] [Server thread/INFO]: [LiteBans] Using system locale (en)
[10:30:42] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[10:30:42] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[10:30:42] [Server thread/INFO]: [LiteBans] Connecting to database...
[10:30:42] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[10:30:42] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[10:30:42] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (93.4 ms).
[10:30:42] [Server thread/INFO]: [LiteBans] Database connection fully initialized (96.5 ms).
[10:30:42] [Server thread/INFO]: [LiteBans] v2.12.4 enabled. Startup took 272 ms.
[10:30:42] [Server thread/INFO]: [eGlow] Enabling eGlow v3.2.4
[10:30:42] [Server thread/INFO]: [eGlow]: Loading main config.
[10:30:42] [Server thread/INFO]: [eGlow]: Loading messages config.
[10:30:42] [Server thread/INFO]: [eGlow]: Loading CustomEffects config.
[10:30:42] [Server thread/INFO]: [!] Core → Successfully loaded Playerdata database.
[10:30:42] [Server thread/INFO]: [ExploitFixer] Enabling ExploitFixer v2.2.8
[10:30:42] [Server thread/INFO]: [ExploitFixer] Successfully registered commands!
[10:30:42] [Server thread/INFO]: [ExploitFixer] Successfully registered listeners!
[10:30:42] [Server thread/INFO]: [ExploitFixer] Successfully hooked with HamsterAPI!
[10:30:42] [Server thread/INFO]: [ExploitFixer] Successfully registered tasks!
[10:30:42] [Server thread/INFO]: [ChatFilter] Enabling ChatFilter v2.0.14
[10:30:42] [Server thread/INFO]: [ChatFilter] Loaded using locale: en
[10:30:42] [Server thread/INFO]: [ChatFilter] 55 Enabled word filters.
[10:30:42] [Server thread/INFO]: [ChatFilter] 2 Enabled advertising filters.
[10:30:42] [Server thread/INFO]: [ChatFilter] 348 whitelisted items.
[10:30:42] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.21
[10:30:42] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[10:30:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aureliumskills [Beta 1.3.21]
[10:30:42] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[10:30:42] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[10:30:42] [Server thread/INFO]: [AureliumSkills] Loaded 194 config options in 0 ms
[10:30:42] [Server thread/INFO]: [AureliumSkills] Loaded 312 sources and 10 tags in 6ms
[10:30:42] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[10:30:43] [Server thread/INFO]: [AureliumSkills] Loading languages...
[10:30:43] [Server thread/INFO]: [AureliumSkills] Loaded 15 languages in 872ms
[10:30:43] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[10:30:44] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 2ms
[10:30:44] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[10:30:44] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[10:30:44] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[10:30:44] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[10:30:44] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:30:44] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:30:44] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.3.4
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] === ENABLE START ===
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Plugin Version V3.1.3.4
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] /home/container/plugins/zAuctionHouseV3/config.json loaded successfully !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading of 0 price items
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading of 3 tax items
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loaded 4 blacklist items
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading the Blocks category with 933 materials
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading the Potions category with 17 materials
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading the Tools category with 16 materials
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading the Weapons category with 8 materials
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading inventories in progress...
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory auction !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory buyconfirm !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory removeconfirm !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory expire !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory buying !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory items !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory categories !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory sell !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory sellshow !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory category !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory adminremove !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory search !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Successful loading of the inventory show !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Inventories loading complete.
[10:30:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse [3.1.3.4]
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading 3 inventories
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] Loading 0 commands
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] /home/container/plugins/zAuctionHouseV3/items.json loaded successfully !
[10:30:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.4] === ENABLE DONE (106ms) ===
[10:30:44] [Server thread/INFO]: [UltraStaffChatPro] Enabling UltraStaffChatPro v2.0.17
[10:30:44] [Server thread/INFO]:  
[10:30:44] [Server thread/INFO]:   __  ______________
[10:30:44] [Server thread/INFO]:  / / / / __/ ___/ _ \  UltraStaffChatPro v2.0.17
[10:30:44] [Server thread/INFO]: / /_/ /\ \/ /__/ ___/  Running on Purpur
[10:30:44] [Server thread/INFO]: \____/___/\___/_/
[10:30:44] [Server thread/INFO]:  
[10:30:44] [Server thread/INFO]: [UltraStaffChatPro] Successfully started, took 102 ms
[10:30:44] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.10
[10:30:44] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[10:30:44] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[10:30:44] [Server thread/INFO]: [Images] Enabling Images v2.3.0
[10:30:44] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[10:30:44] [Server thread/INFO]: [CMCAlert] Enabling CMCAlert v1.0-SNAPSHOT*
[10:30:44] [Server thread/INFO]: [CMCAlert] [CMC] The plugin is successfully enabled.
[10:30:44] [Server thread/INFO]: [Spartan] Enabling Spartan vPhase 515
[10:30:45] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.10
[10:30:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.10]
[10:30:45] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.3
[10:30:45] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[10:30:45] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[10:30:45] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.3-RELEASE (commit ef23128)
[10:30:45] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[10:30:45] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[10:30:45] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_20 (expected version: 1.20.1)
[10:30:45] [Server thread/INFO]: [UltraCosmetics] Entity registry is not vanilla, skipping unfreeze and refreeze
[10:30:45] [Server thread/INFO]: [UltraCosmetics] Loaded NMS support
[10:30:46] [Thread-38/INFO]: [Spartan: Java Edition Notification] Done loading 355 rows of data to the Research Engine.
[10:30:50] [Server thread/INFO]: [UltraCosmetics] 
[10:30:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultracosmetics [3.3]
[10:30:50] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[10:30:50] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[10:30:50] [Server thread/INFO]: [UltraCosmetics] 
[10:30:50] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[10:30:50] [Server thread/INFO]: [UltraCosmetics] 
[10:30:50] [Server thread/INFO]: [UltraCosmetics] Hooked into PlayerPoints for economy.
[10:30:50] [Server thread/INFO]: [UltraCosmetics] 
[10:30:50] [Server thread/INFO]: [UltraCosmetics] 
[10:30:50] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 5157ms!
[10:30:50] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[10:30:50] [Server thread/INFO]: [Quests] Enabling Quests v3.14.2-3345d07
[10:30:50] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[10:30:50] [Server thread/INFO]: [Quests] Your server is running version 1.20
[10:30:50] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[10:30:50] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[10:30:50] [Server thread/INFO]:  
[10:30:50] [Server thread/INFO]: ====================================
[10:30:50] [Server thread/INFO]: Plugin name: Infiniteannouncements
[10:30:50] [Server thread/INFO]: Version: 2.3.1
[10:30:50] [Server thread/INFO]: Core version: 0.7.25
[10:30:50] [Server thread/INFO]: ====================================
[10:30:50] [Server thread/INFO]:  
[10:30:50] [Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[10:30:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: infiniteannouncements [1.0.0]
[10:30:51] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[10:30:51] [Server thread/WARN]: Could not register alias shop because it contains commands that do not exist: economyshopgui:shop $1-
[10:30:51] [Server thread/WARN]: Could not register alias playtimelevels because it contains commands that do not exist: deluxemenu:playtime $1
[10:30:51] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:30:51] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[10:30:51] [Server thread/INFO]: [Geyser-Spigot] 
[10:30:51] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.1.2-SNAPSHOT (git-master-340be2d)
[10:30:51] [Server thread/INFO]: [Geyser-Spigot] 
[10:30:51] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[10:30:53] [Server thread/INFO]: [Geyser-Spigot] Started Geyser on 0.0.0.0:19132
[10:30:53] [Server thread/INFO]: [Geyser-Spigot] Done (2.19s)! Run /geyser help for help!
[10:30:53] [Server thread/INFO]: [Analyse] Loading modules..
[10:30:53] [Server thread/INFO]: [Analyse] 0 modules loaded.
[10:30:53] [Server thread/INFO]: Starting GS4 status listener
[10:30:53] [Server thread/INFO]: Thread Query Listener started
[10:30:53] [Query Listener #1/INFO]: Query running on 0.0.0.0:25565
[10:30:53] [Server thread/INFO]: Running delayed init tasks
[10:30:53] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Fetching version information...
[10:30:53] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[10:30:53] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[10:30:53] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[10:30:53] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[10:30:53] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[10:30:53] [Craft Scheduler Thread - 24 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[10:30:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.6]
[10:30:53] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loaded 15 holograms!
[10:30:53] [Craft Scheduler Thread - 32 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[10:30:53] [Craft Scheduler Thread - 37 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[10:30:53] [Craft Scheduler Thread - 38 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:30:54] [ForkJoinPool.commonPool-worker-3/INFO]: [UltraStaffChatPro] Successfully loaded dependencies, took about 1 ms.
[10:30:54] [Craft Scheduler Thread - 4 - CMILib/INFO]: New version of CMILib was detected. Please update it
[10:30:54] [Craft Scheduler Thread - 20 - DailyRewards/INFO]: [DailyRewards] Plugin is up to date.
[10:30:54] [Craft Scheduler Thread - 32 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[10:30:54] [Server thread/INFO]: [Skript] Loading variables...
[10:30:54] [Craft Scheduler Thread - 26 - BetterTeams/WARN]: [BetterTeams] An update for BetterTeams has been released. Update here (https://www.spigotmc.org/resources/better-teams.17129/)
[10:30:54] [Craft Scheduler Thread - 27 - PinataParty/INFO]: [PinataParty] v2.61.1 is available! You are running v2.61.0!
[10:30:54] [Craft Scheduler Thread - 27 - PinataParty/INFO]: [PinataParty] Download it here: https://www.spigotmc.org/resources/59318/
[10:30:54] [Craft Scheduler Thread - 34 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[10:30:54] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'BlueSlimeCore'.
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 2.7.1.307-Beta
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 2.9.3.371
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'CombatLogX'.
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 11.2.0.1.1085
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 11.4.0.0.1156
[10:30:54] [Craft Scheduler Thread - 33 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/31689/
[10:30:54] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[10:30:54] [Server thread/INFO]: [Skript] Loaded 1 script with a total of 4 structures in 0.06 seconds
[10:30:54] [Server thread/INFO]: [Skript] Finished loading.
[10:30:54] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3)!
[10:30:54] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[10:30:54] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (EssentialsX Economy)
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eglow [3.2.4]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [3.14.2-3345d07]
[10:30:54] [Craft Scheduler Thread - 29 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.3.4] New update available. Your version: 3.1.3.4, latest version: 3.1.3.5
[10:30:54] [Craft Scheduler Thread - 29 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.3.4] Download plugin here: https://groupez.dev/resources/1
[10:30:54] [Server thread/INFO]: [Quests] 39 task types have been registered.
[10:30:54] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[10:30:54] [Craft Scheduler Thread - 7 - ajParkour/INFO]: [ajParkour] You are up to date! (2.12.10)
[10:30:54] [Server thread/INFO]: [Quests] 1456 quests have been registered.
[10:30:54] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion superbvote due to a missing plugin: SuperbVote
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: griefprevention [1.6.0]
[10:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[10:30:54] [Server thread/INFO]: 7 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[10:30:55] [Server thread/INFO]: [Citizens] Loaded 28 NPCs.
[10:30:55] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.87.0 ]================================
[10:30:55] [Server thread/INFO]: [ShopGUIPlus]  
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 main menu items.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Blocks' with 339 items.
[10:30:55] [Thread-50/INFO]: --------------------
[10:30:55] [Thread-50/INFO]: [CoreProtect] Version 22.0 is now available.
[10:30:55] [Thread-50/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[10:30:55] [Thread-50/INFO]: --------------------
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Decoration' with 162 items.
[10:30:55] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading Miscellaneous > 26, item not loaded: Invalid or no material name specified
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Miscellaneous' with 27 items.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Colored_Blocks' with 194 items.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Ores' with 36 items.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Redstone' with 28 items.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Farming' with 28 items.
[10:30:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:30:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:30:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Spawners' with 72 items.
[10:30:55] [Craft Scheduler Thread - 31 - UltraStaffChatPro/INFO]: [UltraStaffChatPro] Successfully started Discord Bot, logged in as CheekyMC Bot#7905
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Food' with 28 items.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Mob_Drops' with 24 items.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 shops with total of 938 items.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[10:30:55] [Server thread/INFO]: [ShopGUIPlus]  
[10:30:55] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[10:30:55] [Server thread/INFO]: Done (48.108s)! For help, type "help"
[10:30:55] [Server thread/INFO]: com.mojang.authlib.GameProfile@5fbddc29[id=<null>,name=lHyoka,properties={},legacy=false] (/85.76.41.26:58968) lost connection: Disconnected
[10:30:56] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[10:30:56] [Craft Scheduler Thread - 13 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:30:56] [Craft Scheduler Thread - 13 - BuycraftX/INFO]: [BuycraftX] Fetched due players (3 found).
[10:30:56] [Craft Scheduler Thread - 45 - Images/INFO]: [Images] Loaded 4 images...
[10:30:56] [User Authenticator #0/INFO]: UUID of player CookieVulpixDB is e2bdc448-2634-4a4b-9516-4835a318256e
[10:30:57] [Server thread/INFO]: CookieVulpixDB[/146.200.206.223:53144] logged in with entity id 619 at ([world]-9315.699999988079, 204.0, 7980.300000011921)
[10:30:57] [Server thread/INFO]: [+] CookieVulpixDB
[10:30:57] [Craft Scheduler Thread - 21 - UltraStaffChatPro/INFO]: StaffChat CookieVulpixDB joined SURVIVAL
[10:30:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 54a]
[10:30:57] [Craft Scheduler Thread - 13 - Sellwand/INFO]: Hooked ShopGUIPlus as item price. (Config: ShopGUIPlus, Hook name: ShopGUIPlus)
[10:30:57] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[10:30:57] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[10:30:58] [Craft Scheduler Thread - 19 - TradeSystem/ERROR]: [TradeSystem] Database logging could not be started: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
[10:31:00] [User Authenticator #0/INFO]: UUID of player Bookaagamin is 604358e0-da35-4fb1-b923-6fc2f8c57093
[10:31:00] [Server thread/INFO]: Bookaagamin[/50.158.78.86:65140] logged in with entity id 938 at ([world]-5751.012176772266, 64.0, 693.1102083570992)
[10:31:00] [Server thread/INFO]: [+] Bookaagamin
[10:31:01] [User Authenticator #0/INFO]: UUID of player tomdog516 is 30e271b0-98fb-4c0b-b0a7-f1093a6dadab
[10:31:01] [Server thread/INFO]: tomdog516[/70.176.176.225:57659] logged in with entity id 972 at ([world]7755.384741732171, -42.71868952120178, 2148.5322589812126)
[10:31:01] [Server thread/INFO]: [+] tomdog516
[10:31:01] [User Authenticator #0/INFO]: UUID of player Frabzy14 is 6cc0b15a-5c85-4e8d-b498-4d201cf3b2d1
[10:31:01] [Server thread/INFO]: Frabzy14[/120.29.110.117:31878] logged in with entity id 1010 at ([world]-5741.952860949715, 71.11819090788977, 590.6999999880791)
[10:31:01] [Server thread/INFO]: [+] Frabzy14
[10:31:03] [Server thread/WARN]: [CombatLogX] Could not find 'EntityHandler' for version '1_20_R1'. Searching for fallback handler...
[10:31:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:31:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:31:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[10:31:04] [User Authenticator #0/INFO]: UUID of player DerkLurdGamer is 899666f2-dcc0-428b-b6c3-94c58a5a1ad0
[10:31:04] [Server thread/INFO]: DerkLurdGamer[/73.73.163.163:50643] logged in with entity id 1140 at ([world]-2365.6187639129894, 72.0, -8674.380214545117)
[10:31:04] [Server thread/INFO]: [+] DerkLurdGamer
[10:31:04] [Craft Scheduler Thread - 34 - UltraStaffChatPro/INFO]: StaffChat DerkLurdGamer joined SURVIVAL
[10:31:04] [User Authenticator #1/INFO]: UUID of player lHyoka is 71cb3768-ad75-49cc-929e-71bb329aed6c
[10:31:04] [Server thread/INFO]: lHyoka[/85.76.41.26:55640] logged in with entity id 1156 at ([world]11887.487500011921, 40.0, 5176.108906764299)
[10:31:04] [Server thread/INFO]: [+] lHyoka
[10:31:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:31:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:31:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[10:31:10] [Async Chat Thread - #1/INFO]: [117] HELPER CookieVulpixDB [King] ➠ wb all <3
[10:31:15] [Async Chat Thread - #0/INFO]: [9] MVP Frabzy14 ➠ bookagamin please