Paste #72213: Untitled Paste

Date: 2020/07/14 01:02:29 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
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498


[10:48:47] [Server thread/INFO]: Starting minecraft server version 1.15.2
[10:48:47] [Server thread/INFO]: Loading properties
[10:48:47] [Server thread/INFO]: This server is running Paper version git-Paper-378 (MC: 1.15.2) (Implementing API version 1.15.2-R0.1-SNAPSHOT)
[10:48:48] [Server thread/INFO]: Debug logging is disabled
[10:48:48] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:48:48] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:48:48] [Server thread/INFO]: Default game type: SURVIVAL
[10:48:48] [Server thread/INFO]: Generating keypair
[10:48:48] [Server thread/INFO]: Starting Minecraft server on *:25567
[10:48:48] [Server thread/INFO]: Using default channel type
[10:48:48] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:48:52] [Server thread/WARN]: Legacy plugin FurnaceNotify v17.0 does not specify an api-version.
[10:48:52] [Server thread/WARN]: Legacy plugin EasySetSpawn v3.3 does not specify an api-version.
[10:48:52] [Server thread/WARN]: Legacy plugin UltraRewards v1.1.2 does not specify an api-version.
[10:48:52] [Server thread/WARN]: Legacy plugin AlonsoJDA v1.0-ALPHA does not specify an api-version.
[10:48:52] [Server thread/WARN]: Legacy plugin UnlimitedChats v2.0 does not specify an api-version.
[10:48:54] [Server thread/WARN]: Legacy plugin MVdWPlaceholderAPI v3.0.1 does not specify an api-version.
[10:48:54] [Server thread/WARN]: Legacy plugin DivineDrop v2.5.9 does not specify an api-version.
[10:48:54] [Server thread/WARN]: Legacy plugin MoneyNote v1.2.9 does not specify an api-version.
[10:48:54] [Server thread/WARN]: Legacy plugin ClearChat v3.2.4 does not specify an api-version.
[10:48:56] [Server thread/INFO]: (Matrix) | Injecting server connection handler...
[10:48:56] [Server thread/INFO]: (Matrix) | <MV> Modified the movement delta value check
[10:48:56] [Server thread/INFO]: (Matrix) | <MV> Modified the rotation delta value check
[10:48:56] [Server thread/INFO]: (Matrix) | Injected server connection handler
[10:48:58] [Server thread/WARN]: Legacy plugin MinecordSync v1.0 does not specify an api-version.
[10:48:58] [Server thread/WARN]: Legacy plugin DeathHolo v1.1.2 does not specify an api-version.
[10:48:58] [Server thread/WARN]: Legacy plugin dynmap v3.0-SNAPSHOT-338 does not specify an api-version.
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Injector platform set to: InjectorBukkit
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Injecting NMS classes...
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Injecting WorldEdit classes...
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.util.eventbus.EventBus
[10:48:59] [Server thread/WARN]: [WorldEdit] Loaded class org.primesoft.asyncworldedit.injector.injected.util.eventbus.IDispatchableEventBus from AsyncWorldEdit v3.7.3 which is not a depend, softdepend or loadbefore of this plugin.
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.math.BlockVector2
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.math.BlockVector3
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.math.Vector2
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.math.Vector3
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.world.block.BlockStateHolder
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.world.block.BaseBlock
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.world.block.BlockState
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.entity.BaseEntity
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.util.Location
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.world.biome.BiomeType
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.world.weather.WeatherType
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.EditSession
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.extent.AbstractDelegateExtent
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.operation.Operations
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.extent.clipboard.BlockArrayClipboard
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.extension.platform.PlayerProxy
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.util.collection.LocatedBlockList
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.extent.reorder.MultiStageReorder
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.extent.reorder.ChunkBatchingExtent
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.AbstractRegion
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.EllipsoidRegion
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.ConvexPolyhedralRegion
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.TransformRegion
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.RegionIntersection
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.NullRegion
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.Polygonal2DRegion
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.CylinderRegion
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.CuboidRegion
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.SnapshotUtilCommands
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.ScriptingCommands
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.SchematicCommands
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.RegionCommands
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.UtilityCommandsRegistration
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.bukkit.BukkitEntity
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.RegionCommandsRegistration
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.mask.AbstractExtentMask
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.LocalSession
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.session.SessionManager
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.extent.ChangeSetExtent
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.extent.world.ChunkLoadingExtent
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.tool.BrushTool
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.tool.BlockReplacer
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.tool.FloodFillTool
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.tool.TreePlanter
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.tool.AreaPickaxe
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.command.tool.RecursivePickaxe
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.WorldEdit
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.entity.ExtentEntityCopy
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.block.ExtentBlockCopy
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.block.BlockReplace
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.operation.ForwardExtentCopy
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.operation.SetLocatedBlocks
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.biome.BiomeReplace
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.biome.ExtentBiomeCopy
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.factory.Deform$DeformOperation
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.factory.Paint
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.mask.BiomeMask2D
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.pattern.AbstractExtentPattern
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.iterator.RegionIterator
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.regions.shape.ArbitraryShape
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.factory.Apply
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Modify class com.sk89q.worldedit.function.visitor.RegionVisitor
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Creating class org/primesoft/asyncworldedit/worldedit/entity/PlayerWrapper
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Creating class org/primesoft/asyncworldedit/worldedit/entity/NoPermsPlayer
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Creating class org/primesoft/asyncworldedit/worldedit/extension/platform/NoPermsActor
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Creating class org/primesoft/asyncworldedit/injector/injected/entity/IPlayerFactory
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Creating class org/primesoft/asyncworldedit/injector/injected/extension/platform/IActorFactory
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] Injector Enabled
[10:48:59] [Server thread/INFO]: [AsyncWorldEdit] New class factory set to: org.primesoft.asyncworldedit.asyncinjector.async.AsyncClassFactory
[10:48:59] [Server thread/WARN]: Legacy plugin AdvancedClans vRevamped-1.3.2 does not specify an api-version.
[10:48:59] [Server thread/WARN]: Legacy plugin MCJukebox v2.6.5 does not specify an api-version.
[10:48:59] [Server thread/INFO]: [PluginConstructorAPI] Loading PluginConstructorAPI v1.0.52
[10:48:59] [Server thread/INFO]: [BlockLocker] Loading BlockLocker v1.8.1
[10:48:59] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.6
[10:48:59] [Server thread/INFO]: [FurnaceNotify] Loading FurnaceNotify v17.0
[10:48:59] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.7
[10:48:59] [Server thread/INFO]: [uShop] Loading uShop v2.1.1-SNAPSHOT
[10:48:59] [Server thread/INFO]: [EasySetSpawn] Loading EasySetSpawn v3.3
[10:48:59] [Server thread/INFO]: [UltraRewards] Loading UltraRewards v1.1.2
[10:48:59] [Server thread/INFO]: [AlonsoJDA] Loading AlonsoJDA v1.0-ALPHA
[10:48:59] [Server thread/INFO]: [RandomTeleport] Loading RandomTeleport v2.5.1
[10:48:59] [Server thread/INFO]: [UnlimitedChats] Loading UnlimitedChats v2.0
[10:48:59] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v3.0.1
[10:48:59] [Server thread/INFO]: [ViaVersion] ViaVersion 3.0.1 is now loaded, injecting!
[10:49:00] [pool-8-thread-1/INFO]: [ViaVersion] Loading 1.12.2 -> 1.13 mappings...
[10:49:01] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v3.0.1
[10:49:01] [Server thread/INFO]: [LightAPI] Loading LightAPI v3.4.4
[10:49:01] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.1.26
[10:49:01] [pool-8-thread-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[10:49:01] [pool-8-thread-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[10:49:01] [pool-8-thread-3/INFO]: [ViaVersion] Loading 1.14.4 -> 1.15 mappings...
[10:49:01] [Server thread/INFO]: [Skript] Loading Skript v2.4.1
[10:49:01] [Server thread/INFO]: [QuickClose] Loading QuickClose v1.4.10
[10:49:01] [Server thread/INFO]: [CrazyAuctionsPlus] Loading CrazyAuctionsPlus v1.1.3
[10:49:01] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.1.6
[10:49:01] [Server thread/INFO]: [UltimateTimber] Loading UltimateTimber v2.0.4
[10:49:01] [Server thread/INFO]: [Votifier] Loading Votifier v2.6.0-SNAPSHOT
[10:49:01] [Server thread/INFO]: [KiteBoard] Loading KiteBoard v3.0.8
[10:49:01] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.1.0-b775
[10:49:01] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.5.1
[10:49:01] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.15.2) has not yet been tested! Proceed with caution.
[10:49:01] [Server thread/INFO]: [MVdWPlaceholderAPI] Loading MVdWPlaceholderAPI v3.0.1
[10:49:01] [Server thread/INFO]: [Minepacks] Loading Minepacks v2.3.11-Release
[10:49:01] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[10:49:01] [Server thread/INFO]: [DivineDrop] Loading DivineDrop v2.5.9
[10:49:01] [Server thread/INFO]: [GeoFurnace] Loading GeoFurnace v1.73
[10:49:01] [Server thread/INFO]: [BeehivesPro] Loading BeehivesPro v1.1.1
[10:49:01] [Server thread/INFO]: [ServerRestorer] Loading ServerRestorer v1.0.30
[10:49:01] [Server thread/INFO]: [Vault] Loading Vault v1.7.2-b107
[10:49:01] [Server thread/INFO]: [PublicCrafters] Loading PublicCrafters v4.12.3
[10:49:01] [Server thread/INFO]: [MoneyNote] Loading MoneyNote v1.2.9
[10:49:01] [Server thread/INFO]: [LastLoginAPI] Loading LastLoginAPI v1.3.6
[10:49:01] [Server thread/INFO]: [JoinEventsPro] Loading JoinEventsPro v4.1
[10:49:01] [Server thread/INFO]: [ClearChat] Loading ClearChat v3.2.4
[10:49:01] [Server thread/INFO]: [Matrix] Loading Matrix v5.0.1
[10:49:01] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.3
[10:49:01] [Server thread/INFO]: [ChestSort] Loading ChestSort v8.12.2
[10:49:01] [Server thread/INFO]: [ChestCommands] Loading ChestCommands v3.5.6
[10:49:01] [Server thread/INFO]: [DamageIndicator] Loading DamageIndicator v1.3.7
[10:49:01] [Server thread/INFO]: [FurnitureLib] Loading FurnitureLib v2.1.8
[10:49:01] [Server thread/INFO]: [MinecordSync] Loading MinecordSync v1.0
[10:49:01] [Server thread/INFO]: [DeathHolo] Loading DeathHolo v1.1.2
[10:49:01] [Server thread/INFO]: [Multiverse-NetherPortals] Loading Multiverse-NetherPortals v4.1.0-b763
[10:49:01] [Server thread/INFO]: [F3Name] Loading F3Name v3.2.0
[10:49:01] [Server thread/INFO]: [dynmap] Loading dynmap v3.0-SNAPSHOT-338
[10:49:02] [Server thread/INFO]: [dynmap] version=git-Paper-378 (MC: 1.15.2)
[10:49:02] [Server thread/INFO]: [dynmap] Unload queue not found - default to unload all chunks
[10:49:02] [Server thread/INFO]: [dynmap] inhabitedTicks field not found - inhabited shader not functional
[10:49:02] [Server thread/INFO]: [dynmap] Mod Support API available
[10:49:02] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.0-beta-01+0eb9ac7
[10:49:03] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2a163c8f]
[10:49:03] [Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.5.1
[10:49:03] [Server thread/INFO]: [Essentials] Loading Essentials v2.17.1.53
[10:49:03] [Server thread/INFO]: [LocketteX] Loading LocketteX v1.5.1
[10:49:03] [Server thread/INFO]: [UltimateModeration] Loading UltimateModeration v1.2.3
[10:49:03] [Server thread/INFO]: [CommandSigns] Loading CommandSigns v2.2.0
[10:49:03] [Server thread/INFO]: [EpicLevels] Loading EpicLevels vmaven-version-number
[10:49:03] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.27-SNAPSHOT (build 2028)
[10:49:03] [Server thread/INFO]: [AsyncWorldEdit] Loading AsyncWorldEdit v3.7.3
[10:49:03] [Server thread/INFO]: [AsyncWorldEdit] Plugin installed
[10:49:03] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v1.1.12
[10:49:03] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.2-Release
[10:49:03] [Server thread/INFO]: [HolographicPlaceholders] Loading HolographicPlaceholders v2.0.7 Beta
[10:49:03] [Server thread/INFO]: [TAB] Loading TAB v2.8.2
[10:49:03] [Server thread/INFO]: [AdvancedClans] Loading AdvancedClans vRevamped-1.3.2
[10:49:03] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.10-RELEASE
[10:49:03] [Server thread/INFO]: [HolographicExtension] Loading HolographicExtension v1.10.9
[10:49:03] [Server thread/INFO]: [InteractionVisualizer] Loading InteractionVisualizer v1.12.4
[10:49:03] [Server thread/INFO]: [LeaderHeadsRevamped] Loading LeaderHeadsRevamped v4.0.6
[10:49:03] [Server thread/INFO]: [ajParkour] Loading ajParkour v2.9.5
[10:49:03] [Server thread/INFO]: [Quests] Loading Quests v2.9.5
[10:49:03] [Server thread/INFO]: [UltimateClaims] Loading UltimateClaims v1.2.8
[10:49:03] [Server thread/WARN]: [UltimateClaims] Loaded class com.sk89q.worldguard.protection.flags.Flag from WorldGuard v7.0.3;5407315 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:03] [Server thread/INFO]: [ChatManager] Loading ChatManager v3.6.5
[10:49:03] [Server thread/INFO]: [Harbor] Loading Harbor v1.6.1
[10:49:03] [Server thread/INFO]: [InteractiveChat] Loading InteractiveChat v2.6.2
[10:49:03] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.3;5407315
[10:49:03] [Server thread/INFO]: [MeteoritesPro] Loading MeteoritesPro v1.5.1
[10:49:03] [Server thread/INFO]: [CombatLogX] Loading CombatLogX v9.9.4.0
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Cheat Prevention v14.16'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Citizens Compatibility v14.26'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Factions Compatibility v14.5'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Lands Compatibility v14.7'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Newbie Helper v14.5'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'NotCombatLogX v14.4'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Notifier v14.15'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Parties Compatibility v14.2'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Placeholder Compatibility v14.4'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'RedProtect Compatibility v14.4'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Residence Compatibility v14.6'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Rewards v14.9'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'Towny Compatibility v14.5'
[10:49:03] [Server thread/INFO]: • Treas »  Özellik Yükleniyor 'WorldGuard Compatibility v14.13'
[10:49:03] [Server thread/INFO]: • Treas »  14 Adet özellik yüklendis
[10:49:03] [Server thread/INFO]: [EpicAnchors] Loading EpicAnchors v1.4.9
[10:49:03] [Server thread/INFO]: [ECore] Loading ECore v1.0k
[10:49:03] [Server thread/INFO]: [FogusCore] Loading FogusCore v1.8.3
[10:49:03] [Server thread/INFO]: [XWeather] Loading XWeather v1.2.3
[10:49:03] [Server thread/INFO]: [EpicFurnaces] Loading EpicFurnaces vmaven-version-number
[10:49:03] [Server thread/INFO]: [Coins] Loading Coins v1.9.5
[10:49:03] [Server thread/INFO]: [NeoMoreTPPlus] Loading NeoMoreTPPlus v1.0u
[10:49:03] [Server thread/INFO]: [CrazyEnvoy] Loading CrazyEnvoy v1.3.8-RELEASE
[10:49:03] [Server thread/INFO]: [MCJukebox] Loading MCJukebox v2.6.5
[10:49:03] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:49:03] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.8.1
[10:49:03] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v3.0.1
[10:49:03] [Server thread/INFO]: [ViaBackwards] Loading translations...
[10:49:03] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[10:49:04] [pool-8-thread-5/INFO]: [ViaBackwards] Loading 1.13 -> 1.12.2 mappings...
[10:49:04] [pool-8-thread-4/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[10:49:04] [pool-8-thread-2/INFO]: [ViaBackwards] Loading 1.16 -> 1.15.2 mappings...
[10:49:04] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.1.26
[10:49:04] [pool-8-thread-3/INFO]: [ViaBackwards] Loading 1.15 -> 1.14.4 mappings...
[10:49:04] [Server thread/INFO]:         __    
[10:49:04] [Server thread/INFO]:   |    |__)   LuckPerms v5.1.26
[10:49:04] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[10:49:04] [Server thread/INFO]: 
[10:49:04] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:49:05] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:49:07] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:49:07] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:49:08] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3784ms)
[10:49:08] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.5.1
[10:49:08] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[10:49:08] [Server thread/INFO]: [Vault] Enabling Vault v1.7.2-b107
[10:49:08] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.17.1.53 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:08] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[10:49:08] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:49:08] [Server thread/INFO]: [Vault] Enabled Version 1.7.2-b107
[10:49:08] [Server thread/WARN]: [LuckPerms] Loaded class net.milkbowl.vault.permission.Permission from Vault v1.7.2-b107 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:08] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:49:08] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.0-beta-01+0eb9ac7
[10:49:08] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:49:08] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_15_R2 as the Bukkit adapter
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] Enabling AsyncWorldEdit v3.7.3
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] Platform set to Bukkit API
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] ===================================================================================
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] =     ___                         _       __           __    ________    ___ __   =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] =    /   |  _______  ______  ____| |     / /___  _____/ /___/ / ____/___/ (_) /_  =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] =   / /| | / ___/ / / / __ \/ ___/ | /| / / __ \/ ___/ / __  / __/ / __  / / __/  =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] =  / ___ |(__  ) /_/ / / / / /__ | |/ |/ / /_/ / /  / / /_/ / /___/ /_/ / / /_    =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] = /_/  |_/____/\__, /_/ /_/\___/ |__/|__/\____/_/  /_/\__,_/_____/\__,_/_/\__/    =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] =             /____/                                                              =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] = Author: SBPrime                                                                 =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] =                                ________________                                 =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] =                            ___/  free version  \___                             =
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] ===================================================================================
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] Initializing WorldEdit.
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] No matching adapter found for Bukkit.v1_15_R1, DirectChunkAPI disabled
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] PlotMeFix set to class org.primesoft.asyncworldedit.plotme.NullFix.
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit] Undo cleanup started...
[10:49:09] [Server thread/INFO]: [AsyncWorldEdit] Enabled
[10:49:09] [Server thread/INFO]: [FogusCore] Enabling FogusCore v1.8.3
[10:49:09] [Server thread/INFO]: > Server version: V1_15_R1 / OK!
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.173490e2e88.223a7c8a.0...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.173490e2e88.223a7c8a.0.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a331fed.d45790d2.0...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a331fed.d45790d2.0.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a339430.532066e0.1...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a339430.532066e0.1.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a351f61.739054a5.2...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a351f61.739054a5.2.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a3539ac.9b5ffc79.3...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a3539ac.9b5ffc79.3.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a4a4af0.6d3fb917.4...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a4a4af0.6d3fb917.4.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a4a9901.ea3cfccc.5...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a4a9901.ea3cfccc.5.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a4b14ea.3ceeb419.6...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a4b14ea.3ceeb419.6.idx...ok
[10:49:09] [Server thread/INFO]: [FogusCore] Successfully hooked with LuckPerms permissions
[10:49:09] [Server thread/INFO]: [FogusCore] Successfully hooked with Essentials Economy economy
[10:49:09] [Server thread/INFO]: [FogusCore] Successfully hooked with LuckPerms chat
[10:49:09] [Server thread/INFO]: [FogusCore] [Hook] Vault: Success!
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a8d39fb.9f6de16a.7...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a8d39fb.9f6de16a.7.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a8dd7c0.a1ae999f.8...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be\ts.1734a8dd7c0.a1ae999f.8.idx...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit]      * plugins\AsyncWorldEdit\undo\3119268c-98ff-3919-84c9-201c164300be...ok
[10:49:09] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit] ...undo cleanup done.
[10:49:09] [Server thread/INFO]: [FogusCore] Plugin loaded in 199 ms!
[10:49:09] [Server thread/INFO]: Preparing level "Merkez"
[10:49:10] [Server thread/INFO]: Reloading ResourceManager: Default, bukkit
[10:49:10] [Thread-15/INFO]: [AsyncWorldEdit] You have an old version of the plugin. Your version: 3.7.3, available version: 3.7.5
[10:49:13] [Server thread/INFO]: Loaded 6 recipes
[10:49:14] [Server thread/INFO]: -------- World Settings For [Merkez] --------
[10:49:14] [Server thread/INFO]: View Distance: 8
[10:49:14] [Server thread/INFO]: Item Merge Radius: 4.0
[10:49:14] [Server thread/INFO]: Item Despawn Rate: 6000
[10:49:14] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:49:14] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[10:49:14] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911
[10:49:14] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[10:49:14] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:49:14] [Server thread/INFO]: Mob Spawn Range: 8
[10:49:14] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[10:49:14] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:49:14] [Server thread/INFO]: Experience Merge Radius: 6.0
[10:49:14] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:49:14] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:49:14] [Server thread/INFO]: Max TNT Explosions: 100
[10:49:14] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:49:14] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:49:14] [Server thread/INFO]: Preparing start region for dimension 'Merkez'/minecraft:overworld
[10:49:14] [Server thread/INFO]: Loaded 0 spawn chunks for world Merkez
[10:49:14] [Server thread/INFO]: Preparing spawn area: 0%
[10:49:14] [Server thread/INFO]: Time elapsed: 276 ms
[10:49:14] [Server thread/INFO]: [PluginConstructorAPI] Enabling PluginConstructorAPI v1.0.52
[10:49:14] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.6
[10:49:14] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:49:15] [Server thread/INFO]: [FurnaceNotify] Enabling FurnaceNotify v17.0*
[10:49:15] [Server thread/INFO]: [FurnaceNotify] Config options have been registered in the map.
[10:49:15] [Server thread/INFO]: [FurnaceNotify] Plugin scheduler have been enabled, running every 2 seconds.
[10:49:15] [Server thread/INFO]: [FurnaceNotify] Version classes have been created, using version: v1_15_R1
[10:49:15] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[10:49:15] [Server thread/INFO]: [uShop] Enabling uShop v2.1.1-SNAPSHOT
[10:49:15] [Server thread/WARN]: [uShop] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.2-b107 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:15] [Server thread/INFO]: [EasySetSpawn] Enabling EasySetSpawn v3.3*
[10:49:15] [Server thread/INFO]: [EasySetSpawn] Enabled!
[10:49:15] [Server thread/INFO]: [UltraRewards] Enabling UltraRewards v1.1.2*
[10:49:15] [Server thread/INFO]: ------------------------------------------------------------------------
[10:49:15] [Server thread/INFO]: UltraRewards: Version: 1.1.2
[10:49:15] [Server thread/INFO]: ------------------------------------------------------------------------
[10:49:15] [Server thread/INFO]: [AlonsoJDA] Enabling AlonsoJDA v1.0-ALPHA*
[10:49:15] [Server thread/INFO]:     _   _                     _ ___   _   
[10:49:15] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___ _ | |   \ /_\  
[10:49:15] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ || | |) / _ \ 
[10:49:15] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/\__/|___/_/ \_\
[10:49:15] [Server thread/INFO]: 
[10:49:15] [Server thread/INFO]: [AlonsoJDA] Implementing JDA 3.8.0 build 423.
[10:49:15] [Server thread/INFO]: [AlonsoJDA] Plugin enabled and waiting for hook.
[10:49:15] [Server thread/INFO]: [RandomTeleport] Enabling RandomTeleport v2.5.1
[10:49:15] [Server thread/INFO]: [RandomTeleport] Plugin Enabled !
[10:49:15] [Server thread/INFO]: [UnlimitedChats] Enabling UnlimitedChats v2.0*
[10:49:15] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v3.0.1
[10:49:15] [Server thread/INFO]: [LightAPI] Enabling LightAPI v3.4.4
[10:49:15] [Server thread/INFO]: [LightAPI] Loading implementation for Paper server v1_15_R1.
[10:49:15] [Server thread/INFO]: [Skript] Enabling Skript v2.4.1
[10:49:16] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[10:49:21] [Server thread/INFO]: [Skript] Loaded 114752 aliases in 6014ms
[10:49:22] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[10:49:22] [Server thread/INFO]: [QuickClose] Enabling QuickClose v1.4.10
[10:49:22] [Server thread/INFO]: [CrazyAuctionsPlus] Enabling CrazyAuctionsPlus v1.1.3
[10:49:22] [Server thread/INFO]: [CrazyAuctionsPlus] System default language parameter information is loaded.
[10:49:22] [Server thread/INFO]: [CrazyAuctionsPlus] Configuration file Config.yml successfully loaded!
[10:49:22] [Server thread/INFO]: [CrazyAuctionsPlus] Configuration file Database.yml successfully loaded!
[10:49:22] [Server thread/INFO]: [CrazyAuctionsPlus] Configuration file Category.yml successfully loaded!
[10:49:22] [Server thread/INFO]: [CrazyAuctionsPlus] Configuration file ItemCollection.yml successfully loaded!
[10:49:22] [Server thread/INFO]: [CrazyAuctionsPlus] Configuration file Messages.yml successfully loaded!
[10:49:22] [Server thread/INFO]: • Treas »  Vault found, Economic system has been initialized.
[10:49:22] [Server thread/WARN]: [CrazyAuctionsPlus] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.2-b107 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:22] [Server thread/INFO]: • Treas »  Plugin are enabled! 69MS.
[10:49:22] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.1.6
[10:49:22] [Server thread/INFO]: [ClearLag] Loading modules...
[10:49:22] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[10:49:22] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[10:49:22] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[10:49:22] [Server thread/INFO]: [UltimateTimber] Enabling UltimateTimber v2.0.4
[10:49:22] [Server thread/INFO]:  
[10:49:22] [Server thread/INFO]: =============================
[10:49:22] [Server thread/INFO]: UltimateTimber 2.0.4 by Songoda <3!
[10:49:22] [Server thread/INFO]: Action: Enabling...
[10:49:22] [Thread-21/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.15]...
[10:49:22] [Server thread/INFO]: [UltimateTimber] Loaded locale "en_US"
[10:49:22] [Server thread/INFO]: [SongodaCore] Hooked UltimateTimber.
[10:49:22] [Server thread/WARN]: [UltimateTimber] Could not find file for locale "null"
[10:49:22] [Server thread/WARN]: [UltimateTimber] Could not find file for locale "null"
[10:49:22] [Server thread/INFO]: =============================
[10:49:22] [Server thread/INFO]:  
[10:49:22] [Server thread/INFO]: [Votifier] Enabling Votifier v2.6.0-SNAPSHOT
[10:49:22] [Server thread/INFO]: [Votifier] Loaded token for website: default
[10:49:22] [Server thread/INFO]: [Votifier] QUIET mode enabled!
[10:49:22] [Server thread/INFO]: [KiteBoard] Enabling KiteBoard v3.0.8
[10:49:22] [Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /127.0.0.1:8192.
[10:49:22] [Server thread/INFO]: [KiteBoard] Loading scoreboard groups...
[10:49:22] [Server thread/INFO]: [KiteBoard] Loading scoreboard group main_board.yml.
[10:49:22] [Server thread/INFO]: [KiteBoard] Loading tablist groups...
[10:49:22] [Server thread/INFO]: [KiteBoard] Loading tablist group main_tab.yml.
[10:49:22] [Server thread/INFO]: [KiteBoard] Registering placeholder hook Player Placeholders.
[10:49:22] [Server thread/INFO]: [KiteBoard] Registering placeholder hook Event Trigger.
[10:49:22] [Server thread/INFO]: [KiteBoard] Registering placeholder hook Placeholder API.
[10:49:22] [Server thread/INFO]: [KiteBoard] bStats metrics is enabled.
[10:49:22] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.1.0-b775
[10:49:22] [Server thread/WARN]: [Multiverse-Core] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.2-b107 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:22] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.1.0-b775" 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 [Rigby, fernferret, lithium3141, main--, dumptruckman].
[10:49:22] [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. The performance impact is negligible.
[10:49:22] [Server thread/INFO]: -------- World Settings For [Dunya] --------
[10:49:22] [Server thread/INFO]: View Distance: 8
[10:49:22] [Server thread/INFO]: Item Merge Radius: 4.0
[10:49:22] [Server thread/INFO]: Item Despawn Rate: 6000
[10:49:22] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:49:22] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[10:49:22] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911
[10:49:22] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[10:49:22] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:49:22] [Server thread/INFO]: Mob Spawn Range: 8
[10:49:22] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[10:49:22] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:49:22] [Server thread/INFO]: Experience Merge Radius: 6.0
[10:49:22] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:49:22] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:49:22] [Server thread/INFO]: Max TNT Explosions: 100
[10:49:22] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:49:23] [Server thread/INFO]: Preparing start region for dimension 'Dunya'/minecraft:overworld
[10:49:23] [Server thread/INFO]: Loaded 0 spawn chunks for world Dunya
[10:49:23] [Server thread/INFO]: Preparing spawn area: 0%
[10:49:23] [Thread-21/INFO]: [ClearLag] No updates found!
[10:49:23] [Server thread/INFO]: Time elapsed: 338 ms
[10:49:23] [Server thread/INFO]: -------- World Settings For [Nether] --------
[10:49:23] [Server thread/INFO]: View Distance: 8
[10:49:23] [Server thread/INFO]: Item Merge Radius: 4.0
[10:49:23] [Server thread/INFO]: Item Despawn Rate: 6000
[10:49:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:49:23] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[10:49:23] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911
[10:49:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[10:49:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:49:23] [Server thread/INFO]: Mob Spawn Range: 8
[10:49:23] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[10:49:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Experience Merge Radius: 6.0
[10:49:23] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:49:23] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:49:23] [Server thread/INFO]: Max TNT Explosions: 100
[10:49:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:49:23] [Server thread/INFO]: Preparing start region for dimension 'Nether'/minecraft:the_nether
[10:49:23] [Server thread/INFO]: Loaded 0 spawn chunks for world Nether
[10:49:23] [Server thread/INFO]: Time elapsed: 60 ms
[10:49:23] [Server thread/INFO]: -------- World Settings For [End] --------
[10:49:23] [Server thread/INFO]: View Distance: 8
[10:49:23] [Server thread/INFO]: Item Merge Radius: 4.0
[10:49:23] [Server thread/INFO]: Item Despawn Rate: 6000
[10:49:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:49:23] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[10:49:23] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911
[10:49:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[10:49:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:49:23] [Server thread/INFO]: Mob Spawn Range: 8
[10:49:23] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[10:49:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:49:23] [Server thread/INFO]: Experience Merge Radius: 6.0
[10:49:23] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:49:23] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:49:23] [Server thread/INFO]: Max TNT Explosions: 100
[10:49:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:49:23] [Server thread/INFO]: Preparing start region for dimension 'End'/minecraft:the_end
[10:49:23] [Server thread/INFO]: Loaded 0 spawn chunks for world End
[10:49:23] [Server thread/INFO]: Time elapsed: 155 ms
[10:49:23] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[10:49:24] [Server thread/INFO]: [Multiverse-Core] Version 4.1.0-b775 (API v24) Enabled - By Rigby, fernferret, lithium3141, main-- and dumptruckman
[10:49:24] [Server thread/INFO]: [Multiverse-Core] Help dumptruckman keep this project alive. Become a patron! https://www.patreon.com/dumptruckman
[10:49:24] [Server thread/INFO]: [Multiverse-Core] One time donations are also appreciated: https://www.paypal.me/dumptruckman
[10:49:24] [Server thread/INFO]: [MVdWPlaceholderAPI] Enabling MVdWPlaceholderAPI v3.0.1*
[10:49:24] [Server thread/INFO]: [MVdWPlaceholderAPI] Initializing placeholders ...
[10:49:24] [Server thread/INFO]: [MVdWPlaceholderAPI] Sending metrics ...
[10:49:24] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.3.11-Release
[10:49:24] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[10:49:24] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[10:49:24] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: turkish  Author: imZesha
[10:49:24] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[10:49:24] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[10:49:25] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[10:49:25] [Server thread/INFO]: [Minepacks] Loading item translations ...
[10:49:25] [Server thread/INFO]: [Minepacks] Finished loading item translations for 830 items.
[10:49:25] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[10:49:25] [Server thread/INFO]: [DivineDrop] Enabling DivineDrop v2.5.9*
[10:49:25] [Server thread/INFO]: [GeoFurnace] Enabling GeoFurnace v1.73
[10:49:25] [Server thread/INFO]: [GeoFurnace] GeoFurnace has been enabled
[10:49:25] [Server thread/INFO]: [BeehivesPro] Enabling BeehivesPro v1.1.1
[10:49:25] [Server thread/INFO]:     __   __
[10:49:25] [Server thread/INFO]:    |__) |__)   BeehivesPro v1.1.1
[10:49:25] [Server thread/INFO]:    |__) |        by OliPulse
[10:49:25] [Server thread/INFO]:  
[10:49:25] [Server thread/INFO]: [ServerRestorer] Enabling ServerRestorer v1.0.30
[10:49:25] [Server thread/INFO]: [PublicCrafters] Enabling PublicCrafters v4.12.3
[10:49:25] [Server thread/INFO]: [PublicCrafters] Detected version 'v1_15_R1'
[10:49:25] [Server thread/INFO]: [MoneyNote] Enabling MoneyNote v1.2.9*
[10:49:25] [Server thread/INFO]: [MoneyNote] Vault was successfully HOOKED!
[10:49:25] [Server thread/INFO]: [MoneyNote] Plugin is up to date! - 1.2.9
[10:49:25] [Server thread/INFO]: [MoneyNote] Successfully loaded.
[10:49:25] [Server thread/INFO]: [LastLoginAPI] Enabling LastLoginAPI v1.3.6
[10:49:25] [Server thread/INFO]: [LastLoginAPI] Initializing LastLoginAPI 1.3.6
[10:49:25] [Server thread/INFO]: [LastLoginAPI] Hooked into PlaceholderAPI
[10:49:25] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI v1.3.6 enabled
[10:49:25] [Server thread/INFO]: [JoinEventsPro] Enabling JoinEventsPro v4.1
[10:49:25] [Server thread/INFO]: [JOINEVENTSPRO] Loading JoinEventsPro version 4.1...
[10:49:26] [Server thread/INFO]: [JOINEVENTSPRO] Discovered PlaceholderAPI, now hooking into it.
[10:49:26] [Server thread/INFO]: [JOINEVENTSPRO] Successfully loaded the plugin.
[10:49:26] [Server thread/INFO]: [ClearChat] Enabling ClearChat v3.2.4*
[10:49:26] [Server thread/INFO]: [Matrix] Enabling Matrix v5.0.1
[10:49:26] [Server thread/INFO]:    _____
[10:49:26] [Server thread/INFO]:   |  |  |   Matrix AntiCheat v5.0.1
[10:49:26] [Server thread/INFO]:   |  |  |   Environment: git-Paper-378 (MC: 1.15.2)
[10:49:26] [Server thread/INFO]: 
[10:49:26] [Server thread/INFO]: [Matrix] Initializing the NMSVisitor (v1_15_R1)
[10:49:26] [Server thread/INFO]: [Matrix] Enabled 20 checks, Disabled 0 checks
[10:49:26] [Server thread/INFO]: [Matrix] Loaded all configuration files
[10:49:26] [lastloginapi-pool-0/INFO]: [LastLoginAPI] LastLoginAPI v1.3.6 found a new version: 1.4.0
[10:49:26] [Server thread/INFO]: [Matrix] Loaded 96 ML models
[10:49:26] [Server thread/INFO]: [Matrix] Scanning outdated log files....
[10:49:26] [Server thread/INFO]: [Matrix] Deleted 0 outdated log files!
[10:49:26] [Server thread/INFO]: [Matrix] Hooked with PlaceholderAPI
[10:49:26] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.3
[10:49:26] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[10:49:26] [Server thread/INFO]: [ChestSort] Enabling ChestSort v8.12.2
[10:49:26] [Server thread/INFO]: [ChestSort] Succesfully hooked into Minepacks
[10:49:26] [Server thread/INFO]: [ChestSort] Use permissions: true
[10:49:26] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color}
[10:49:26] [Server thread/INFO]: [ChestSort] Chest sorting enabled by default: false
[10:49:26] [Server thread/INFO]: [ChestSort] Inventory sorting enabled by default: false
[10:49:26] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[10:49:26] [Server thread/INFO]: [ChestSort] Sort time: close
[10:49:26] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[10:49:26] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[10:49:26] [Server thread/INFO]: [ChestSort] - Sorting hotkeys:
[10:49:26] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[10:49:26] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[10:49:26] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[10:49:26] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[10:49:26] [Server thread/INFO]: [ChestSort] - Additional hotkeys:
[10:49:26] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[10:49:26] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[10:49:26] [Server thread/INFO]: [ChestSort] Check for updates: true
[10:49:26] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (14400 seconds)
[10:49:26] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[10:49:26] [Server thread/INFO]: [ChestCommands] Enabling ChestCommands v3.5.6
[10:49:26] [Server thread/INFO]: [ChestCommands] Hooked PlaceholderAPI
[10:49:26] [Server thread/INFO]: [ChestCommands] Enabled Title features
[10:49:26] [Server thread/INFO]: [DamageIndicator] Enabling DamageIndicator v1.3.7
[10:49:26] [Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v2.1.8
[10:49:26] [Server thread/INFO]: ==========================================
[10:49:26] [Server thread/INFO]: FurnitureLibary Version: 2.1.8
[10:49:26] [Server thread/INFO]: Furniture Autor: Ste3et_C0st
[10:49:26] [Server thread/INFO]: Furniture Website: https://dicecraft.de/furniture/
[10:49:26] [Server thread/INFO]: FurnitureLib load for Minecraft: 1.15
[10:49:26] [Server thread/INFO]: Furniture start load
[10:49:26] [Server thread/INFO]: Furniture find ProtectionLib: false
[10:49:27] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[10:49:27] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[10:49:27] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[10:49:27] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[10:49:27] [Server thread/INFO]: [FurnitureLib] FurnitureLib load 0 Objects from: SQLite Database
[10:49:27] [Server thread/INFO]: [FurnitureLib] FurnitureLib have loadet 0 in 00:00.008
[10:49:27] [Server thread/INFO]: [FurnitureLib] FurnitureLib have purged 0 Objects
[10:49:27] [Server thread/INFO]: Furniture load finish :)
[10:49:27] [Server thread/INFO]: ==========================================
[10:49:27] [Server thread/INFO]: [MinecordSync] Enabling MinecordSync v1.0*
[10:49:28] [Server thread/INFO]: [net.dv8tion.jda.api.JDA] Login Successful!
[10:49:28] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[10:49:29] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.api.JDA] Finished Loading!
[10:49:29] [Server thread/INFO]: [DeathHolo] Enabling DeathHolo v1.1.2*
[10:49:29] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.1.0-b763
[10:49:29] [Server thread/INFO]: [Multiverse-NetherPortals 4.1.0-b763]  Enabled - By Rigby and fernferret
[10:49:29] [Server thread/INFO]: [F3Name] Enabling F3Name v3.2.0
[10:49:29] [Server thread/INFO]: [F3Name] Starting Bukkit(v1_15_R1) version...
[10:49:29] [Server thread/INFO]: [F3Name] Found PlaceholderAPI! Using it for placeholders.
[10:49:29] [Server thread/INFO]: [F3Name] Found LuckPerms! Using it for groups.
[10:49:29] [Server thread/INFO]: [F3Name] Plugin enabled!
[10:49:29] [Server thread/INFO]: [dynmap] Enabling dynmap v3.0-SNAPSHOT-338*
[10:49:29] [Server thread/INFO]: [dynmap] Using LuckPerms 5.1.26 for access control
[10:49:29] [Server thread/INFO]: [dynmap] Mod Support processing completed
[10:49:30] [Server thread/INFO]: [dynmap] Loaded 25 shaders.
[10:49:30] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[10:49:30] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[10:49:30] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[10:49:30] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[10:49:30] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:1845
[10:49:30] [Server thread/INFO]: [dynmap] version 3.0-SNAPSHOT-338 is enabled - core version 3.0-SNAPSHOT-338
[10:49:30] [Server thread/INFO]: [dynmap] For support, visit https://reddit.com/r/Dynmap
[10:49:30] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[10:49:30] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[10:49:30] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Merkez'.
[10:49:30] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Dunya'.
[10:49:30] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Nether'.
[10:49:30] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'End'.
[10:49:30] [Server thread/WARN]: [dynmap] playermove trigger enabled - this trigger can cause excessive tile updating: use with caution
[10:49:30] [Server thread/INFO]: [dynmap] Enabled
[10:49:30] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.5.1
[10:49:30] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.5.1
[10:49:30] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[10:49:30] [Server thread/INFO]: There is a new version available. (2.6.1)
[10:49:30] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/75185/
[10:49:30] [Server thread/INFO]: [Essentials] Enabling Essentials v2.17.1.53
[10:49:30] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:49:30] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:49:30] [Server thread/INFO]: [Essentials] Using 1.8.3+ BlockStateMeta provider as mob spawner provider.
[10:49:30] [Server thread/INFO]: [Essentials] Using 1.13+ flat spawn egg provider as spawn egg provider.
[10:49:30] [Server thread/INFO]: [Essentials] Using 1.9+ BasePotionData provider as potion meta provider.
[10:49:30] [Server thread/INFO]: [Essentials] Loaded 20977 items from items.json.
[10:49:30] [Server thread/INFO]: [Essentials] Using locale tr
[10:49:31] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:49:31] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:49:31] [Server thread/INFO]: [Vault] [Vault][Economy] Essentials Economy hooked.
[10:49:31] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:49:31] [Server thread/INFO]: [LocketteX] Enabling LocketteX v1.5.1
[10:49:31] [Server thread/INFO]: 
 ████████████████████████████████████████████████████████
 ████████████████████████████████████████████████████████
 ████████████████████████████████████████████████████████
 ████████████████████████████████████████████████████████
 ████████████████████████████████████████████████████████
 ████████████████████████████████████████████████████████
 ████████████████████████████████████████████████████████
 ████████████████████████████████████████████████████████

 -->  LocketteX v1.5.1 Enabled
 -->  Protect your valuables!
 -->  Made with ♥ by Valentina_pro

