Paste #68575: Untitled Paste

Date: 2020/05/05 01:23:54 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




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

[09:52:18] [Server thread/INFO]: Starting minecraft server version 1.15.2
[09:52:18] [Server thread/INFO]: Loading properties
[09:52:18] [Server thread/INFO]: This server is running Paper version git-Paper-245 (MC: 1.15.2) (Implementing API version 1.15.2-R0.1-SNAPSHOT)
[09:52:18] [Server thread/INFO]: Debug logging is disabled
[09:52:18] [Server thread/INFO]: Server Ping Player Sample Count: 12
[09:52:18] [Server thread/INFO]: Using 4 threads for Netty based IO
[09:52:18] [Server thread/INFO]: Default game type: SURVIVAL
[09:52:18] [Server thread/INFO]: Generating keypair
[09:52:18] [Server thread/INFO]: Starting Minecraft server on 127.0.0.1:30006
[09:52:18] [Server thread/INFO]: Using epoll channel type
[09:52:19] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[09:52:23] [Server thread/WARN]: Legacy plugin Penalties v0.1 does not specify an api-version.
[09:52:23] [Server thread/WARN]: Legacy plugin GlobalPayment v1.0 does not specify an api-version.
[09:52:23] [Server thread/WARN]: Legacy plugin BanManager v7.0.4 does not specify an api-version.
[09:52:23] [Server thread/WARN]: Legacy plugin TridentThunderEnchantment v1.0 does not specify an api-version.
[09:52:24] [Server thread/WARN]: Legacy plugin BridgeAPI v1.0 does not specify an api-version.
[09:52:24] [Server thread/WARN]: Legacy plugin iConomy v7.1 does not specify an api-version.
[09:52:24] [Server thread/WARN]: Legacy plugin ColoredSigns v3.0 does not specify an api-version.
[09:52:24] [Server thread/WARN]: Legacy plugin SuperTrails v9.9 does not specify an api-version.
[09:52:24] [Server thread/WARN]: Legacy plugin SmartInvs v1.2.7 does not specify an api-version.
[09:52:24] [Server thread/WARN]: Legacy plugin CircuitDetector v1.4 does not specify an api-version.
[09:52:24] [Server thread/WARN]: Legacy plugin Workbench v1.0 does not specify an api-version.
[09:52:24] [Server thread/WARN]: Legacy plugin HeadDatabase v4.12.1 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin TerraHologram v1.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin Income v2.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin SimpleCommands v1.0b does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin TpsLogger v1.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin BabaPlayerList v1.2 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin Stats v2.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin BabaPlayerAPI v1.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin WarnAPI v0.1 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin MoneyOverTime v1.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin TerraconiaCommandFramework v1.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin TerraVIP v1.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin TreePlant v1.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin ConfigLib v2.2.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: Legacy plugin DatabaseLib v3.2.0 does not specify an api-version.
[09:52:25] [Server thread/WARN]: [Chairs] Loaded class de.terraconia.commands.acf.BaseCommand from TerraconiaCommandFramework v1.0 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:25] [Server thread/INFO]: [Penalties] Loading Penalties v0.1
[09:52:25] [Server thread/INFO]: [GlobalPayment] Loading GlobalPayment v1.0
[09:52:25] [Server thread/INFO]: [FarmLimiter] Loading FarmLimiter v1.3.1
[09:52:25] [Server thread/INFO]: [BanManager] Loading BanManager v7.0.4
[09:52:25] [Server thread/INFO]: [OpenShulkerBox] Loading OpenShulkerBox v1.0
[09:52:25] [Server thread/INFO]: [Tablist] Loading Tablist v1.0
[09:52:25] [Server thread/INFO]: [TridentThunderEnchantment] Loading TridentThunderEnchantment v1.0
[09:52:25] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.0.16
[09:52:25] [Server thread/INFO]: [VillagerOptimiser] Loading VillagerOptimiser v1.1.2
[09:52:25] [Server thread/INFO]: [FlyPlugin] Loading FlyPlugin v1.0
[09:52:25] [Server thread/INFO]: [ServerMetrics] Loading ServerMetrics v1.0.0
[09:52:26] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.1.0-b775
[09:52:26] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.5.0-SNAPSHOT-b438
[09:52:26] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.15.2) has not yet been tested! Proceed with caution.
[09:52:26] [Server thread/INFO]: [DeathMessagesPrime] Loading DeathMessagesPrime v1.15.1
[09:52:26] [Server thread/INFO]: [AdvancedPortals] Loading AdvancedPortals v0.3.0
[09:52:26] [Server thread/INFO]: [BridgeAPI] Loading BridgeAPI v1.0
[09:52:26] [Server thread/INFO]: [iConomy] Loading iConomy v7.1
[09:52:26] [Server thread/INFO]: [PotionCancel] Loading PotionCancel v1.0
[09:52:26] [Server thread/INFO]: [FarmControl] Loading FarmControl v1.0
[09:52:26] [Server thread/INFO]: [Colored Signs] Loading ColoredSigns v3.0
[09:52:26] [Server thread/INFO]: [BottlesOfWisdom] Loading BottlesOfWisdom v2.1
[09:52:26] [Server thread/INFO]: [SuperTrails] Loading SuperTrails v9.9
[09:52:26] [Server thread/INFO]: [SmartInvs] Loading SmartInvs v1.2.7
[09:52:26] [Server thread/INFO]: [NoteBlockAPI] Loading NoteBlockAPI v1.4.4
[09:52:26] [Server thread/INFO]: [CircuitDetector] Loading CircuitDetector v1.4
[09:52:26] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.1.0;8e55131
[09:52:27] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@37bd61af]
[09:52:27] [Server thread/INFO]: [OpenInv] Loading OpenInv v4.0.8
[09:52:27] [Server thread/INFO]: [WorldBorder] Loading WorldBorder v1.9.10 (beta)
[09:52:27] [Server thread/INFO]: [NoCheatPlus] Loading NoCheatPlus v3.16.1-SNAPSHOT-b1153-CustomFork
[09:52:27] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[09:52:27] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[09:52:27] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.15.2
[09:52:27] [Server thread/INFO]: [Vault] Loading Vault v1.7.2-b107
[09:52:27] [Server thread/INFO]: [Workbench] Loading Workbench v1.0
[09:52:27] [Server thread/INFO]: [JumpPads] Loading JumpPads v1.24.8
[09:52:27] [Server thread/INFO]: [LWC] Loading LWC v2.2.3-9cd94a3
[09:52:27] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.1-SNAPSHOT
[09:52:27] [Server thread/INFO]: [ServerSigns] Loading ServerSigns v4.6.1
[09:52:27] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.26-SNAPSHOT (build 1928)
[09:52:27] [Server thread/INFO]: [BackupPlugin] Loading BackupPlugin v1.0
[09:52:27] [Server thread/INFO]: [LogBlock] Loading LogBlock v1.15.2
[09:52:27] [Server thread/INFO]: [SpecialItems] Loading SpecialItems v1.0
[09:52:27] [Server thread/INFO]: [Denizen] Loading Denizen v1.1.2-SNAPSHOT (build 4470-DEV)
[09:52:27] [Server thread/INFO]: [JailNPC] Loading JailNPC v1.0
[09:52:27] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.12.1
[09:52:27] [Server thread/INFO]: [SafeTrade] Loading SafeTrade v1.1.0
[09:52:27] [Server thread/INFO]: [PremiumVanish] Loading PremiumVanish v2.5.11
[09:52:27] [Server thread/INFO]: [Depenizen] Loading Depenizen v2.0.0 (build 611)
[09:52:27] [Server thread/INFO]: [QuantumConnectors] Loading QuantumConnectors v3.2.1
[09:52:27] [Server thread/INFO]: [ProCosmetics] Loading ProCosmetics v10.4
[09:52:27] [Server thread/INFO]: [TeleportAPI] Loading TeleportAPI v1.0b
[09:52:27] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.3-SNAPSHOT;2020-2169aa2
[09:52:27] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.10.1 (compiled at 2020-03-17T19:44:57Z)
[09:52:27] [Server thread/INFO]: [ChestShop] LWC version 2.2.3-9cd94a3 loaded.
[09:52:27] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.3-SNAPSHOT;2020-2169aa2 loaded.
[09:52:27] [Server thread/INFO]: [RegionForSale] Loading RegionForSale v2.7.1
[09:52:27] [Server thread/INFO]: [ElytraFlag] Loading ElytraFlag v1.0
[09:52:27] [Server thread/INFO]: [Baba43Lib] Loading Baba43Lib v1.0b
[09:52:27] [Server thread/INFO]: [TerraHologram] Loading TerraHologram v1.0
[09:52:27] [Server thread/INFO]: [BabaServerAPI] Loading BabaServerAPI v1.0
[09:52:27] [Server thread/INFO]: [BabaAbilities] Loading BabaAbilities v1.0b
[09:52:27] [Server thread/INFO]: [CommandFramework] Loading CommandFramework v1.0
[09:52:27] [Server thread/INFO]: [StorageSystem] Loading StorageSystem v2.1
[09:52:27] [Server thread/INFO]: [ChatlogAPI] Loading ChatlogAPI v1.0b
[09:52:27] [Server thread/INFO]: [Income] Loading Income v2.0
[09:52:27] [Server thread/INFO]: [CommandLogger] Loading CommandLogger v1.1
[09:52:27] [Server thread/INFO]: [SimpleCommands] Loading SimpleCommands v1.0b
[09:52:27] [Server thread/INFO]: [EasterEggs] Loading EasterEggs v1.0
[09:52:27] [Server thread/INFO]: [ExlllShopExtension] Loading ExlllShopExtension v1.0
[09:52:27] [Server thread/INFO]: [JailBukkit] Loading JailBukkit v1.0
[09:52:27] [Server thread/INFO]: [TpsLogger] Loading TpsLogger v1.0
[09:52:27] [Server thread/INFO]: [ExlllJobsV2] Loading ExlllJobsV2 v2.0.0
[09:52:27] [Server thread/INFO]: [BabaPlayerList] Loading BabaPlayerList v1.2
[09:52:27] [Server thread/INFO]: [Stats] Loading Stats v2.0
[09:52:27] [Server thread/INFO]: [BabaPlayerAPI] Loading BabaPlayerAPI v1.0
[09:52:27] [Server thread/INFO]: [Awards] Loading Awards v1.0
[09:52:27] [Server thread/INFO]: [BabaRecruitments] Loading BabaRecruitments v1.0b
[09:52:27] [Server thread/INFO]: [WarnAPI] Loading WarnAPI v0.1
[09:52:27] [Server thread/INFO]: [MoneyOverTime] Loading MoneyOverTime v1.0
[09:52:27] [Server thread/INFO]: [ExlllBoards] Loading ExlllBoards v1.0
[09:52:27] [Server thread/INFO]: [TerraWarp] Loading TerraWarp v2.0
[09:52:27] [Server thread/INFO]: [TerraconiaAwards] Loading TerraconiaAwards v1.0
[09:52:27] [Server thread/INFO]: [TerraconiaCommandFramework] Loading TerraconiaCommandFramework v1.0
[09:52:27] [Server thread/INFO]: [GeckoNavigator] Loading GeckoNavigator v1.0b
[09:52:27] [Server thread/INFO]: [TerraVIP] Loading TerraVIP v1.0
[09:52:27] [Server thread/INFO]: [ExlllHomes] Loading ExlllHomes v3.0
[09:52:27] [Server thread/INFO]: [TreePlant] Loading TreePlant v1.0
[09:52:27] [Server thread/INFO]: [BlackBoard] Loading BlackBoard v1.0
[09:52:27] [Server thread/INFO]: [SignEdit] Loading SignEdit v1.3
[09:52:27] [Server thread/INFO]: [EasyTreePlant] Loading EasyTreePlant v1.0
[09:52:27] [Server thread/INFO]: [FlyFlagPlugin] Loading FlyFlagPlugin v1.0
[09:52:27] [Server thread/INFO]: [FlyFlagPlugin] Flag registriert.
[09:52:27] [Server thread/INFO]: [BookRules] Loading BookRules v3.0
[09:52:27] [Server thread/INFO]: [TerraconiaPlugin] Loading TerraconiaPlugin v1.0
[09:52:27] [Server thread/INFO]: [ShopInfo] Loading ChestShopInfo v1.0
[09:52:27] [Server thread/INFO]: [AwardShop] Loading AwardShop v1.0
[09:52:27] [Server thread/INFO]: [SurvivalPlugin] Loading SurvivalPlugin v2.1.0
[09:52:28] [Server thread/INFO]: [Chat] Loading Chat v1.0
[09:52:28] [Server thread/INFO]: [ConfigLib] Loading ConfigLib v2.2.0
[09:52:28] [Server thread/INFO]: [LWCInteractFlag] Loading LWCInteractFlag v1.0
[09:52:28] [Server thread/INFO]: [ItemManagment] Loading ItemManagment v0.2.0
[09:52:28] [Server thread/INFO]: [Tradeception] Loading Tradeception v1.0
[09:52:28] [Server thread/INFO]: [DatabaseLib] Loading DatabaseLib v3.2.0
[09:52:28] [Server thread/INFO]: [Riddler] Loading Riddler v2.0.2
[09:52:28] [Server thread/INFO]: [Chairs] Loading Chairs v4.2
[09:52:28] [Server thread/INFO]: [Tickets] Loading Tickets v1.0
[09:52:28] [Server thread/INFO]: [SignLinks] Loading SignLinks v1.0
[09:52:28] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:52:28] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.0.16
[09:52:28] [Server thread/INFO]:         __    
[09:52:28] [Server thread/INFO]:   |    |__)   LuckPerms v5.0.16
[09:52:28] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[09:52:28] [Server thread/INFO]: 
[09:52:28] [Server thread/INFO]: [LuckPerms] Loading configuration...
[09:52:28] [Server thread/INFO]: [LuckPerms] Found lang.yml - loading messages...
[09:52:28] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[09:52:28] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[09:52:28] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[09:52:28] [Server thread/INFO]: [LuckPerms] Loading messaging service... [BUNGEE]
[09:52:29] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[09:52:29] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[09:52:30] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2154ms)
[09:52:30] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.5.0-SNAPSHOT-b438
[09:52:30] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[09:52:30] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.1.0;8e55131
[09:52:30] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[09:52:30] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_15_R2 as the Bukkit adapter
[09:52:31] [Server thread/INFO]: [Vault] Enabling Vault v1.7.2-b107
[09:52:31] [Server thread/WARN]: [Vault] Loaded class com.iCo6.iConomy from iConomy v7.1 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:31] [Server thread/WARN]: [Vault] iConomy - If you are using Flatfile storage be aware that versions 6, 7 and 8 have a CRITICAL bug which can wipe ALL iconomy data.
[09:52:31] [Server thread/WARN]: [Vault] if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
[09:52:31] [Server thread/WARN]: [Vault] it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
[09:52:31] [Server thread/INFO]: [Vault] [Economy] iConomy 6 found: Waiting
[09:52:31] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[09:52:32] [Server thread/INFO]: [Vault] Enabled Version 1.7.2-b107
[09:52:32] [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.
[09:52:32] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[09:52:32] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[09:52:32] [Server thread/INFO]: [LWC] Enabling LWC v2.2.3-9cd94a3
[09:52:32] [Server thread/WARN]: [LWC] Loaded class com.sk89q.worldedit.extension.platform.Actor from WorldEdit v7.1.0;8e55131 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:32] [Server thread/INFO]: [LWC] Connecting to MySQL
[09:52:33] [Server thread/WARN]: [LWC] Loaded class com.sk89q.worldguard.bukkit.WorldGuardPlugin from WorldGuard v7.0.3-SNAPSHOT;2020-2169aa2 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:33] [Server thread/INFO]: [TerraconiaCommandFramework] Enabling TerraconiaCommandFramework v1.0*
[09:52:33] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[09:52:33] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[09:52:33] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[09:52:33] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[09:52:33] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[09:52:33] [Server thread/INFO]: Preparing level "origo"
[09:52:33] [Server thread/INFO]: Reloading ResourceManager: Default, bukkit
[09:52:34] [Server thread/INFO]: Loaded 6 recipes
[09:52:34] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[09:52:34] [Server thread/INFO]: Logging WorldEdit commands to /srv/multicraft/servers/spawn/plugins/WorldEdit/worldedit.log
[09:52:34] [Server thread/INFO]: Preparing start region for dimension 'origo'/minecraft:overworld
[09:52:34] [Paper RegionFile IO Thread/INFO]: [RegionFile] Using Java 9+ invokeCleaner DirectByteBuffer cleanup method
[09:52:34] [Server thread/INFO]: Loaded 0 spawn chunks for world origo
[09:52:34] [Server thread/INFO]: Preparing spawn area: 0%
[09:52:35] [Server thread/INFO]: Time elapsed: 452 ms
[09:52:35] [Server thread/INFO]: [Penalties] Enabling Penalties v0.1*
[09:52:35] [Server thread/INFO]: [GlobalPayment] Enabling GlobalPayment v1.0*
[09:52:35] [Server thread/WARN]: [GlobalPayment] Loaded class com.iCo6.system.events.MoneyTransactionEvent from iConomy v7.1 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:35] [Server thread/INFO]: [GlobalPayment] GlobalPayment aktiviert. Warte auf Überweisungen
[09:52:35] [Server thread/INFO]: [FarmLimiter] Enabling FarmLimiter v1.3.1
[09:52:35] [Server thread/INFO]: [BanManager] Enabling BanManager v7.0.4*
[09:52:35] [Server thread/WARN]: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[09:52:35] [Server thread/WARN]: SLF4J: Defaulting to no-operation (NOP) logger implementation
[09:52:35] [Server thread/WARN]: SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[09:52:36] [Server thread/INFO]: [BanManager] Loaded 0 bans into memory
[09:52:36] [Server thread/INFO]: [BanManager] Loaded 0 mutes into memory
[09:52:36] [Server thread/INFO]: [BanManager] Loaded 0 ip bans into memory
[09:52:36] [Server thread/INFO]: [BanManager] Loaded 0 ip mutes into memory
[09:52:36] [Server thread/INFO]: [BanManager] Loaded 0 ip range bans into memory
[09:52:36] [Server thread/INFO]: [BanManager] Loaded 0 name bans into memory
[09:52:36] [Server thread/INFO]: [OpenShulkerBox] Enabling OpenShulkerBox v1.0
[09:52:36] [Server thread/INFO]: [Tablist] Enabling Tablist v1.0
[09:52:36] [Server thread/WARN]: [Tablist] Loaded class de.exlll.configlib.configs.yaml.YamlConfiguration from ConfigLib v2.2.0 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:36] [Server thread/INFO]: [TridentThunderEnchantment] Enabling TridentThunderEnchantment v1.0*
[09:52:36] [Server thread/INFO]: [VillagerOptimiser] Enabling VillagerOptimiser v1.1.2
[09:52:36] [Server thread/INFO]: [VillagerOptimiser] Loading config.yml...
[09:52:36] [Server thread/INFO]: [VillagerOptimiser] Successfully loaded config.yml.
[09:52:36] [Server thread/INFO]: [VillagerOptimiser] Successfully enabled.
[09:52:36] [Server thread/INFO]: [FlyPlugin] Enabling FlyPlugin v1.0
[09:52:36] [Server thread/INFO]: [ServerMetrics] Enabling ServerMetrics v1.0.0
[09:52:36] [Server thread/WARN]: 2020-05-05 09:52:36.356:INFO::Server thread: Logging initialized @22356ms to org.eclipse.jetty.util.log.StdErrLog
[09:52:36] [Server thread/WARN]: 2020-05-05 09:52:36.388:INFO:oejs.Server:Server thread: jetty-9.4.z-SNAPSHOT
[09:52:36] [Server thread/WARN]: 2020-05-05 09:52:36.408:INFO:oejs.AbstractConnector:Server thread: Started ServerConnector@6097ecf6{HTTP/1.1,[http/1.1]}{0.0.0.0:9220}
[09:52:36] [Server thread/WARN]: 2020-05-05 09:52:36.408:INFO:oejs.Server:Server thread: Started @22408ms
[09:52:36] [Server thread/INFO]: [ServerMetrics] Started Prometheus metrics endpoint on port 9220
[09:52:36] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.1.0-b775
[09:52:36] [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.
[09:52:36] [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].
[09:52:36] [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.
[09:52:36] [Server thread/INFO]: Preparing start region for dimension 'jahela'/minecraft:overworld
[09:52:36] [Server thread/INFO]: Loaded 0 spawn chunks for world jahela
[09:52:36] [Server thread/INFO]: Preparing spawn area: 0%
[09:52:36] [Server thread/INFO]: Time elapsed: 318 ms
[09:52:36] [Server thread/INFO]: Preparing start region for dimension 'origo_alt'/minecraft:overworld
[09:52:36] [Server thread/INFO]: Loaded 0 spawn chunks for world origo_alt
[09:52:37] [Server thread/INFO]: Preparing spawn area: 0%
[09:52:37] [Server thread/INFO]: Time elapsed: 214 ms
[09:52:37] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[09:52:37] [Server thread/WARN]: Warning: Nashorn engine is planned to be removed from a future JDK release
[09:52:37] [Server thread/INFO]: [Multiverse-Core] Version 4.1.0-b775 (API v24) Enabled - By Rigby, fernferret, lithium3141, main-- and dumptruckman
[09:52:37] [Server thread/INFO]: [Multiverse-Core] Help dumptruckman keep this project alive. Become a patron! https://www.patreon.com/dumptruckman
[09:52:37] [Server thread/INFO]: [Multiverse-Core] One time donations are also appreciated: https://www.paypal.me/dumptruckman
[09:52:37] [Server thread/INFO]: [DeathMessagesPrime] Enabling DeathMessagesPrime v1.15.1
[09:52:37] [Server thread/WARN]: [DeathMessagesPrime] !!! WARNING !!! Your configuration is old. There may be new features or some config behavior might have changed, so it is advised to regenerate your config when possible!
[09:52:37] [Server thread/INFO]: [DeathMessagesPrime] Minecraft version is 1.15.2
[09:52:37] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.3.0
[09:52:37] [Server thread/INFO]: [AdvancedPortals] Bukkit version detected v1_15_R1
[09:52:37] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[09:52:37] [Server thread/WARN]: [AdvancedPortals] Material may be from old name format
[09:52:37] [Server thread/INFO]: Advanced portals have been successfully enabled!
[09:52:37] [Server thread/INFO]: [BridgeAPI] Enabling BridgeAPI v1.0*
[09:52:37] [Server thread/INFO]: [BridgeAPI][INFO] Erfolgreich verbunden!
[09:52:37] [Server thread/INFO]: [BridgeAPI][INFO] Erfolgreich Socketnamen gesendet!
[09:52:37] [Thread-30/INFO]: [BridgeAPI][INFO] Thread für [spawn] gestartet!
[09:52:37] [Server thread/INFO]: [iConomy] Enabling iConomy v7.1*
[09:52:37] [Server thread/INFO]: [iConomy - Celty] Enabled (38 ms)
[09:52:37] [Server thread/INFO]: [Vault] [Vault][Economy] iConomy 7 hooked.
[09:52:37] [Server thread/INFO]: [PotionCancel] Enabling PotionCancel v1.0
[09:52:37] [Server thread/INFO]: [FarmControl] Enabling FarmControl v1.0
[09:52:37] [Server thread/INFO]: [Colored Signs] Enabling ColoredSigns v3.0*
[09:52:37] [Server thread/INFO]: [BottlesOfWisdom] Enabling BottlesOfWisdom v2.1
[09:52:37] [Server thread/INFO]: [SuperTrails] Enabling SuperTrails v9.9*
[09:52:37] [Server thread/INFO]: [SmartInvs] Enabling SmartInvs v1.2.7*
[09:52:37] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.4.4
[09:52:37] [Server thread/INFO]: [CircuitDetector] Enabling CircuitDetector v1.4*
[09:52:38] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.0.8
[09:52:38] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.9.10 (beta)
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] Using elliptic/round border, knockback of 3.0 blocks, and timer delay of 5.
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Adventskalender-2016" has border radius 200 at X: 0.2 Z: 0.5
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Halloween-2017" has border radius 94x81 at X: 41.0 Z: 19.5 (shape override: rectangular/square)
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Adventskalender-2017" has border radius 740 at X: 0.0 Z: 0.0
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Osterevent-2018" has border radius 480 at X: 0.0 Z: 0.0
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Jahela" has border radius 400 at X: 918.8 Z: 1182.5
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Adventskalender-2018" has border radius 412x308 at X: 2223.0 Z: 3516.5
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Ostern-2019" has border radius 420 at X: 0.0 Z: 0.0
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "jahela" has border radius 750 at X: 918.0 Z: 1183.0
[09:52:38] [Server thread/INFO]: [WorldBorder] [CONFIG] World "origo" has border radius 513x313 at X: -1937.5 Z: 1737.5 (shape override: rectangular/square)
[09:52:38] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: -2151.0 Y: 68.0 Z: 1693.0
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.16.1-SNAPSHOT-b1153-CustomFork
[09:52:38] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.13-1.14.4|? / Bukkit-API
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.6.1 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.7.2 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.8 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.9 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.10 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.11 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.12 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.13 blocks.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.14 blocks.
[09:52:38] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): piston_moving_piece
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[09:52:38] [Server thread/WARN]: [NoCheatPlus] Packet level access via ProtocolLib not available, supported configurations:  | ProtocolLib 4.5.0 or later for Minecraft 1.14.x | ProtocolLib 4.4.0 or later for Minecraft 1.13.x | ProtocolLib 4.3.0 or later for Minecraft 1.12.x | ProtocolLib 4.2.0 or later for Minecraft 1.11.x | ProtocolLib 4.1 or later for Minecraft 1.8.x to 1.10.x | ProtocolLib 3.7.0 for Minecraft 1.7.x and earlier | ProtocolLib 3.6.6 for PaperSpigot 1.8.x
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal on Minecraft 1.9 and later.
[09:52:38] [Server thread/INFO]: [NoCheatPlus] Version 3.16.1-SNAPSHOT-b1153-CustomFork is enabled.
[09:52:38] [Server thread/INFO]: [Workbench] Enabling Workbench v1.0*
[09:52:38] [Server thread/INFO]: [JumpPads] Enabling JumpPads v1.24.8
[09:52:38] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.1-SNAPSHOT
[09:52:38] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[09:52:38] [Server thread/INFO]: [ServerSigns] Enabling ServerSigns v4.6.1
[09:52:38] [Server thread/WARN]: [ServerSigns] Loaded class me.confuser.banmanager.common.h2.Driver from BanManager v7.0.4 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:38] [Server thread/INFO]: [ServerSigns] Unable to load PlaceholderAPI dependency - placeholder features will be disabled
[09:52:38] [Server thread/INFO]: [ServerSigns] You can download PlaceholderAPI at https://www.spigotmc.org/resources/placeholderapi.6245/
[09:52:38] [Server thread/INFO]: [ServerSigns] Version 4.6.1 is now enabled.
[09:52:38] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.26-SNAPSHOT (build 1928)
[09:52:39] [Server thread/INFO]: [BackupPlugin] Enabling BackupPlugin v1.0
[09:52:39] [Server thread/INFO]: [LogBlock] Enabling LogBlock v1.15.2
[09:52:39] [Server thread/INFO]: [LogBlock] Connecting to survival_server@jdbc:mysql://db:3306/logblock2...
[09:52:39] [Server thread/INFO]: [de.diddiz.lib.com.zaxxer.hikari.HikariDataSource] LogBlock-Connection-Pool - Starting...
[09:52:39] [Server thread/INFO]: [de.diddiz.lib.com.zaxxer.hikari.HikariDataSource] LogBlock-Connection-Pool - Start completed.
[09:52:39] [Server thread/INFO]: [LogBlock] [Updater] Current Minecraft Version: '1.15.2'
[09:52:39] [Server thread/INFO]: [LogBlock] Entity logging enabled!
[09:52:39] [Server thread/INFO]: [SpecialItems] Enabling SpecialItems v1.0
[09:52:39] [Server thread/INFO]: [Denizen] Enabling Denizen v1.1.2-SNAPSHOT (build 4470-DEV)
[09:52:39] [Server thread/WARN]: [Denizen] Reflection method missing - Tried to read method 'staticFieldOffset' of class 'java.lang.reflect.Field'.
[09:52:39] [Server thread/WARN]: [Denizen] -------------------------------------
[09:52:39] [Server thread/WARN]: [Denizen] This build of Denizen was built for a different Spigot revision! This may potentially cause issues. If you are experiencing trouble, update Denizen and Spigot both to latest builds! If this message appears with both Denizen and Spigot fully up-to-date, contact the Denizen team (via GitHub, Spigot, or Discord) to request an update be built.
[09:52:39] [Server thread/WARN]: [Denizen] -------------------------------------
[09:52:39] [Server thread/WARN]: [Denizen] Debug is disabled in the Denizen config. This is almost always a mistake, and should not be done in the majority of cases.
[09:52:55] [Server thread/INFO]: [JailNPC] Enabling JailNPC v1.0
[09:52:55] [Server thread/INFO]: [JailNPC] JailNpcTrait registriert.
[09:52:55] [Server thread/WARN]: [JailNPC] Loaded class de.exlll.configlib.configs.yaml.YamlConfiguration from ConfigLib v2.2.0 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:55] [Server thread/WARN]: [JailNPC] Loaded class de.baba43.lib.config.FileConfigHolder from Baba43Lib v1.0b which is not a depend, softdepend or loadbefore of this plugin.
[09:52:55] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.12.1*
[09:52:56] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[09:52:56] [Server thread/INFO]: [HeadDatabase] Economy succesfully setup!
[09:52:56] [Server thread/INFO]: [SafeTrade] Enabling SafeTrade v1.1.0
[09:52:56] [Server thread/INFO]: [SafeTrade] Using iConomy 7
[09:52:56] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.5.11
[09:52:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] PremiumVanish - Starting...
[09:52:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] PremiumVanish - Start completed.
[09:52:56] [Server thread/INFO]: [PremiumVanish] Hooked into SuperTrails
[09:52:56] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[09:52:56] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.0.0 (build 611)
[09:52:56] [Server thread/INFO]: [QuantumConnectors] Enabling QuantumConnectors v3.2.1
[09:52:56] [Server thread/INFO]: [QuantumConnectors] Keine Schaltungen gefunden in jahela.circuits.yml
[09:52:56] [Server thread/INFO]: [QuantumConnectors] Keine Schaltungen gefunden in origo_alt.circuits.yml
[09:52:56] [Server thread/INFO]: [ProCosmetics] Enabling ProCosmetics v10.4
[09:52:56] [Server thread/INFO]: [ProCosmetics] Initializing...
[09:52:56] [Server thread/INFO]: [ProCosmetics] Initializing ConfigManager...
[09:52:56] [Server thread/INFO]: [ProCosmetics] Initializing MenuManager...
[09:52:56] [Server thread/INFO]: [ProCosmetics] Initializing TreasureChestManager...
[09:52:57] [Server thread/INFO]: [ProCosmetics] Hooking into PremiumVanish...
[09:52:57] [Server thread/INFO]: [ProCosmetics] Initializing Cosmetics...
[09:52:57] [Server thread/INFO]: [ProCosmetics] Initialized!
[09:52:57] [Server thread/INFO]: [TeleportAPI] Enabling TeleportAPI v1.0b
[09:52:57] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.3-SNAPSHOT;2020-2169aa2
[09:52:57] [Server thread/WARN]: [WorldGuard] Loaded class me.confuser.banmanager.common.h2.Driver from BanManager v7.0.4 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:57] [Server thread/INFO]: [WorldGuard] Loading region data...
[09:52:58] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.10.1 (compiled at 2020-03-17T19:44:57Z)
[09:52:58] [Server thread/WARN]: [ChestShop] Loaded class me.confuser.banmanager.common.h2.Driver from BanManager v7.0.4 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: Vault
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: true
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: Reserve
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: null
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: LWC
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: true
[09:52:58] [Server thread/INFO]: [ChestShop] LWC version 2.2.3-9cd94a3 loaded.
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: Lockette
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: null
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: Deadbolt
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: null
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: OddItem
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: null
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: Heroes
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: null
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: SimpleChestLock
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: null
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: Residence
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: null
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: ShowItem
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: null
[09:52:58] [Server thread/INFO]: [ChestShop] Loading dependency: WorldGuard
[09:52:58] [Server thread/INFO]: [ChestShop] Plugin is enabled?: true
[09:52:58] [Server thread/INFO]: WorldGuard Use Protection: true
[09:52:58] [Server thread/INFO]: WorldGuard Integration: true
[09:52:58] [Server thread/INFO]: Loading WorldGuard.
[09:52:58] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.3-SNAPSHOT;2020-2169aa2 loaded.
[09:52:58] [Server thread/INFO]: [ChestShop] Using iConomy 7 as the Economy provider now.
[09:52:58] [Server thread/INFO]: [ChestShop] Vault loaded!
[09:52:58] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[09:52:58] [Server thread/INFO]: [RegionForSale] Enabling RegionForSale v2.7.1
[09:52:58] [Server thread/INFO]: [Minecraft.RegionForSale] [RegionForSale] LWC hooked
[09:52:58] [Server thread/INFO]: [Minecraft.RegionForSale] [RegionForSale] Loading global configuration...
[09:52:58] [Server thread/INFO]: [Minecraft.RegionForSale] [RegionForSale] Loading regions for world 'origo'...
[09:52:58] [Server thread/INFO]: [Minecraft.RegionForSale] [RegionForSale] Loading regions for world 'jahela'...
[09:52:58] [Server thread/INFO]: [Minecraft.RegionForSale] [RegionForSale] Loading regions for world 'origo_alt'...
[09:52:58] [Server thread/INFO]: [Minecraft.RegionForSale] [RegionForSale] Region withdraw information is offset against plugin down-time (63 seconds) ...
[09:52:58] [Server thread/INFO]: [Minecraft.RegionForSale] [RegionForSale] Ready!
[09:52:58] [Server thread/INFO]: [ElytraFlag] Enabling ElytraFlag v1.0
[09:52:58] [Server thread/INFO]: [WorldGuard] Registering session handler de.joo.elytraflag.ElytraFlag
[09:52:58] [Server thread/INFO]: [Baba43Lib] Enabling Baba43Lib v1.0b
[09:52:58] [Server thread/INFO]: [TerraHologram] Enabling TerraHologram v1.0*
[09:52:58] [Server thread/INFO]: [WorldGuard] Registering session handler de.terraconia.hologram.HologramHandler
[09:52:58] [Server thread/INFO]: [BabaServerAPI] Enabling BabaServerAPI v1.0
[09:52:58] [Server thread/INFO]:  === Super Trails ===SuperTrails 9.9 for MC 1.8 enabledThank you for using !===================== Hikari start.
[09:52:58] [Server thread/WARN]: [Baba43Lib] Loaded class com.zaxxer.hikari.HikariConfig from PremiumVanish v2.5.11 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:58] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[09:52:58] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[09:52:58] [Server thread/INFO]: Hikari gestart.
[09:52:58] [Server thread/INFO]: HikariCP is loaded !
[09:52:58] [Server thread/INFO]: [BabaServerAPI] [InitDB] Mit MainDB verbunden.
[09:52:58] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [InitLoggers] Logging aktiviert und verfügbar.
[09:52:58] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [CommandScheduler] [Repeating] Config-Befehl geladen: logTps
[09:52:58] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [CommandScheduler] [Repeating] Config-Befehl geladen: denizenSave
[09:52:58] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [CommandScheduler] [Daily] Config-Befehl geladen: SB clear
[09:52:58] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [Economy] Payout-Task gestartet!
[09:52:58] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [Economy] Transaktions-Logging gestartet!
[09:52:58] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [CleanUp] Old log files deleted: 0
[09:52:58] [Server thread/INFO]: [BabaAbilities] Enabling BabaAbilities v1.0b
[09:52:58] [Server thread/INFO]: [CommandFramework] Enabling CommandFramework v1.0
[09:52:58] [Server thread/INFO]: [StorageSystem] Enabling StorageSystem v2.1
[09:52:58] [Server thread/INFO]: [DEBUG] [CommandFramework] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: ls
[09:52:58] [Server thread/INFO]: [DEBUG] [CommandFramework] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: storagesystem
[09:52:58] [Server thread/INFO]: [DEBUG] [CommandFramework] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: lagersystem
[09:52:58] [Server thread/INFO]: [ChatlogAPI] Enabling ChatlogAPI v1.0b
[09:52:58] [Server thread/INFO]: [Income] Enabling Income v2.0*
[09:52:58] [Server thread/INFO]: [Income] MoneyTracking ist aktiviert
[09:52:58] [Server thread/INFO]: [CommandLogger] Enabling CommandLogger v1.1
[09:52:58] [Server thread/INFO]: [SimpleCommands] Enabling SimpleCommands v1.0b*
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: example
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: karte
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: regeln
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: voten
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: bewerben
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: befehle
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: shops
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: start
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: konzept
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: mimimi
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: tci
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: Spielerprofil
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: Warpschilder
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: DoppelIP
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: Danke
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: team
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: mods
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: nevergiveup
[09:52:58] [Server thread/INFO]: [DEBUG] [SimpleCommands] Command registered: forum
[09:52:58] [Server thread/INFO]: [EasterEggs] Enabling EasterEggs v1.0
[09:52:58] [Server thread/INFO]: [ExlllShopExtension] Enabling ExlllShopExtension v1.0
[09:52:58] [Server thread/INFO]: [JailBukkit] Enabling JailBukkit v1.0
[09:52:58] [Server thread/INFO]: [TpsLogger] Enabling TpsLogger v1.0*
[09:52:58] [Server thread/INFO]: [ExlllJobsV2] Enabling ExlllJobsV2 v2.0.0
[09:52:58] [Server thread/INFO]: [BabaPlayerList] Enabling BabaPlayerList v1.2*
[09:52:58] [Server thread/INFO]: [Stats] Enabling Stats v2.0*
[09:52:58] [Server thread/INFO]: [BabaPlayerAPI] Enabling BabaPlayerAPI v1.0*
[09:52:59] [Server thread/INFO]: [Awards] Enabling Awards v1.0
[09:52:59] [Server thread/INFO]: [BabaRecruitments] Enabling BabaRecruitments v1.0b
[09:52:59] [Server thread/INFO]: [WarnAPI] Enabling WarnAPI v0.1*
[09:52:59] [Server thread/INFO]: [MoneyOverTime] Enabling MoneyOverTime v1.0*
[09:52:59] [Server thread/INFO]: [ExlllBoards] Enabling ExlllBoards v1.0
[09:52:59] [Server thread/INFO]: [TerraWarp] Enabling TerraWarp v2.0
[09:52:59] [Server thread/INFO]: [TerraconiaAwards] Enabling TerraconiaAwards v1.0
[09:52:59] [Server thread/INFO]: [GeckoNavigator] Enabling GeckoNavigator v1.0b
[09:52:59] [Server thread/INFO]: [GeckoNavigator] [ACF] Enabled Asynchronous Tab Completion Support!
[09:52:59] [Server thread/INFO]: [TerraconiaCommandFramework] [ACF] Enabled Asynchronous Tab Completion Support!
[09:52:59] [Server thread/INFO]: [TerraVIP] Enabling TerraVIP v1.0*
[09:52:59] [Server thread/WARN]: [TerraVIP] Loaded class fr.minuskube.inv.InventoryManager from SmartInvs v1.2.7 which is not a depend, softdepend or loadbefore of this plugin.
[09:52:59] [Server thread/INFO]: [TerraVIP] [ACF] Enabled Asynchronous Tab Completion Support!
[09:52:59] [Server thread/INFO]: [ExlllHomes] Enabling ExlllHomes v3.0
[09:52:59] [Server thread/INFO]: [ExlllHomes] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [TreePlant] Enabling TreePlant v1.0*
[09:53:00] [Server thread/INFO]: [TreePlant] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [BlackBoard] Enabling BlackBoard v1.0
[09:53:00] [Server thread/INFO]: [BlackBoard] Loaded 13 BlackBoards...
[09:53:00] [Server thread/INFO]: [BlackBoard] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [SignEdit] Enabling SignEdit v1.3
[09:53:00] [Server thread/INFO]: [SignEdit] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [EasyTreePlant] Enabling EasyTreePlant v1.0
[09:53:00] [Server thread/INFO]: [EasyTreePlant] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [FlyFlagPlugin] Enabling FlyFlagPlugin v1.0
[09:53:00] [Server thread/INFO]: [FlyFlagPlugin] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [WorldGuard] Registering session handler de.terraconia.fly.FlyFlagHandler
[09:53:00] [Server thread/INFO]: [BookRules] Enabling BookRules v3.0
[09:53:00] [Server thread/INFO]: [BookRules] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [TerraconiaPlugin] Enabling TerraconiaPlugin v1.0
[09:53:00] [Server thread/INFO]: [TerraconiaPlugin] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [ShopInfo] Enabling ChestShopInfo v1.0
[09:53:00] [Server thread/INFO]: [ChestShopInfo] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [AwardShop] Enabling AwardShop v1.0
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Fliegen_1_Tag] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Fliegen_7_Tage] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Fliegen_28_Tage] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopItem] [Fliegen] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Farbige_Schilder] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopItem] [Farbige_Schilder] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Zombie] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Spinne] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Höhlenspinne] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Skelett] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Lohe] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopItem] [Spawner_Einstellen] Geladen
[09:53:00] [Server thread/INFO]: [ERROR] [AwardShop] [Load ShopItem] [Kostenfreies_Shopschild] Initialization exception: displayItem Item does not exist
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Homepunkt] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopItem] [Homepunkt] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Homepunkt] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopItem] [Zusätzliches_Pferd] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Portable_Enderchest_7_Tage] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Portable_Enderchest_28_Tage] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopItem] [Portable_Enderchest] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Zurück_zum_Todesort_7_Tage] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Zurück_zum_Todesort_28_Tage] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopItem] [Zurück_zum_Todesort] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Kuh] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Schwein] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopSubItem] [Huhn] Geladen
[09:53:00] [Server thread/INFO]: [DEBUG] [AwardShop] [Load ShopItem] [Haustiere] Geladen
[09:53:00] [Server thread/INFO]: [AwardShop] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [SurvivalPlugin] Enabling SurvivalPlugin v2.1.0
[09:53:00] [Server thread/INFO]: [ERROR] [SurvivalPlugin] [Dynmap] Dynmap not found
[09:53:00] [Server thread/INFO]: [SurvivalPlugin] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/WARN]: [SurvivalPlugin] Loaded class net.koenigskind.blackboard.Sign from BlackBoard v1.0 which is not a depend, softdepend or loadbefore of this plugin.
[09:53:00] [Server thread/INFO]: [Chat] Enabling Chat v1.0
[09:53:00] [Server thread/WARN]: [Chat] Loaded class org.json.JSONException from Denizen v1.1.2-SNAPSHOT (build 4470-DEV) which is not a depend, softdepend or loadbefore of this plugin.
[09:53:00] [Server thread/INFO]: [Chat] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [ConfigLib] Enabling ConfigLib v2.2.0*
[09:53:00] [Server thread/INFO]: [LWCInteractFlag] Enabling LWCInteractFlag v1.0
[09:53:00] [Server thread/INFO]: [LWCInteractFlag] Registered Listener.
[09:53:00] [Server thread/INFO]: [ItemManagment] Enabling ItemManagment v0.2.0
[09:53:00] [Server thread/INFO]: [ItemManagment] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [Tradeception] Enabling Tradeception v1.0
[09:53:00] [Server thread/INFO]: [Tradeception] trait registriert.
[09:53:00] [Server thread/INFO]: [Tradeception] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [DatabaseLib] Enabling DatabaseLib v3.2.0*
[09:53:00] [Server thread/WARN]: [DatabaseLib] Loaded class com.zaxxer.hikari.HikariConfig from PremiumVanish v2.5.11 which is not a depend, softdepend or loadbefore of this plugin.
[09:53:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[09:53:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[09:53:00] [Server thread/INFO]: [Riddler] Enabling Riddler v2.0.2
[09:53:00] [Server thread/INFO]: [Riddler] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [Riddler] Riddlertrait registriert.
[09:53:00] [Server thread/INFO]: [WorldGuard] Registering session handler de.Exlll.riddler.worldguard.RiddlerWorldGuard
[09:53:00] [Server thread/INFO]: [Chairs] Enabling Chairs v4.2
[09:53:00] [Server thread/INFO]: [Chairs] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [Tickets] Enabling Tickets v1.0
[09:53:00] [Server thread/INFO]: [Tickets] [ACF] Enabled Asynchronous Tab Completion Support!
[09:53:00] [Server thread/INFO]: [SignLinks] Enabling SignLinks v1.0
[09:53:00] [Server thread/WARN]: Could not register alias wer because it contains commands that do not exist: babaplayerlist:wer
[09:53:00] [Server thread/WARN]: Could not register alias haustier because it contains commands that do not exist: pet
[09:53:00] [Server thread/WARN]: Could not register alias lebensanzeige because it contains commands that do not exist: actionhealth toggle
[09:53:00] [Server thread/WARN]: Could not register alias healthbar because it contains commands that do not exist: actionhealth toggle
[09:53:01] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[09:53:01] [Server thread/WARN]: Could not register alias wer because it contains commands that do not exist: babaplayerlist:wer
[09:53:01] [Server thread/WARN]: Could not register alias haustier because it contains commands that do not exist: pet
[09:53:01] [Server thread/WARN]: Could not register alias lebensanzeige because it contains commands that do not exist: actionhealth toggle
[09:53:01] [Server thread/WARN]: Could not register alias healthbar because it contains commands that do not exist: actionhealth toggle
[09:53:01] [Server thread/INFO]: Done (28.447s)! For help, type "help"
[09:53:01] [Server thread/INFO]: Timings Reset
[09:53:01] [Craft Scheduler Thread - 6/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[09:53:01] [Server thread/WARN]: [NoCheatPlus] The block data is incomplete:
--- Missing entries -------------------------------
* BLOCK BREAKING (BEEHIVE / SOLID+GROUND) 
* BLOCK BREAKING (BEE_NEST / SOLID+GROUND) 
* BLOCK BREAKING (HONEYCOMB_BLOCK / SOLID+GROUND) 
* BLOCK BREAKING (HONEY_BLOCK / SOLID+IGN_PASSABLE+GROUND) 
[09:53:01] [Server thread/INFO]: [NoCheatPlus] Post-enable running...
[09:53:01] [Server thread/INFO]: [NoCheatPlus] Post-enable finished.
[09:53:01] [Server thread/INFO]: [JumpPads] CleanUp found no JumpPads to delete!
[09:53:01] [Craft Scheduler Thread - 11/INFO]: [Vault] Checking for Updates ... 
[09:53:01] [Craft Scheduler Thread - 19/WARN]: [SignLinks] Loaded class de.baba43.serverapi.plugin.ServerAPI from BabaServerAPI v1.0 which is not a depend, softdepend or loadbefore of this plugin.
[09:53:01] [Craft Scheduler Thread - 14/INFO]: [INFO] [TerraWarp] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: spawn
[09:53:01] [Craft Scheduler Thread - 14/INFO]: [INFO] [TerraWarp] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: andora
[09:53:01] [Craft Scheduler Thread - 14/INFO]: [INFO] [TerraWarp] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: esconia
[09:53:01] [Craft Scheduler Thread - 14/INFO]: [INFO] [TerraWarp] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: mall
[09:53:01] [Craft Scheduler Thread - 14/INFO]: [INFO] [TerraWarp] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: tutorial
[09:53:01] [Craft Scheduler Thread - 14/INFO]: [INFO] [TerraWarp] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: creative
[09:53:01] [Craft Scheduler Thread - 14/INFO]: [INFO] [TerraWarp] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: fun
[09:53:01] [Craft Scheduler Thread - 14/INFO]: [INFO] [TerraWarp] [[RegisterCommand]] Folgender Befehl wurde erfolgreich hinzugefügt: origo
[09:53:01] [Craft Scheduler Thread - 15/INFO]: [ProCosmetics] There is a newer verison available for ProCosmetics! You're at 10.4 and the latest release is 10.8.
[09:53:01] [Craft Scheduler Thread - 20/INFO]: [Jump Pads] A new update is available at:
[09:53:01] [Craft Scheduler Thread - 20/INFO]: https://www.spigotmc.org/resources/44876/updates
[09:53:02] [Craft Scheduler Thread - 11/INFO]: [Vault] No new version available
[09:53:02] [Craft Scheduler Thread - 9/INFO]: [HeadDatabase] Succesfully loaded 29239 heads!
[09:53:02] [Craft Scheduler Thread - 9/INFO]: [HeadDatabase] Successfully loaded 13 featured tags!
[09:53:02] [Craft Scheduler Thread - 9/WARN]: [HeadDatabase] You are using a outdated version!
[09:53:02] [Craft Scheduler Thread - 9/WARN]: [HeadDatabase] Latest version: 4.12.2. You are on version: 4.12.1.
[09:53:02] [Craft Scheduler Thread - 9/WARN]: [HeadDatabase] Update here: https://www.spigotmc.org/resources/head-database.14280/
[09:53:03] [Server thread/INFO]: [Citizens] 277 NPCs geladen.
[09:53:03] [Server thread/INFO]: [HolographicDisplays] Found a new version available: v2.4.1
[09:53:03] [Server thread/INFO]: [HolographicDisplays] Download it on Bukkit Dev:
[09:53:03] [Server thread/INFO]: [HolographicDisplays] dev.bukkit.org/projects/holographic-displays
[09:53:04] [Server thread/WARN]: [Penalties] Loaded class de.baba43.lib.helper.ServerHelper from Baba43Lib v1.0b which is not a depend, softdepend or loadbefore of this plugin.
[09:53:04] [Server thread/INFO]: [Penalties] Registered commands: verwarnung, verwarnen, verwarnungen
[09:53:06] [Server thread/INFO]: [TerraHologram] Saving Hologram
[09:53:06] [Server thread/INFO]: [TerraHologram] Saving Hologram
[09:53:06] [Thread-30/INFO]: [BridgeAPI][INFO] GlobalCommand registriert: stadt
[09:53:06] [Thread-30/INFO]: [BridgeAPI][INFO] GlobalCommand registriert: gs
[09:53:11] [Craft Scheduler Thread - 4/INFO]: [NoteBlockAPI] New update available!
[09:53:24] [User Authenticator #1/INFO]: UUID of player Joo200 is 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc
[09:53:24] [Server thread/WARN]: [BridgeAPI] Loaded class net.luckperms.api.node.Node from LuckPerms v5.0.16 which is not a depend, softdepend or loadbefore of this plugin.
[09:53:24] [Server thread/INFO]: Joo200[/2.243.71.30:39081] logged in with entity id 2706 at ([origo]-1979.5, 87.0, 1781.5)
[09:53:24] [Server thread/INFO]: [Chairs] Set Preference for UUID 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc to SIT_ENABLE
[09:53:25] [Server thread/INFO]: Joo200 lost connection: Disconnected
[09:53:25] [Server thread/INFO]: [DEBUG] [ExlllJobsV2] [UUID-Removal] Joo200 mit UUID: 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc entfernt!
[09:53:25] [Server thread/INFO]: Stats für Joo200 gespeichert!
[09:53:28] [Server thread/INFO]: [INFO] [Baba43Lib] [SqlController] Detected long query from BabaPlayerAPI
[09:53:28] [Server thread/INFO]: Query: HikariProxyPreparedStatement@331525567 wrapping com.mysql.jdbc.JDBC42PreparedStatement@582f8340: SELECT id, starttime, endtime, idletime FROM mc_global.b_sessions WHERE user = 7235 AND endtime >= DATE_SUB(NOW(), INTERVAL 3 MINUTE) ORDER BY id DESC LIMIT 1
[09:53:28] [Server thread/INFO]: Time: 2711
[09:53:32] [Server thread/INFO]: [INFO] [Baba43Lib] [SqlController] Detected long query from BabaServerAPI
[09:53:32] [Server thread/INFO]: Query: HikariProxyPreparedStatement@1533045404 wrapping com.mysql.jdbc.JDBC42PreparedStatement@23a34b0b: SELECT SUM(money) AS sum FROM survival_global.moneylog WHERE DATE(time) = DATE(NOW()) AND sender = 'MoneyOverTime' AND receiver = 'Joo200'
[09:53:32] [Server thread/INFO]: Time: 2944
[09:53:52] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [Economy] Payout erfolgreich!
[09:54:02] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [Economy] Logging erfolgreich!
[09:54:03] [Thread-30/INFO]: [BridgeAPI][WARNING] [2] Das Socket wurde vom Server geschlossen!
[09:54:03] [Thread-30/INFO]: [BridgeAPI][INFO] Socket erfolgreich geschlossen!
[09:54:03] [Thread-30/INFO]: [BridgeAPI][INFO] Versuche erneut zu verbinden!
[09:54:03] [Thread-30/INFO]: [BridgeAPI][INFO] Thread für [spawn] beendet!
[09:54:13] [pool-41-thread-1/INFO]: [BridgeAPI][INFO] Erfolgreich verbunden!
[09:54:13] [pool-41-thread-1/INFO]: [BridgeAPI][INFO] Erfolgreich Socketnamen gesendet!
[09:54:13] [Thread-41/INFO]: [BridgeAPI][INFO] Thread für [spawn] gestartet!
[09:54:13] [Thread-41/INFO]: [BridgeAPI][INFO] GlobalCommand registriert: gs
[09:54:13] [Thread-41/INFO]: [BridgeAPI][INFO] GlobalCommand registriert: stadt
[09:54:23] [User Authenticator #1/INFO]: UUID of player Joo200 is 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc
[09:54:23] [Server thread/INFO]: Joo200[/2.243.71.30:52987] logged in with entity id 2719 at ([origo]-1979.5, 87.0, 1781.5)
[09:54:23] [Server thread/INFO]: [Chairs] Set Preference for UUID 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc to SIT_ENABLE
[09:54:23] [Server thread/INFO]: Joo200 lost connection: Disconnected
[09:54:23] [Server thread/INFO]: [DEBUG] [ExlllJobsV2] [UUID-Removal] Joo200 mit UUID: 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc entfernt!
[09:54:24] [Server thread/INFO]: Stats für Joo200 gespeichert!
[09:56:52] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [Economy] Payout erfolgreich!
[09:57:02] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [Economy] Logging erfolgreich!
[09:57:47] [Thread-41/INFO]: [BridgeAPI][WARNING] [2] Das Socket wurde vom Server geschlossen!
[09:57:47] [Thread-41/INFO]: [BridgeAPI][INFO] Socket erfolgreich geschlossen!
[09:57:47] [Thread-41/INFO]: [BridgeAPI][INFO] Versuche erneut zu verbinden!
[09:57:47] [Thread-41/INFO]: [BridgeAPI][INFO] Thread für [spawn] beendet!
[09:57:57] [pool-43-thread-1/INFO]: [BridgeAPI][INFO] Erfolgreich verbunden!
[09:57:57] [pool-43-thread-1/INFO]: [BridgeAPI][INFO] Erfolgreich Socketnamen gesendet!
[09:57:57] [Thread-47/INFO]: [BridgeAPI][INFO] Thread für [spawn] gestartet!
[09:57:57] [Thread-47/INFO]: [BridgeAPI][INFO] GlobalCommand registriert: gs
[09:57:57] [Thread-47/INFO]: [BridgeAPI][INFO] GlobalCommand registriert: stadt
[09:58:02] [Server thread/INFO]: [DEBUG] [BabaServerAPI] [CommandScheduler] Befehl ausgeführt: logtps
[09:58:04] [User Authenticator #2/INFO]: UUID of player Joo200 is 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc
[09:58:04] [Server thread/INFO]: Joo200[/2.243.71.30:49121] logged in with entity id 2815 at ([origo]-1979.5, 87.0, 1781.5)
[09:58:04] [Server thread/INFO]: [Chairs] Set Preference for UUID 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc to SIT_ENABLE
[09:58:04] [Server thread/INFO]: Joo200 lost connection: Disconnected
[09:58:04] [Server thread/INFO]: [DEBUG] [ExlllJobsV2] [UUID-Removal] Joo200 mit UUID: 254c41f4-f1b4-4ae8-ae76-ba92a4983fbc entfernt!
[09:58:04] [Server thread/INFO]: Stats für Joo200 gespeichert!