[10:49:31] [Server thread/INFO]: [UltimateModeration] Enabling UltimateModeration v1.2.3
[10:49:31] [Server thread/INFO]:  
[10:49:31] [Server thread/INFO]: =============================
[10:49:31] [Server thread/INFO]: UltimateModeration 1.2.3 by Songoda <3!
[10:49:31] [Server thread/INFO]: Action: Enabling...
[10:49:31] [Server thread/INFO]: [UltimateModeration] Loaded locale "en_US"
[10:49:31] [Server thread/INFO]: [SongodaCore] Hooked UltimateModeration.
[10:49:31] [Server thread/INFO]: [UltimateModeration] Loaded locale "tr_TR"
[10:49:31] [Server thread/INFO]: =============================
[10:49:31] [Server thread/INFO]:  
[10:49:31] [Server thread/INFO]: [CommandSigns] Enabling CommandSigns v2.2.0
[10:49:31] [Server thread/INFO]: [CommandSigns] Plugin vault detected
[10:49:31] [Server thread/INFO]: [CommandSigns] Vault economy [Essentials Economy] linked with command signs !
[10:49:33] [Server thread/INFO]: [CommandSigns] If this plugin is useful to you, you can make a donation at: https://www.paypal.me/nokorbis
[10:49:33] [Server thread/INFO]: [EpicLevels] Enabling EpicLevels vmaven-version-number
[10:49:33] [Server thread/INFO]:  
[10:49:33] [Server thread/INFO]: =============================
[10:49:33] [Server thread/INFO]: EpicLevels maven-version-number by Songoda <3!
[10:49:33] [Server thread/INFO]: Action: Enabling...
[10:49:33] [Server thread/INFO]: [EpicLevels] Loaded locale "en_US"
[10:49:34] [Server thread/INFO]: [SongodaCore] Hooked EpicLevels.
[10:49:34] [Server thread/WARN]: [EpicLevels] Loaded class com.sainttx.holograms.api.line.HologramLine from CrazyCrates v1.10-RELEASE which is not a depend, softdepend or loadbefore of this plugin.
[10:49:34] [Server thread/INFO]: [EpicLevels] Loaded locale "tr_TR"
[10:49:34] [Server thread/INFO]: connecting to 127.0.0.1 : 3311
[10:49:34] [Server thread/WARN]: [EpicLevels] Loaded class com.zaxxer.hikari.HikariConfig from FurnitureLib v2.1.8 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:34] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[10:49:34] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[10:49:34] [Server thread/INFO]: [EpicLevels] Data handler connected using MySQL.
[10:49:34] [Server thread/INFO]: =============================
[10:49:34] [Server thread/INFO]:  
[10:49:34] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.27-SNAPSHOT (build 2028)
[10:49:34] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v1.1.12
[10:49:35] [Server thread/INFO]:  
[10:49:35] [Server thread/INFO]: __________________________________________________________
[10:49:35] [Server thread/INFO]:  
[10:49:35] [Server thread/INFO]:                        TradeSystem [1.1.12]
[10:49:35] [Server thread/INFO]:  
[10:49:35] [Server thread/INFO]: Status:
[10:49:35] [Server thread/INFO]:  
[10:49:35] [Server thread/INFO]: MC-Version: 1.15.2 (R0.1-SNAPSHOT)
[10:49:35] [Server thread/INFO]:  
[10:49:35] [Server thread/INFO]:   > Loading sounds
[10:49:36] [Server thread/INFO]:   > Loading blacklist
[10:49:36] [Server thread/INFO]:     ...got 3 blocked item(s)
[10:49:36] [Server thread/INFO]:   > Loading layouts
[10:49:37] [Server thread/INFO]:     ...got 0 layout(s)
[10:49:37] [Server thread/INFO]:  
[10:49:37] [Server thread/INFO]: Done (2.61s)
[10:49:37] [Server thread/INFO]:  
[10:49:37] [Server thread/INFO]: __________________________________________________________
[10:49:37] [Server thread/INFO]:  
[10:49:37] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.2-Release
[10:49:37] [Server thread/INFO]: [DeluxeMenus] Hooked into PlaceholderAPI!
[10:49:37] [Server thread/WARN]: [DeluxeMenus] open_command specified for menu: isinlanma already exists for another menu!
[10:49:37] [Server thread/WARN]: [DeluxeMenus] Skipping menu: isinlanma
[10:49:37] [Server thread/INFO]: [DeluxeMenus] 1 GUI menus loaded!
[10:49:37] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[10:49:37] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault for economy requirement!
[10:49:37] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup
[10:49:37] [Server thread/INFO]: [HolographicPlaceholders] Enabling HolographicPlaceholders v2.0.7 Beta
[10:49:37] [Server thread/INFO]: ==================[ Starting ]==================
[10:49:37] [Server thread/INFO]: Using the master configurations because version is V1_15
[10:49:37] [Server thread/INFO]: [HPE] Enabled: ProtocolLib
[10:49:37] [Server thread/INFO]: [HPE] Enabled: PlaceholderAPI
[10:49:37] [Server thread/INFO]: [HPE] Enabled: BalTop
[10:49:37] [Server thread/INFO]: [HPE] Enabled: PlayTime
[10:49:37] [Server thread/INFO]: [HPE] Enabled: MultiPlaceholders
[10:49:37] [Server thread/INFO]: =================[ Done: 46ms ]=================
[10:49:37] [Server thread/INFO]: [TAB] Enabling TAB v2.8.2
[10:49:37] [Server thread/INFO]: [TAB] Server version: 1.15.2 (v1_15_R1)
[10:49:37] [Server thread/INFO]: [TAB] File plugins\TAB\errors.txt exists and is not empty. Please take a look at the errors and try to correct them. You can also join our discord for assistance. After you resolve them, delete the file.
[10:49:37] [Server thread/INFO]: [TAB] Hint: Found used PlaceholderAPI placeholder "%vault_rank%". Consider replacing it with plugin's internal "%rank%" for better performance.
[10:49:37] [Server thread/INFO]: [TAB] Both unlimited nametag mode and belowname features are enabled, this will result in the worst combination: belowname objective not appearing on players, only NPCs. Check wiki for more info.
[10:49:37] [Server thread/INFO]: [TAB] There were 2 startup warnings.
[10:49:37] [Server thread/INFO]: [TAB] Enabled in 52ms
[10:49:37] [Server thread/INFO]: [AdvancedClans] Enabling AdvancedClans vRevamped-1.3.2*
[10:49:37] [Server thread/INFO]: [AdvancedClans] Log || FINE: Support for NMS version v1_15_R1 succesfully loaded.
[10:49:37] [Server thread/WARN]: [AdvancedClans] Loaded class com.zaxxer.hikari.HikariDataSource from FurnitureLib v2.1.8 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:37] [Server thread/INFO]: [AdvancedClans] Log || FINE: MySQL connection arguments correctly setted.
[10:49:37] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] AdvancedClans - Connection pool - Starting...
[10:49:37] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] AdvancedClans - Connection pool - Start completed.
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_kills}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_deaths}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_leader}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_name}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_members}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_name_color}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_privacy}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_prefix}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_kdr}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_player_kdr}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_player_kills}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_player_deaths}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_player_rank}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_balance}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_level}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_experience}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] AdvancedClans added custom placeholder {clans_required_experience}
[10:49:37] [Server thread/INFO]: [AdvancedClans] Log || INFO: Async saving task started succesfully
[10:49:37] [Server thread/INFO]: 
[10:49:37] [Server thread/INFO]:     AdvancedClans vRevamped-1.3.2
[10:49:37] [Server thread/INFO]:     Running on Bukkit version: v1_15_R1
[10:49:37] [Server thread/INFO]:     Author: ImJosee_ discord support: https://discord.gg/wBZnbKG
[10:49:37] [Server thread/INFO]: 
[10:49:37] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.10-RELEASE
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[10:49:37] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loading the Messages.yml
[10:49:37] [Server thread/INFO]: [CrazyCrates] Successfully loaded Messages.yml
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loading the Locations.yml
[10:49:37] [Server thread/INFO]: [CrazyCrates] Successfully loaded Locations.yml
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[10:49:37] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Basic.yml.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Classic.yml.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Crazy.yml.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Galactic.yml.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[10:49:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_15_R1! Trying to find NMS support
[10:49:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_15_R1' loaded!
[10:49:37] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[10:49:37] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[10:49:37] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[10:49:37] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[10:49:37] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[10:49:37] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[10:49:37] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[10:49:37] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[10:49:37] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[10:49:37] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_basic}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_basic_physical}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_basic_total}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_classic}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_classic_physical}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_classic_total}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_crazy}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_crazy_physical}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_crazy_total}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_galactic}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_galactic_physical}
[10:49:37] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_galactic_total}
[10:49:37] [Server thread/INFO]: [HolographicExtension] Enabling HolographicExtension v1.10.9
[10:49:37] [Server thread/INFO]: [HolographicExtension] Starting HolographicExtension v1.10.9
[10:49:37] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'spawnbir' from config.
[10:49:37] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'scroller' from config.
[10:49:37] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'typing' from config.
[10:49:37] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'rainbow' from config.
[10:49:37] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.12.4
[10:49:37] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into Essentials!
[10:49:37] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[10:49:38] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Enabling LeaderHeadsRevamped v4.0.6
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Hooked into MVdWPlaceholderAPI
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Hooked into PlaceholderAPI
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Hooked into Citizens
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] [ACF] Enabled Asynchronous Tab Completion Support!
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting up database
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Successfully connected to SQLite
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Creating database tables
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistics
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %ajpk_stats_highscore% from file %ajpk_stats_highscore%.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %ajpk_stats_highscore_kolayparkur% from file %ajpk_stats_highscore_kolayparkur%.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %ajpk_stats_highscore_parkur% from file %ajpk_stats_highscore_parkur%.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic zorparkur from file %ajpk_stats_highscore_zorparkur%.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %ajpk_stats_highscore_zorparkur_nocache% from file %ajpk_stats_highscore_zorparkur_nocache%.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %statistic_mine_block% from file %statistic_mine_block%.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %ajpk_stats_highscore_kolayparkur_nocache% from file ajpk_stats_highscore_kolayparkur_nocache.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %statistic_hours_played% from file statistic_hours_played.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %statistic_minutes_played% from file statistic_minutes_played.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %statistic_player_kills% from file statistic_player_kills.yml
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %ajpk_stats_highscore%
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %ajpk_stats_highscore_kolayparkur%
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %ajpk_stats_highscore_parkur%
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic zorparkur
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %ajpk_stats_highscore_zorparkur_nocache%
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %statistic_mine_block%
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %ajpk_stats_highscore_kolayparkur_nocache%
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %statistic_hours_played%
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %statistic_minutes_played%
[10:49:38] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %statistic_player_kills%
[10:49:38] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.9.5
[10:49:38] [Server thread/INFO]: ajParkour v2.9.5 by ajgeiss0702 has been enabled!
[10:49:38] [Server thread/INFO]: [Quests] Enabling Quests v2.9.5
[10:49:38] [Server thread/INFO]: [Quests] Your server is running version v1_15_R1.
[10:49:38] [Server thread/INFO]: [Quests] Titles have been enabled.
[10:49:38] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[10:49:38] [Server thread/INFO]: [UltimateClaims] Enabling UltimateClaims v1.2.8
[10:49:38] [Server thread/INFO]:  
[10:49:38] [Server thread/INFO]: =============================
[10:49:38] [Server thread/INFO]: UltimateClaims 1.2.8 by Songoda <3!
[10:49:38] [Server thread/INFO]: Action: Enabling...
[10:49:38] [Server thread/INFO]: [UltimateClaims] Loaded locale "en_US"
[10:49:38] [Server thread/INFO]: [SongodaCore] Hooked UltimateClaims.
[10:49:38] [Server thread/WARN]: [UltimateClaims] Loaded class com.sainttx.holograms.api.line.HologramLine from CrazyCrates v1.10-RELEASE which is not a depend, softdepend or loadbefore of this plugin.
[10:49:38] [Server thread/INFO]: [UltimateClaims] Loaded locale "tr_TR"
[10:49:38] [Server thread/WARN]: [UltimateClaims] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.10.6 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:38] [Server thread/INFO]: connecting to localhost : 3311
[10:49:38] [Server thread/WARN]: [UltimateClaims] Loaded class com.zaxxer.hikari.HikariConfig from FurnitureLib v2.1.8 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:38] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[10:49:38] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[10:49:38] [Server thread/INFO]: [UltimateClaims] Data handler connected using MySQL.
[10:49:38] [Server thread/INFO]: =============================
[10:49:38] [Server thread/INFO]:  
[10:49:38] [Server thread/INFO]: [ChatManager] Enabling ChatManager v3.6.5
[10:49:38] [Server thread/INFO]: [ChatManager] Hooked into: PlaceholderAPI v2.10.6
[10:49:38] [Server thread/INFO]: [ChatManager] Hooked into: Essentials v2.17.1.53
[10:49:38] [Server thread/INFO]: [ChatManager] Hooked into: Vault v1.7.2-b107
[10:49:38] [Server thread/INFO]: [ChatManager] Plugin is up to date - v3.6.5
[10:49:38] [Server thread/INFO]: [ChatManager] Starting Metrics.
[10:49:38] [Server thread/INFO]: =========================
[10:49:38] [Server thread/INFO]: Chat Manager
[10:49:38] [Server thread/INFO]: Version 3.6.5
[10:49:38] [Server thread/INFO]: Author: H1DD3NxN1NJA
[10:49:38] [Server thread/INFO]: =========================
[10:49:38] [Server thread/INFO]: [Harbor] Enabling Harbor v1.6.1
[10:49:38] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v2.6.2
[10:49:38] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[10:49:38] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ChatManager!
[10:49:38] [Server thread/INFO]: [InteractiveChat] Legacy Bungeecord Chat API detected, using legacy methods...
[10:49:38] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[10:49:38] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.3;5407315
[10:49:38] [Server thread/INFO]: [WorldGuard] (Merkez) TNT ignition is PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Merkez) Lighters are PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Merkez) Lava fire is PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Merkez) Fire spread is UNRESTRICTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Merkez'
[10:49:38] [Server thread/INFO]: [WorldGuard] (Dunya) TNT ignition is PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Dunya) Lighters are PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Dunya) Lava fire is PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Dunya) Fire spread is UNRESTRICTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dunya'
[10:49:38] [Server thread/INFO]: [WorldGuard] (Nether) TNT ignition is PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Nether) Lighters are PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Nether) Lava fire is PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (Nether) Fire spread is UNRESTRICTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Nether'
[10:49:38] [Server thread/INFO]: [WorldGuard] (End) TNT ignition is PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (End) Lighters are PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (End) Lava fire is PERMITTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] (End) Fire spread is UNRESTRICTED.
[10:49:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'End'
[10:49:38] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:49:39] [Server thread/INFO]: [FogusCore] [Hook] WorldGuard: Success!
[10:49:39] [Server thread/INFO]: [MeteoritesPro] Enabling MeteoritesPro v1.5.1
[10:49:39] [Server thread/INFO]:          __
[10:49:39] [Server thread/INFO]:    |\/| |__)   MeteoritesPro v1.5.1
[10:49:39] [Server thread/INFO]:    |  | |        by OliPulse
[10:49:39] [Server thread/INFO]:  
[10:49:39] [Server thread/INFO]: [MeteoritesPro] Invalid world name for random meteorites.
[10:49:39] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v9.9.4.0
[10:49:39] [Server thread/INFO]: [EpicAnchors] Enabling EpicAnchors v1.4.9
[10:49:39] [Server thread/INFO]:  
[10:49:39] [Server thread/INFO]: =============================
[10:49:39] [Server thread/INFO]: EpicAnchors 1.4.9 by Songoda <3!
[10:49:39] [Server thread/INFO]: Action: Enabling...
[10:49:39] [Server thread/INFO]: [EpicAnchors] Loaded locale "en_US"
[10:49:39] [Server thread/INFO]: [SongodaCore] Hooked EpicAnchors.
[10:49:39] [Server thread/WARN]: [EpicAnchors] Loaded class com.sainttx.holograms.api.line.HologramLine from CrazyCrates v1.10-RELEASE which is not a depend, softdepend or loadbefore of this plugin.
[10:49:39] [Server thread/INFO]: [EpicAnchors] Loaded locale "tr_TR"
[10:49:39] [Server thread/INFO]: =============================
[10:49:39] [Server thread/INFO]:  
[10:49:39] [Server thread/INFO]: [ECore] Enabling ECore v1.0k
[10:49:39] [Server thread/INFO]: |ECore> You are running on 'v1_15_R1' version
[10:49:39] [Server thread/INFO]: |ECore> 'Unknown' currently not supported please tell Dev
[10:49:39] [Server thread/INFO]: [XWeather] Enabling XWeather v1.2.3
[10:49:39] [Server thread/INFO]: • Treas »  Dünyalarda izin verildi: Dunya
[10:49:39] [Server thread/INFO]: [EpicFurnaces] Enabling EpicFurnaces vmaven-version-number
[10:49:39] [Server thread/INFO]:  
[10:49:39] [Server thread/INFO]: =============================
[10:49:39] [Server thread/INFO]: EpicFurnaces maven-version-number by Songoda <3!
[10:49:39] [Server thread/INFO]: Action: Enabling...
[10:49:39] [Server thread/INFO]: [EpicFurnaces] Loaded locale "en_US"
[10:49:39] [Server thread/INFO]: [SongodaCore] Hooked EpicFurnaces.
[10:49:39] [Server thread/WARN]: [EpicFurnaces] Loaded class com.sainttx.holograms.api.line.HologramLine from CrazyCrates v1.10-RELEASE which is not a depend, softdepend or loadbefore of this plugin.
[10:49:39] [Server thread/INFO]: =============================
[10:49:39] [Server thread/INFO]:  
[10:49:39] [Server thread/INFO]: [Coins] Enabling Coins v1.9.5
[10:49:39] [Server thread/INFO]: [NeoMoreTPPlus] Enabling NeoMoreTPPlus v1.0u
[10:49:39] [Server thread/INFO]: |ECore> You are running on 'v1_15_R1' version
[10:49:39] [Server thread/INFO]: |ECore> NMS support 'MC1_15_R1' loaded!
[10:49:39] [Server thread/INFO]: |ECore> Connecting to MySQL Database...
[10:49:39] [Server thread/INFO]: |ECore> Connected to MySQL
[10:49:39] [Server thread/INFO]: Public Warps Loaded: 13
[10:49:39] [Server thread/INFO]: |ECore> WorldGuard Flag Registered Already...
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Enabling CrazyEnvoy v1.3.8-RELEASE
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Loading the Config.yml
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded Config.yml
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Loading the Messages.yml
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded Messages.yml
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Loading the Data.yml
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded Data.yml
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Loading custom files.
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Loaded new custom file: /Tiers/Basic.yml.
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Loaded new custom file: /Tiers/Lucky.yml.
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Loaded new custom file: /Tiers/Titan.yml.
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Finished loading custom files.
[10:49:39] [Server thread/INFO]: [CrazyEnvoy] Loaded HolographicDisplays hologram hook.
[10:49:40] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoy added custom placeholder {crazyenvoy_cooldown}
[10:49:40] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoy added custom placeholder {crazyenvoy_time_left}
[10:49:40] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoy added custom placeholder {crazyenvoy_crates_left}
[10:49:40] [Server thread/INFO]: [MCJukebox] Enabling MCJukebox v2.6.5*
[10:49:40] [Server thread/INFO]: [MCJukebox] Skript integration enabled!
[10:49:40] [Server thread/INFO]: [MCJukebox] MCJukebox has been loaded!
[10:49:40] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Animations
[10:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee
[10:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player
[10:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server
[10:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic
[10:49:40] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.2-b107 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[10:49:40] [Server thread/INFO]: Starting GS4 status listener
[10:49:40] [Query Listener #1/INFO]: Query running on 0.0.0.0:25567
[10:49:40] [Server thread/INFO]: Running delayed init tasks
[10:49:40] [Server thread/INFO]: [AsyncWorldEdit] Loading plugins...
[10:49:40] [Craft Scheduler Thread - 15/INFO]: [Matrix] Start checking update....
[10:49:40] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.15.2(578)
[10:49:40] [Craft Scheduler Thread - 70/INFO]: [EasySetSpawn] Update check enabled!
[10:49:40] [Craft Scheduler Thread - 72/INFO]: [Vault] Checking for Updates ... 
[10:49:40] [Craft Scheduler Thread - 29/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[10:49:40] [Server thread/WARN]: [Skript] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.3;5407315 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:40] [Server thread/WARN]: [Skript] Loaded class com.sk89q.worldedit.math.BlockVector3 from WorldEdit v7.2.0-beta-01+0eb9ac7 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:40] [Server thread/WARN]: [Skript] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.2-b107 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:40] [Craft Scheduler Thread - 59/INFO]: • Treas »  Güncellemeleri kontrol et!
[10:49:40] [Craft Scheduler Thread - 59/INFO]: • Treas »  Eklenti en güncel sürümü kullanıyor.
[10:49:40] [Server thread/INFO]: [Skript] Loading variables...
[10:49:40] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[10:49:40] [Craft Scheduler Thread - 16/INFO]: [Matrix] Plugin Enabled
[10:49:40] [Craft Scheduler Thread - 25/WARN]: [HolographicPlaceholders] Plugin HolographicPlaceholders v2.0.7 Beta generated an exception while executing task 1265
java.lang.RuntimeException: Economy username cannot be null
    at com.earth2me.essentials.api.Economy.getUserByName(Economy.java:67) ~[?:?]
    at com.earth2me.essentials.api.Economy.getMoneyExact(Economy.java:111) ~[?:?]
    at com.earth2me.essentials.api.Economy.getMoney(Economy.java:100) ~[?:?]
    at net.milkbowl.vault.economy.plugins.Economy_Essentials.getBalance(Economy_Essentials.java:79) ~[?:?]
    at net.milkbowl.vault.economy.AbstractEconomy.getBalance(AbstractEconomy.java:20) ~[?:?]
    at com.neutralplasma.holographicPlaceholders.addons.baltop.BalTopAddon$1.run(BalTopAddon.java:83) ~[?:?]
    at org.bukkit.craftbukkit.v1_15_R1.scheduler.CraftTask.run(CraftTask.java:99) ~[patched_1.15.2.jar:git-Paper-378]
    at org.bukkit.craftbukkit.v1_15_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54) ~[patched_1.15.2.jar:git-Paper-378]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[patched_1.15.2.jar:git-Paper-378]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_251]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_251]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_251]
[10:49:40] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[10:49:40] [Server thread/INFO]: [Skript] Loaded 3 scripts with a total of 1 trigger and 2 commands in 0.12 seconds
[10:49:40] [Server thread/INFO]: [Skript] Finished loading.
[10:49:41] [EventThread/INFO]: [MCJukebox] Key accepted and connection to MCJukebox established.
[10:49:41] [Craft Scheduler Thread - 15/INFO]: > Matrix Updater:
[10:49:41] [Craft Scheduler Thread - 15/INFO]:     Matrix has an update: 5.0.2 current version: 5.0.1
[10:49:41] [Craft Scheduler Thread - 15/INFO]:     Download link: https://www.mc-market.org/resources/13999/
[10:49:41] [Craft Scheduler Thread - 6/INFO]: [PlaceholderAPI] 175 placeholder expansions are available on the cloud.
[10:49:41] [Craft Scheduler Thread - 6/INFO]: [PlaceholderAPI] 3 installed expansions have updates available.
[10:49:41] [Server thread/WARN]: [ChestCommands] Loaded class com.sk89q.worldguard.protection.regions.ProtectedRegion from WorldGuard v7.0.3;5407315 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:41] [Server thread/WARN]: [ChestCommands] Loaded class com.sk89q.worldedit.extent.Extent from WorldEdit v7.2.0-beta-01+0eb9ac7 which is not a depend, softdepend or loadbefore of this plugin.
[10:49:41] [Server thread/INFO]: [ChestCommands] Enabled ChestCommands-Bungee
[10:49:41] [Server thread/INFO]: [ChestCommands] Enabled ChestCommandsLegacySupport
[10:49:41] [Server thread/INFO]:  
#------------------- Chest Commands Errors/Warnings -------------------#
1) The item "wool:1" used to open the menu "example.yml" is invalid: invalid material "wool"
2) The icon "spawncmd" in the menu "example.yml" has an invalid ID: invalid material "bed"
3) The icon "colored-enchanted-stacked-wool" in the menu "example.yml" has an invalid ID: invalid material "wool"
4) The icon "test-with-placeholder" in the menu "example.yml" has an invalid ID: invalid material "emptymap"
5) The icon "a-talking-head" in the menu "example.yml" has an invalid ID: invalid material "head"
6) The icon "permission" in the menu "example.yml" has an invalid ID: invalid material "ironbar"
7) The icon "oyunamaci" in the menu "yardim.yml" has an invalid ID: invalid material "skull"
8) The icon "komutlar" in the menu "yardim.yml" has an invalid ID: invalid material "skull"
9) The icon "economy-give" in the menu "example.yml" used the old settings. It's recommended to update to the new settings
10) The icon "economy-take" in the menu "example.yml" used the old settings. It's recommended to update to the new settings
11) The icon "permission" in the menu "example.yml" used the old settings. It's recommended to update to the new settings
#----------------------------------------------------------------------#
[10:49:41] [Server thread/INFO]: [Quests] Task type blockbreak has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type blockbreakcertain has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type blockplace has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type blockplacecertain has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type mobkilling has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type mobkillingcertain has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type playerkilling has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type fishing has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type inventory has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type walking has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type taming has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type milking has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type shearing has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type position has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type playtime has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type brewing has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type expearn has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type breeding has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type enchanting has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type dealdamage has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type permission has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type citizens_deliver has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type citizens_interact has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Task type placeholderapi_evaluate has been registered.
[10:49:41] [Server thread/INFO]: [Quests] Registering quest example1 with 1 tasks.
[10:49:41] [Server thread/INFO]: [Quests] Registering quest example2 with 2 tasks.
[10:49:41] [Server thread/INFO]: [Quests] Registering quest example3 with 2 tasks.
[10:49:41] [Server thread/INFO]: [Quests] Registering quest example4 with 1 tasks.
[10:49:41] [Server thread/INFO]: [Quests] Registering quest example5 with 1 tasks.
[10:49:41] [Server thread/INFO]: [Quests] Registering quest example6 with 1 tasks.
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Cheat Prevention v14.16'
[10:49:41] [Craft Scheduler Thread - 72/INFO]: [Vault] No new version available
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Citizens Compatibility v14.26'
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Factions Compatibility v14.5'
[10:49:41] [Server thread/INFO]: [PVP Koruması - Factions Compatibility] Could not find a valid Factions plugin.
[10:49:41] [Server thread/INFO]: [PVP Koruması - Factions Compatibility] Automatically disabling...
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Lands Compatibility v14.7'
[10:49:41] [Server thread/INFO]: [PVP Koruması - Lands Compatibility] Could not find Lands plugin.
[10:49:41] [Server thread/INFO]: [PVP Koruması - Lands Compatibility] Automatically disabling...
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Newbie Helper v14.5'
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'NotCombatLogX v14.4'
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Notifier v14.15'
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Parties Compatibility v14.2'
[10:49:41] [Server thread/INFO]: [PVP Koruması - Parties Compatibility] Parties is not installed, automatically disabling...
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Placeholder Compatibility v14.4'
[10:49:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CombatLogX added custom placeholder {combatlogx_time_left}
[10:49:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CombatLogX added custom placeholder {combatlogx_enemy_name}
[10:49:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CombatLogX added custom placeholder {combatlogx_enemy_health}
[10:49:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CombatLogX added custom placeholder {combatlogx_enemy_health_rounded}
[10:49:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CombatLogX added custom placeholder {combatlogx_enemy_hearts}
[10:49:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CombatLogX added custom placeholder {combatlogx_in_combat}
[10:49:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CombatLogX added custom placeholder {combatlogx_status}
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'RedProtect Compatibility v14.4'
[10:49:41] [Server thread/INFO]: [PVP Koruması - RedProtect Compatibility] Could not find RedProtect plugin.
[10:49:41] [Server thread/INFO]: [PVP Koruması - RedProtect Compatibility] Automatically disabling...
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Residence Compatibility v14.6'
[10:49:41] [Server thread/INFO]: [PVP Koruması - Residence Compatibility] Could not find Residence plugin.
[10:49:41] [Server thread/INFO]: [PVP Koruması - Residence Compatibility] Automatically disabling...
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Rewards v14.9'
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'Towny Compatibility v14.5'
[10:49:41] [Server thread/INFO]: [PVP Koruması - Towny Compatibility] Could not find Towny plugin.
[10:49:41] [Server thread/INFO]: [PVP Koruması - Towny Compatibility] Automatically disabling...
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 'WorldGuard Compatibility v14.13'
[10:49:41] [Server thread/INFO]: • Treas »   
[10:49:41] [Server thread/INFO]: • Treas »  Özellik aktifleştirildi 8 expansions
[10:49:41] [Server thread/INFO]: • Treas »  PVP Sistemi aktifleştirildi
[10:49:41] [Craft Scheduler Thread - 56/INFO]: [ajParkour] An update is available! (2.9.7) Do /ajParkour update to download it!
[10:49:41] [EventThread/INFO]: [MCJukebox] Predicted time offset: -3072ms.
[10:49:41] [EventThread/INFO]: [MCJukebox] This will be silently updated every 30 seconds.
[10:49:42] [Craft Scheduler Thread - 29/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[10:49:44] [Server thread/INFO]: [Citizens] Loaded 14 NPCs.
[10:49:44] [Server thread/INFO]: [LeaderHeadsRevamped] Creating MVdWPlaceholderAPI placeholders
[10:49:44] [Server thread/INFO]: [MVdWPlaceholderAPI] LeaderHeadsRevamped added custom placeholder {leaderheads_*_*_*_*}
[10:49:44] [Server thread/INFO]: [LeaderHeadsRevamped] Creating PlaceholderAPI placeholders
[10:49:44] [Server thread/INFO]: Database successfuly load in 4.0s
[10:49:44] [Server thread/INFO]: Total Data:
[10:49:44] [Server thread/INFO]: MORETPPLUS_HOME: 0 data
[10:49:44] [Server thread/INFO]: MORETPPLUS_PLAYER_WARP: 0 data
[10:49:44] [Server thread/INFO]: MORETPPLUS_PLAYER_SETTING: 4 data
[10:49:44] [Server thread/INFO]: Done (57.136s)! For help, type "help"
[10:49:44] [Server thread/INFO]: Timings Reset
[10:49:44] [Craft Scheduler Thread - 72/INFO]: • Treas »  Checking for updates using the Spigot API...
[10:49:45] [Server thread/INFO]: Paper Hooked to: [Vault]
[10:49:45] [Server thread/WARN]: [ChestSort] =================================================
[10:49:45] [Server thread/WARN]: [ChestSort] There is a new version of ChestSort available!
[10:49:45] [Server thread/WARN]: [ChestSort] Latest : 8.15.0
[10:49:45] [Server thread/WARN]: [ChestSort] Current: 8.12.2
[10:49:45] [Server thread/WARN]: [ChestSort] Please update to the newest version. Download:
[10:49:45] [Server thread/WARN]: [ChestSort] https://chestsort.de
[10:49:45] [Server thread/WARN]: [ChestSort] =================================================
[10:49:45] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5111ms or 102 ticks behind
[10:49:45] [Craft Scheduler Thread - 72/INFO]: • Treas »  ==============================================
[10:49:45] [Craft Scheduler Thread - 72/INFO]: • Treas »  CombatLogX Update Checker
[10:49:45] [Craft Scheduler Thread - 72/INFO]: • Treas »   
[10:49:45] [Craft Scheduler Thread - 72/INFO]: • Treas »  You are using the latest version!
[10:49:45] [Craft Scheduler Thread - 72/INFO]: • Treas »  ==============================================
[10:49:45] [Server thread/INFO]: [JOINEVENTSPRO] No new update found. You are on the latest version.
[10:49:46] [Server thread/INFO]: [FurnaceNotify] Plugin command have been created sucessfully.
[10:49:46] [Server thread/INFO]: [FurnaceNotify] PlaceholderAPI support have been found, using it for messages.
[10:49:46] [Server thread/INFO]: [FurnaceNotify] GeoFurnace support have been found, using it.
[10:49:46] [Server thread/INFO]: [ServerRestorer] Starting to save directory. Please wait.
[10:49:46] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[10:49:47] [Craft Scheduler Thread - 57/WARN]: java.io.IOException: The system cannot find the path specified
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at java.io.WinNTFileSystem.createFileExclusively(Native Method)
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at java.io.File.createNewFile(Unknown Source)
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at me.zombie_striker.sr.Main$4.run(Main.java:399)
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at org.bukkit.craftbukkit.v1_15_R1.scheduler.CraftTask.run(CraftTask.java:99)
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at org.bukkit.craftbukkit.v1_15_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
[10:49:47] [Craft Scheduler Thread - 57/WARN]:     at java.lang.Thread.run(Unknown Source)
[10:49:48] [Server thread/INFO]: -------< LightAPI-fork 3.4.4 >-------
[10:49:48] [Server thread/INFO]: You are running the latest version!
[10:49:50] [Craft Scheduler Thread - 59/ERROR]: [UltimateTimber] Error checking config tr_TR.lang
org.bukkit.configuration.InvalidConfigurationException: while scanning for the next token
found character '%' that cannot start any token. (Do not use % for indentation)
 in 'string', line 49, column 12:
        title: %type% gösteriliyor
               ^

    at com.songoda.ultimatetimber.core.configuration.Config.loadFromString(Config.java:438) ~[?:?]
    at com.songoda.ultimatetimber.core.configuration.Config.load(Config.java:430) ~[?:?]
    at com.songoda.ultimatetimber.core.locale.Locale.updateFiles(Locale.java:200) ~[?:?]
    at com.songoda.ultimatetimber.core.locale.Locale.saveLocale(Locale.java:170) ~[?:?]
    at com.songoda.ultimatetimber.core.locale.Locale.saveLocale(Locale.java:157) ~[?:?]
    at com.songoda.ultimatetimber.core.core.LocaleModule.downloadLocale(LocaleModule.java:56) ~[?:?]
    at com.songoda.ultimatetimber.core.core.LocaleModule.run(LocaleModule.java:25) ~[?:?]
    at com.songoda.ultimatetimber.core.SongodaCore.update(SongodaCore.java:296) ~[?:?]
    at com.songoda.ultimatetimber.core.SongodaCore.lambda$register$5(SongodaCore.java:262) ~[?:?]
    at org.bukkit.craftbukkit.v1_15_R1.scheduler.CraftTask.run(CraftTask.java:99) ~[patched_1.15.2.jar:git-Paper-378]
    at org.bukkit.craftbukkit.v1_15_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54) ~[patched_1.15.2.jar:git-Paper-378]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[patched_1.15.2.jar:git-Paper-378]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_251]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_251]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_251]
Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next token
found character '%' that cannot start any token. (Do not use % for indentation)
 in 'string', line 49, column 12:
        title: %type% gösteriliyor
               ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:419) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:227) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:586) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:158) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:124) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:239) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:230) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:218) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:144) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:239) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:230) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:218) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:144) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:239) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:230) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:218) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:144) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:85) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:108) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:141) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-378]
    at com.songoda.ultimatetimber.core.configuration.Config.loadFromString(Config.java:436) ~[?:?]
    ... 14 more
[10:49:50] [Craft Scheduler Thread - 106/ERROR]: [EpicLevels] Error checking config tr_TR.lang
org.bukkit.configuration.InvalidConfigurationException: while scanning for the next token
found character '%' that cannot start any token. (Do not use % for indentation)
 in 'string', line 49, column 12:
        title: %type% gösteriliyor
               ^

    at com.songoda.ultimatetimber.core.configuration.Config.loadFromString(Config.java:438) ~[?:?]
    at com.songoda.ultimatetimber.core.locale.Locale.updateFiles(Locale.java:205) ~[?:?]
    at com.songoda.ultimatetimber.core.locale.Locale.saveLocale(Locale.java:170) ~[?:?]
    at com.songoda.ultimatetimber.core.locale.Locale.saveLocale(Locale.java:157) ~[?:?]
    at com.songoda.ultimatetimber.core.core.LocaleModule.downloadLocale(LocaleModule.java:56) ~[?:?]
    at com.songoda.ultimatetimber.core.core.LocaleModule.run(LocaleModule.java:25) ~[?:?]
    at com.songoda.ultimatetimber.core.SongodaCore.update(SongodaCore.java:296) ~[?:?]
    at com.songoda.ultimatetimber.core.SongodaCore.lambda$register$5(SongodaCore.java:262) ~[?:?]
    at org.bukkit.craftbukkit.v1_15_R1.scheduler.CraftTask.run(CraftTask.java:99) ~[patched_1.15.2.jar:git-Paper-378]
    at org.bukkit.craftbukkit.v1_15_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54) ~[patched_1.15.2.jar:git-Paper-378]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[patched_1.15.2.jar:git-Paper-378]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_251]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_251]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_251]
Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next token
found character '%' that cannot start any token. (Do not use % for indentation)
 in 'string', line 49, column 12:
        title: %type% gösteriliyor
               ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:419) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:227) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:586) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:158) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:124) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:239) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:230) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:218) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:144) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:239) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:230) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:218) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:144) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:239) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:230) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:218) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:144) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:85) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:108) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:141) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-378]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-378]
    at com.songoda.ultimatetimber.core.configuration.Config.loadFromString(Config.java:436) ~[?:?]
    ... 13 more
[10:49:50] [Craft Scheduler Thread - 49/INFO]: [InteractionVisualizer] A new version is available on SpigotMC: 1.12.6
[10:49:50] [Craft Scheduler Thread - 49/INFO]: Download: https://www.spigotmc.org/resources/77050
[10:50:35] [Server thread/INFO]: Stopping the server
[10:50:35] [Server thread/INFO]: Stopping server (Ignore any thread death message you see! - DO NOT REPORT THREAD DEATH TO PAPER)
[10:50:35] [Server thread/INFO]: [MCJukebox] Disabling MCJukebox v2.6.5
[10:50:35] [Server thread/INFO]: [CrazyEnvoy] Disabling CrazyEnvoy v1.3.8-RELEASE
[10:50:35] [Server thread/INFO]: [NeoMoreTPPlus] Disabling NeoMoreTPPlus v1.0u
[10:50:35] [Server thread/INFO]: [Coins] Disabling Coins v1.9.5
[10:50:35] [Server thread/INFO]: [EpicFurnaces] Disabling EpicFurnaces vmaven-version-number
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]: EpicFurnaces maven-version-number by Songoda <3!
[10:50:35] [Server thread/INFO]: Action: Disabling...
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: [XWeather] Disabling XWeather v1.2.3
[10:50:35] [Server thread/INFO]: [FogusCore] Disabling FogusCore v1.8.3
[10:50:35] [Server thread/INFO]: [ECore] Disabling ECore v1.0k
[10:50:35] [Server thread/INFO]: [EpicAnchors] Disabling EpicAnchors v1.4.9
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]: EpicAnchors 1.4.9 by Songoda <3!
[10:50:35] [Server thread/INFO]: Action: Disabling...
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: [CombatLogX] Disabling CombatLogX v9.9.4.0
[10:50:35] [Server thread/INFO]: [MeteoritesPro] Disabling MeteoritesPro v1.5.1
[10:50:35] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.3;5407315
[10:50:35] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[10:50:35] [Server thread/INFO]: [InteractiveChat] Disabling InteractiveChat v2.6.2
[10:50:35] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Disabled!
[10:50:35] [Server thread/INFO]: [Harbor] Disabling Harbor v1.6.1
[10:50:35] [Server thread/INFO]: [ChatManager] Disabling ChatManager v3.6.5
[10:50:35] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion: chatmanager
[10:50:35] [Server thread/INFO]: [UltimateClaims] Disabling UltimateClaims v1.2.8
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]: UltimateClaims 1.2.8 by Songoda <3!
[10:50:35] [Server thread/INFO]: Action: Disabling...
[10:50:35] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown initiated...
[10:50:35] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown completed.
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: [Quests] Disabling Quests v2.9.5
[10:50:35] [Server thread/INFO]: [ajParkour] Disabling ajParkour v2.9.5
[10:50:35] [Server thread/INFO]: [ajParkour] Removing all active players from parkour because the plugin is disabling.
[10:50:35] [Server thread/INFO]: ajParkour v2.9.5 by ajgeiss0702 has been disabled!
[10:50:35] [Server thread/INFO]: [LeaderHeadsRevamped] Disabling LeaderHeadsRevamped v4.0.6
[10:50:35] [Server thread/INFO]: [LeaderHeadsRevamped] Shutting down database
[10:50:35] [Server thread/INFO]: [InteractionVisualizer] Disabling InteractionVisualizer v1.12.4
[10:50:35] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been disabled!
[10:50:35] [Server thread/INFO]: [HolographicExtension] Disabling HolographicExtension v1.10.9
[10:50:35] [Server thread/INFO]: [HolographicExtension] Disabling HolographicExtension v1.10.9
[10:50:35] [Server thread/INFO]: [CrazyCrates] Disabling CrazyCrates v1.10-RELEASE
[10:50:35] [Server thread/INFO]: [AdvancedClans] Disabling AdvancedClans vRevamped-1.3.2
[10:50:35] [Server thread/INFO]: [TAB] Disabling TAB v2.8.2
[10:50:35] [Server thread/INFO]: [TAB] Disabled in 1ms
[10:50:35] [Server thread/INFO]: [HolographicPlaceholders] Disabling HolographicPlaceholders v2.0.7 Beta
[10:50:35] [Server thread/INFO]: [HPE] Disabled: ProtocolLib
[10:50:35] [Server thread/INFO]: [HPE] Disabled: PlaceholderAPI
[10:50:35] [Server thread/INFO]: [HPE] Disabled: BalTop
[10:50:35] [Server thread/INFO]: [HPE] Disabled: PlayTime
[10:50:35] [Server thread/INFO]: [HPE] Disabled: MultiPlaceholders
[10:50:35] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.13.2-Release
[10:50:35] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v1.1.12
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: __________________________________________________________
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]:                        TradeSystem [1.1.12]
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: Status:
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: MC-Version: v1_15
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]:   > Cancelling all active trades
[10:50:35] [Server thread/INFO]:   > Saving layouts
[10:50:35] [Server thread/INFO]:     ...saved 0 layout(s)
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: Done (0.014s)
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: __________________________________________________________
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: [AsyncWorldEdit] Disabling AsyncWorldEdit v3.7.3
[10:50:35] [Server thread/INFO]: [AsyncWorldEdit] Unloading plugins...
[10:50:35] [Server thread/INFO]: [AsyncWorldEdit] Disable
[10:50:35] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.27-SNAPSHOT (build 2028)
[10:50:35] [Server thread/INFO]: [EpicLevels] Disabling EpicLevels vmaven-version-number
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]: EpicLevels maven-version-number by Songoda <3!
[10:50:35] [Server thread/INFO]: Action: Disabling...
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: [CommandSigns] Disabling CommandSigns v2.2.0
[10:50:35] [Server thread/INFO]: [UltimateModeration] Disabling UltimateModeration v1.2.3
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]: UltimateModeration 1.2.3 by Songoda <3!
[10:50:35] [Server thread/INFO]: Action: Disabling...
[10:50:35] [Server thread/INFO]: =============================
[10:50:35] [Server thread/INFO]:  
[10:50:35] [Server thread/INFO]: [LocketteX] Disabling LocketteX v1.5.1
[10:50:35] [Server thread/INFO]: [Essentials] Disabling Essentials v2.17.1.53
[10:50:35] [Server thread/INFO]: [Vault] [Vault][Economy] Essentials Economy unhooked.
[10:50:35] [Server thread/INFO]: [PlayerKits] Disabling PlayerKits v2.5.1
[10:50:35] [Server thread/INFO]: [PlayerKits] Has been disabled! Version: 2.5.1
[10:50:35] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.2.0-beta-01+0eb9ac7
[10:50:35] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[10:50:35] [Server thread/INFO]: [dynmap] Disabling dynmap v3.0-SNAPSHOT-338
[10:50:35] [Server thread/INFO]: [dynmap] Unloaded 11 components.
[10:50:35] [Server thread/INFO]: [dynmap] Stopping map renderer...
[10:50:36] [Server thread/INFO]: [dynmap] Disabled
[10:50:36] [Server thread/INFO]: [F3Name] Disabling F3Name v3.2.0
[10:50:36] [Server thread/INFO]: [Multiverse-NetherPortals] Disabling Multiverse-NetherPortals v4.1.0-b763
[10:50:36] [Server thread/INFO]: [Multiverse-NetherPortals] - Disabled
[10:50:36] [Server thread/INFO]: [DeathHolo] Disabling DeathHolo v1.1.2
[10:50:36] [Server thread/INFO]: [MinecordSync] Disabling MinecordSync v1.0
[10:50:36] [Server thread/INFO]: [FurnitureLib] Disabling FurnitureLib v2.1.8
[10:50:36] [Server thread/INFO]: [FurnitureLib] ==========================================
[10:50:36] [Server thread/INFO]: [FurnitureLib] Furniture shutdown started
[10:50:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[10:50:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[10:50:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[10:50:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[10:50:36] [Server thread/INFO]: [FurnitureLib] Furniture save started
[10:50:36] [Server thread/INFO]: [FurnitureLib] the objectlist is empty
[10:50:36] [Server thread/INFO]: [FurnitureLib] ==========================================
[10:50:36] [Server thread/INFO]: [DamageIndicator] Disabling DamageIndicator v1.3.7
[10:50:36] [Server thread/INFO]: [ChestCommands] Disabling ChestCommands v3.5.6
[10:50:36] [Server thread/INFO]: [ChestCommands] Disabled ChestCommands-Bungee
[10:50:36] [Server thread/INFO]: [ChestCommands] Disabled ChestCommandsLegacySupport
[10:50:36] [Server thread/INFO]: [ChestSort] Disabling ChestSort v8.12.2
[10:50:36] [Server thread/INFO]: [HolographicDisplays] Disabling HolographicDisplays v2.4.3
[10:50:36] [Server thread/INFO]: [Matrix] Disabling Matrix v5.0.1
[10:50:36] [Server thread/INFO]: [Matrix] Disabled Matrix AntiCheat.
[10:50:36] [Server thread/INFO]: [ClearChat] Disabling ClearChat v3.2.4
[10:50:36] [Server thread/INFO]: [JoinEventsPro] Disabling JoinEventsPro v4.1
[10:50:36] [Server thread/INFO]: [LastLoginAPI] Disabling LastLoginAPI v1.3.6
[10:50:36] [Server thread/INFO]: [LastLoginAPI] Disabling LastLoginAPI
[10:50:36] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI disabled
[10:50:36] [Server thread/INFO]: [MoneyNote] Disabling MoneyNote v1.2.9
[10:50:36] [Server thread/INFO]: [PublicCrafters] Disabling PublicCrafters v4.12.3
[10:50:36] [Server thread/INFO]: [Vault] Disabling Vault v1.7.2-b107
[10:50:36] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion: vault
[10:50:36] [Server thread/INFO]: [ServerRestorer] Disabling ServerRestorer v1.0.30
[10:50:36] [Server thread/INFO]: [BeehivesPro] Disabling BeehivesPro v1.1.1
[10:50:36] [Server thread/INFO]: [GeoFurnace] Disabling GeoFurnace v1.73
[10:50:36] [Server thread/INFO]: [GeoFurnace] GeoFurnace has been disabled
[10:50:36] [Server thread/INFO]: [DivineDrop] Disabling DivineDrop v2.5.9
[10:50:36] [Server thread/INFO]: [Minepacks] Disabling Minepacks v2.3.11-Release
[10:50:37] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown initiated...
[10:50:37] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown completed.
[10:50:37] [Server thread/INFO]: [Minepacks]  Minepacks has been disabled.  :( 
[10:50:37] [Server thread/INFO]: [MVdWPlaceholderAPI] Disabling MVdWPlaceholderAPI v3.0.1
[10:50:37] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v4.5.1
[10:50:37] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.1.0-b775
[10:50:37] [Server thread/INFO]: [KiteBoard] Disabling KiteBoard v3.0.8
[10:50:37] [Server thread/INFO]: [Votifier] Disabling Votifier v2.6.0-SNAPSHOT
[10:50:37] [Server thread/INFO]: [Votifier] Votifier disabled.
[10:50:37] [Server thread/INFO]: [UltimateTimber] Disabling UltimateTimber v2.0.4
[10:50:37] [Server thread/INFO]:  
[10:50:37] [Server thread/INFO]: =============================
[10:50:37] [Server thread/INFO]: UltimateTimber 2.0.4 by Songoda <3!
[10:50:37] [Server thread/INFO]: Action: Disabling...
[10:50:37] [Server thread/INFO]: =============================
[10:50:37] [Server thread/INFO]:  
[10:50:37] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.1.6
[10:50:37] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[10:50:37] [Server thread/INFO]: [CrazyAuctionsPlus] Disabling CrazyAuctionsPlus v1.1.3
[10:50:37] [Server thread/INFO]: [QuickClose] Disabling QuickClose v1.4.10
[10:50:37] [Server thread/INFO]: [Skript] Disabling Skript v2.4.1
[10:50:37] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.1.26
[10:50:37] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[10:50:37] [Server thread/INFO]: [LuckPerms] Closing storage...
[10:50:37] [Server thread/INFO]: [LuckPerms] Goodbye!
[10:50:37] [Server thread/INFO]: [LightAPI] Disabling LightAPI v3.4.4
[10:50:37] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v3.0.1
[10:50:37] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v3.0.1
[10:50:37] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[10:50:37] [Server thread/INFO]: [UnlimitedChats] Disabling UnlimitedChats v2.0
[10:50:37] [Server thread/INFO]: [RandomTeleport] Disabling RandomTeleport v2.5.1
[10:50:37] [Server thread/INFO]: [AlonsoJDA] Disabling AlonsoJDA v1.0-ALPHA
[10:50:37] [Server thread/INFO]: [AlonsoJDA] Plugin disabled.
[10:50:37] [Server thread/INFO]: [UltraRewards] Disabling UltraRewards v1.1.2
[10:50:37] [Server thread/INFO]: [EasySetSpawn] Disabling EasySetSpawn v3.3
[10:50:37] [Server thread/INFO]: [EasySetSpawn] Disabled!
[10:50:37] [Server thread/INFO]: [uShop] Disabling uShop v2.1.1-SNAPSHOT
[10:50:37] [Server thread/INFO]: [PlugMan] Disabling PlugMan v2.1.7
[10:50:37] [Server thread/INFO]: [FurnaceNotify] Disabling FurnaceNotify v17.0
[10:50:37] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.10.6
[10:50:37] [Server thread/INFO]: [BlockLocker] Disabling BlockLocker v1.8.1
[10:50:37] [Server thread/INFO]: [PluginConstructorAPI] Disabling PluginConstructorAPI v1.0.52
[10:50:37] [Server thread/INFO]: Saving players
[10:50:37] [Server thread/INFO]: Saving worlds
[10:50:37] [Server thread/INFO]: Saving chunks for level 'Merkez'/minecraft:overworld
[10:50:37] [Server thread/INFO]: ThreadedAnvilChunkStorage (Merkez): All chunks are saved
[10:50:37] [Server thread/INFO]: Saving chunks for level 'Dunya'/minecraft:dunya
[10:50:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (Dunya): All chunks are saved
[10:50:38] [Server thread/INFO]: Saving chunks for level 'Nether'/minecraft:nether
[10:50:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[10:50:38] [Server thread/INFO]: Saving chunks for level 'End'/minecraft:end
[10:50:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[10:50:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (Merkez): All chunks are saved
[10:50:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (Dunya): All chunks are saved
[10:50:39] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[10:50:40] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[10:50:40] [Server thread/INFO]: Saving usercache.json
[10:50:40] [Server thread/INFO]: Flushing Chunk IO
[10:50:40] [Server thread/INFO]: Closing Thread Pool
[10:50:40] [Server thread/INFO]: Closing Server