Paste #132978: DenizenMetaBot Auto-Repaste Of log From v1t1n_.

Date: 2025/04/25 09:08:32 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
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797


[12:59:01] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-LTS; Eclipse Adoptium Temurin-21.0.6+7) on Linux 6.8.0-1021-aws (amd64)
[12:59:01] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-226-ver/1.21.4@a838a88 (2025-04-17T19:20:57Z) for Minecraft 1.21.4
[12:59:02] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[12:59:05] [ServerMain/INFO]: [PluginInitializerManager] Initialized 90 plugins
[12:59:05] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (4):
 - EconomyShopGUI (6.12.1), FancyHolograms (2.4.2), MarriageMaster (2.7.9), yPlugins (3.4.1)
[12:59:05] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (86):
 - ARedstoneDisable (1.1), AlonsoJoin (0.2-BETA), AlonsoLib (0.4-BETA), AnimatedScoreboard (0.3.7), AntiWorldFly (2.5.4), AutoPickup (1.4.6-SNAPSHOT), AutomaticBroadcast (1.9.0), AxAFKZone (1.6.2), AxTrade (1.16.2), BattlePass (4.9.15), BedrockOffhand (2.0.2), CentralCart (1.0.0-96e09d), ChestCommands (3.1.4), ChunkSpawnerLimiter (4.3.12), Citizens (2.0.37-SNAPSHOT (build 3727)), ClearLag (3.2.2), ColoredSigns (6.3.1.215), DayNightPvP (1.2.9.0), DecentHolograms (2.8.16), DivineClaims (1.0-SNAPSHOT), EZColors (2.2.6), Elevator (3.0.8), EpicHomes (1.1.2), Essentials (2.21.1-dev+12-8455212), EssentialsWarpGUI (3.1), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1086;aee75c1), GSit (2.2.1), Geyser-Spigot (2.6.2-SNAPSHOT), GriefPrevention (16.18.4), ImageFrame (1.8.0.0), InteractiveChat (4.2.16.0), ItemEdit (3.7.0), ItemsAdder (4.0.9), JoinEventsPlus (3.2.0), LeafHideLog (beta-1.0.0), LeafPlugins (1.8.1), LoneLibs (1.0.65), LuckPerms (5.4.154), LuzN (1.1), Multiverse-Core (4.3.14), Multiverse-NetherPortals (4.2.3), MyCommand (5.7.4), NBTAPI (2.14.1), OldCombatMechanics (2.0.4), PersonalPhantoms (2.1.2), PixelVip (3.0.5), PlaceholderAPI (2.11.6), PlayerKits2 (1.17.2), PlayerWarps (3.3.2), ProtocolLib (5.4.0-SNAPSHOT-742), QuickShop-Hikari (6.2.0.9-RELEASE-1), RecyclerPlus (1.4.0), ServerIcon (1.0.1), ServersNPC (5.0), SetSpawn (5.4), SimpleClans (2.19.2-05e7abc), SkinsRestorer (15.6.2), SkullFixer (1.0.0), SpawnerLegacy (1.3.5), StormPlugins (2.5.3), SynkLibs (1.7.2), TAB (5.0.7), Ultimate_BlockRegeneration (2.0.28), UltraRepair (4.2.4), Vault (1.7.3-b131), ViaBackwards (5.3.1), ViaVersion (5.3.2), Votifier (2.7.3), VotingPlugin (6.18.4), WMcmmoAddon (1.0), WildChests (2025.1), WildLoaders (2025.1), WorldBorderHQ (2.1.5), WorldGuard (7.0.12+829a4a4), XLTournaments (3.17.12), eGlow (3.3.9), floodgate (2.2.4-SNAPSHOT (b116-0e3163c)), mcMMO (2.2.034), nAntiBot (6.1.29), nChat (5.6.55), nLogin (10.4.22), sRandomRTP (2.9), yEconomy (1.4.8), yPoints (2.4.0), zAuctionHouseV3 (3.2.3.1), zMenu (1.0.3.8)
[12:59:11] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[12:59:14] [ServerMain/INFO]: Loaded 1370 recipes
[12:59:14] [ServerMain/INFO]: Loaded 1481 advancements
[12:59:14] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[12:59:14] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 263.4ms
[12:59:14] [Server thread/INFO]: Starting minecraft server version 1.21.4
[12:59:14] [Server thread/INFO]: Loading properties
[12:59:14] [Server thread/INFO]: This server is running Paper version 1.21.4-226-ver/1.21.4@a838a88 (2025-04-17T19:20:57Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[12:59:14] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[12:59:14] [Server thread/INFO]: Server Ping Player Sample Count: 12
[12:59:14] [Server thread/INFO]: Using 4 threads for Netty based IO
[12:59:14] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[12:59:14] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[12:59:15] [Server thread/INFO]: Default game type: SURVIVAL
[12:59:15] [Server thread/INFO]: Generating keypair
[12:59:15] [Server thread/INFO]: Starting Minecraft server on 177.54.146.20:25525
[12:59:15] [Server thread/INFO]: Using epoll channel type
[12:59:15] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[12:59:15] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[12:59:15] [Server thread/ERROR]: [LoadOrderTree] =================================
[12:59:15] [Server thread/ERROR]: [LoadOrderTree] Circular plugin loading detected:
[12:59:15] [Server thread/ERROR]: [LoadOrderTree] 1) yPoints -> yPlugins -> StormPlugins -> yPoints
[12:59:15] [Server thread/ERROR]: [LoadOrderTree]    yPoints depend/softdepend: [Legendchat, NoxusChat, UltimateChat, nChat, OpeNChat, PlaceholderAPI, Citizens, HolographicDisplays, DecentHolograms, yPlugins]
[12:59:15] [Server thread/ERROR]: [LoadOrderTree]    StormPlugins loadbefore: [yPlugins]
[12:59:15] [Server thread/ERROR]: [LoadOrderTree]    StormPlugins depend/softdepend: [JH_Shop, Quests, HolographicDisplays, DecentHolograms, AtlasLicense, AtlasEconomiaSecundaria, StormEconomiaSecundaria, ForceCash, BackCash, SpaceShop, eRankUP, NextCash, PlayerPoints, yPoints, yPlugins, yEconomias, yPlantacoes, ExorathCash]
[12:59:15] [Server thread/ERROR]: [LoadOrderTree] Please report this to the plugin authors of the first plugin of each loop or join the PaperMC Discord server for further help.
[12:59:15] [Server thread/ERROR]: [LoadOrderTree] =================================
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '735'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '736'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '751'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '753'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '754'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '755'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '756'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '757'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '758'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '759'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '760'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '761'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '762'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '763'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '764'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '765'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '766'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '767'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '768'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '769'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '770'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '771'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '772'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '773'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '774'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '775'
[12:59:16] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '776'
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[12:59:16] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/beer/devs/FastNbt-jar/1.4.2/FastNbt-jar-1.4.2.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-api/4.18.0/adventure-api-4.18.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-key/4.18.0/adventure-key-4.18.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/jetbrains/annotations/26.0.1/annotations-26.0.1.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-gson/4.18.0/adventure-text-serializer-gson-4.18.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-json/4.18.0/adventure-text-serializer-json-4.18.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.18.0/adventure-text-serializer-gson-legacy-impl-4.18.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.18.0/adventure-text-serializer-json-legacy-impl-4.18.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-minimessage/4.18.0/adventure-text-minimessage-4.18.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/ow2/asm/asm/9.3/asm-9.3.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[12:59:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[12:59:19] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[12:59:19] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[12:59:19] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[12:59:19] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[12:59:19] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[12:59:19] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[12:59:19] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[12:59:19] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[12:59:19] [Server thread/WARN]: java.lang.Exception
[12:59:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.legacy.CraftLegacy.<clinit>(CraftLegacy.java:270)
[12:59:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.util.CraftMagicNumbers.checkSupported(CraftMagicNumbers.java:388)
[12:59:19] [Server thread/WARN]:     at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:121)
[12:59:19] [Server thread/WARN]:     at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35)
[12:59:19] [Server thread/WARN]:     at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116)
[12:59:19] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38)
[12:59:19] [Server thread/WARN]:     at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39)
[12:59:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:563)
[12:59:19] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:277)
[12:59:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[12:59:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[12:59:19] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[12:59:30] [Server thread/WARN]: Legacy plugin yEconomy v1.4.8 does not specify an api-version.
[12:59:31] [Server thread/WARN]: Legacy plugin ServerIcon v1.0.1 does not specify an api-version.
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loading 3 libraries... please wait
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[12:59:31] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/net/kyori/adventure-text-serializer-legacy/4.16.0/adventure-text-serializer-legacy-4.16.0.jar
[12:59:31] [Server thread/WARN]: Legacy plugin ChestCommands v3.1.4 does not specify an api-version.
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /home/tcagame_svc3912/simoneg/3912/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[12:59:33] [Server thread/WARN]: Legacy plugin JoinEventsPlus v3.2.0 does not specify an api-version.
[12:59:33] [Server thread/WARN]: Legacy plugin LuzN v1.1 does not specify an api-version.
[12:59:34] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.2
[12:59:34] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.2 is now loaded. Registering protocol transformers and injecting...
[12:59:34] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[12:59:34] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[12:59:35] [Server thread/INFO]: [ViaBackwards] Loading translations...
[12:59:35] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[12:59:35] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.154
[12:59:36] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[12:59:36] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1086;aee75c1
[12:59:41] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1127cf80]
[12:59:41] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[12:59:41] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[12:59:41] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.16
[12:59:41] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[12:59:41] [Server thread/INFO]: [SimpleClans] Loading server plugin SimpleClans v2.19.2-05e7abc
[12:59:41] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-742
[12:59:41] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[12:59:41] [Server thread/INFO]: [StormPlugins] Loading server plugin StormPlugins v2.5.3
[12:59:41] [Server thread/INFO]: [StormPlugins] Carregando seus plugins... (177.54.146.12:25525)
[12:59:41] [Server thread/INFO]: [StormPlugins] Esse processo pode demorar alguns minutos, aguarde...
[12:59:43] [Server thread/INFO]: [StormPlugins] Informações carregadas.
[12:59:43] [Server thread/INFO]: [com.fabricioaquiles.stormtutorai.StormTutorAI] [StormTutorAI] Loading StormTutorAI v1.0
[12:59:43] [Server thread/INFO]: [com.storm.cargodiscord.Main] [StormCargoDiscord] Loading StormCargoDiscord v1.1.0
[12:59:43] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[12:59:44] [Server thread/INFO]: [floodgate] Took 684ms to boot Floodgate
[12:59:44] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.4
[12:59:44] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+12-8455212
[12:59:44] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3727)
[12:59:44] [Server thread/INFO]: [yPlugins] Loading server plugin yPlugins v3.4.1
[12:59:45] [Server thread/INFO]: [yPlugins] IP da máquina: 177.54.146.12:25525
[12:59:45] [Server thread/INFO]: [yPlugins] Plugins localizados: ["yTags","yCrates","yShop","yEventos","yTickets","ySorteio","yRecompensasDiarias","yGuerra","yArenas","yReinicio","yEventosDeluxeAddon","yLeagues","yStaffLogin","yFragmentos","yReports","yCorreio","yLogger"]
[12:59:46] [Server thread/INFO]: [yPlugins] [LoaderV1] - Plugins encontrados para o IP: [yEconomy]
[12:59:49] [Server thread/INFO]: [yPlugins] Carregando 19 plugins, por favor aguarde...
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] Loading yTags v2.2.5
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] Loading yLeagues v1.0.3
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReports] Loading yReports v1.1.6
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventosDeluxeAddon] Loading yEventosDeluxeAddon v1.0.0
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTickets] Loading yTickets v1.2.1
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yRecompensasDiarias] Loading yRecompensasDiarias v2.0.7
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLogger] Loading yLogger v2.0.3
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReinicio] Loading yReinicio v1.1.4
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yStaffLogin] Loading yStaffLogin v2.4.1
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yStaffLogin] API registrada com sucesso.
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [ySorteio] Loading ySorteio v2.0.2
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Loading yFragmentos v1.5.5
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCore] Loading yCore v1.0.0
[12:59:53] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCore] API registrada com sucesso.
[12:59:58] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCrates] Loading yCrates v1.5.4
[12:59:58] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCorreio] Loading yCorreio v1.3.1
[12:59:58] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] Loading yArenas v1.0.0
[12:59:58] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] Loading yGuerra v2.8.2
[12:59:58] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] API registrada com sucesso.
[12:59:58] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yPlotCore] Loading yPlotCore v1.0.0
[12:59:59] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] Loading yEventos v2.3.1
[12:59:59] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] API registrada com sucesso.
[12:59:59] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] Loading yShop v1.7.3
[12:59:59] [Server thread/INFO]: [nChat] Loading server plugin nChat v5.6.55
[13:00:01] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.6.2-SNAPSHOT
[13:00:01] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[13:00:01] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[13:00:01] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.9
[13:00:02] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.3.1
[13:00:02] [Server thread/INFO]: [yPoints] Loading server plugin yPoints v2.4.0
[13:00:02] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[13:00:02] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.2.034
[13:00:02] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[13:00:02] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.12.1
[13:00:02] [Server thread/INFO]: [zMenu] Loading server plugin zMenu v1.0.3.8
[13:00:02] [Server thread/INFO]: [AlonsoLib] Loading server plugin AlonsoLib v0.4-BETA
[13:00:02] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[13:00:02] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[13:00:02] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[13:00:02] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[13:00:02] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.6.2
[13:00:02] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.2.1
[13:00:02] [Thread-7/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[13:00:02] [Thread-7/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.14.1' Newest Version: 2.15.0'
[13:00:02] [Thread-7/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:00:02] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.7
[13:00:02] [Server thread/INFO]: [LeafPlugins] Loading server plugin LeafPlugins v1.8.1
[13:00:02] [Server thread/INFO]: [LeafPlugins] Verificando conexao com a API...
[13:00:02] [Server thread/INFO]: [PixelVip] Loading server plugin PixelVip v3.0.5
[13:00:02] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.3.7
[13:00:02] [Server thread/INFO]: [EpicHomes] Loading server plugin EpicHomes v1.1.2
[13:00:03] [Server thread/INFO]: [DivineHomes] -------------------------------------------
[13:00:03] [Server thread/INFO]: [DivineHomes] A supported Minecraft version has been detected
[13:00:03] [Server thread/INFO]: [DivineHomes] Your server version is: 1.21.4-226-a838a88 (MC: 1.21.4)
[13:00:03] [Server thread/INFO]: [DivineHomes] Continuing plugin startup
[13:00:03] [Server thread/INFO]: [DivineHomes] -------------------------------------------
[13:00:03] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.4.2
[13:00:03] [Server thread/INFO]: [BedrockOffhand] Loading server plugin BedrockOffhand v2.0.2
[13:00:03] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.17.2
[13:00:03] [Server thread/INFO]: [ARedstoneDisable] Loading server plugin ARedstoneDisable v1.1
[13:00:03] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v3.3.2
[13:00:03] [Server thread/INFO]: [WildChests] Loading server plugin WildChests v2025.1
[13:00:03] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully loaded FancyHolograms version 2.4.2
[13:00:03] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18.4
[13:00:03] [Server thread/INFO]: [CentralCart] Loading server plugin CentralCart v1.0.0-96e09d
[13:00:03] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[13:00:03] [Server thread/INFO]: [yEconomy] Loading server plugin yEconomy v1.4.8
[13:00:03] [Server thread/INFO]: [yEconomy] Plugin registrado ao Vault com sucesso.
[13:00:03] [Server thread/INFO]: [SkullFixer] Loading server plugin SkullFixer v1.0.0
[13:00:03] [Server thread/INFO]: [WildLoaders] Loading server plugin WildLoaders v2025.1
[13:00:03] [Server thread/INFO]: [ServerIcon] Loading server plugin ServerIcon v1.0.1
[13:00:03] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v4.9.15
[13:00:03] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.9
[13:00:03] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.7.0
[13:00:03] [Server thread/INFO]: [EssentialsWarpGUI] Loading server plugin EssentialsWarpGUI v3.1
[13:00:03] [Server thread/INFO]: [XLTournaments] Loading server plugin XLTournaments v3.17.12
[13:00:03] [Server thread/INFO]: [Colored Signs] Loading server plugin ColoredSigns v6.3.1.215
[13:00:03] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[13:00:03] [Server thread/INFO]: [AxAFKZone] Loading server plugin AxAFKZone v1.6.2
[13:00:03] [Server thread/INFO]: [SynkLibs] Loading server plugin SynkLibs v1.7.2
[13:00:03] [Server thread/INFO]: [ChestCommands] Loading server plugin ChestCommands v3.1.4
[13:00:03] [Server thread/INFO]: [OldCombatMechanics] Loading server plugin OldCombatMechanics v2.0.4
[13:00:03] [Server thread/INFO]: [AxTrade] Loading server plugin AxTrade v1.16.2
[13:00:03] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[13:00:03] [Server thread/INFO]: [DivineClaims] Loading server plugin DivineClaims v1.0-SNAPSHOT
[13:00:03] [Server thread/INFO]: [Elevator] Loading server plugin Elevator v3.0.8
[13:00:03] [Server thread/INFO]: [WMcmmoAddon] Loading server plugin WMcmmoAddon v1.0
[13:00:03] [Server thread/INFO]: [SpawnerLegacy] Loading server plugin SpawnerLegacy v1.3.5
[13:00:03] [Server thread/INFO]: [PersonalPhantoms] Loading server plugin PersonalPhantoms v2.1.2
[13:00:03] [Server thread/INFO]: [AntiWorldFly] Loading server plugin AntiWorldFly v2.5.4
[13:00:03] [Server thread/INFO]: [AntiWorldFly] Backing up and loading configuration files...
[13:00:03] [Server thread/INFO]: [AntiWorldFly] WorldGuard detected! Attempting to register region flags.
[13:00:03] [Server thread/INFO]: [AntiWorldFly] Flag "flight-enabled" successfully registered!
[13:00:03] [Server thread/INFO]: [AntiWorldFly] Flag "elytra-enabled" successfully registered!
[13:00:03] [Server thread/INFO]: [Ultimate_BlockRegeneration] Loading server plugin Ultimate_BlockRegeneration v2.0.28
[13:00:03] [Server thread/INFO]: [SetSpawn] Loading server plugin SetSpawn v5.4
[13:00:03] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.3.1
[13:00:03] [Server thread/INFO]: [WorldBorderHQ] Loading server plugin WorldBorderHQ v2.1.5
[13:00:03] [Server thread/INFO]: [AlonsoJoin] Loading server plugin AlonsoJoin v0.2-BETA
[13:00:03] [Server thread/INFO]: [nLogin] Loading server plugin nLogin v10.4.22
[13:00:04] [Server thread/INFO]: [ServersNPC] Loading server plugin ServersNPC v5.0
[13:00:04] [Server thread/INFO]: [AutomaticBroadcast] Loading server plugin AutomaticBroadcast v1.9.0
[13:00:04] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.3
[13:00:04] [Server thread/INFO]: [DayNightPvP] Loading server plugin DayNightPvP v1.2.9.0
[13:00:04] [Server thread/INFO]: [EZColors] Loading server plugin EZColors v2.2.6
[13:00:04] [Server thread/INFO]: [RecyclerPlus] Loading server plugin RecyclerPlus v1.4.0
[13:00:04] [Server thread/INFO]: [UltraRepair] Loading server plugin UltraRepair v4.2.4
[13:00:04] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v3.3.9
[13:00:04] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.65
[13:00:04] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.8.0.0
[13:00:04] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.9-RELEASE-1
[13:00:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[13:00:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[13:00:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 29ms
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 467ms
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 998ms
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 1184ms
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 4091ms
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 12 libraries (0 skipped libraries)...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[13:00:09] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[13:00:09] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[13:00:09] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[13:00:09] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[13:00:09] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[13:00:10] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[13:00:10] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[13:00:10] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[13:00:10] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[13:00:11] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[13:00:11] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[13:00:11] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[13:00:11] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (6878ms). Waiting for enable...
[13:00:11] [Server thread/INFO]: [sRandomRTP] Loading server plugin sRandomRTP v2.9
[13:00:11] [Server thread/INFO]: [JoinEventsPlus] Loading server plugin JoinEventsPlus v3.2.0
[13:00:11] [Server thread/INFO]: [AutoPickup] Loading server plugin AutoPickup v1.4.6-SNAPSHOT
[13:00:11] [Server thread/INFO]: [LuzN] Loading server plugin LuzN v1.1
[13:00:11] [Server thread/INFO]: [nAntiBot] Loading server plugin nAntiBot v6.1.29
[13:00:13] [Server thread/INFO]: [LeafHideLog] Loading server plugin LeafHideLog vbeta-1.0.0
[13:00:13] [Server thread/INFO]: [CSL] Loading server plugin ChunkSpawnerLimiter v4.3.12
[13:00:13] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:00:13] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.154
[13:00:17] [Server thread/INFO]:         __    
[13:00:17] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.154
[13:00:17] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[13:00:17] [Server thread/INFO]: 
[13:00:17] [Server thread/INFO]: [LuckPerms] Loading configuration...
[13:00:19] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[13:00:21] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[13:00:22] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[13:00:23] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 10127ms)
[13:00:23] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[13:00:23] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[13:00:24] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:00:24] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[13:00:24] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[13:00:24] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1086;aee75c1
[13:00:24] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[13:00:24] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[13:00:24] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:00:25] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:00:25] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
[13:00:26] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-742
[13:00:26] [Server thread/INFO]: [StormPlugins] Enabling StormPlugins v2.5.3
[13:00:26] [Server thread/INFO]: [StormPlugins] Sincronizado com DecentHolograms.
[13:00:26] [Server thread/INFO]: [StormPlugins] Carregando plugins... (177.54.146.12:25525)
[13:00:26] [Server thread/INFO]: [StormPlugins] Plugins encontrados: StormTutorAI, StormCargoDiscord.
[13:00:26] [Server thread/INFO]: [StormPlugins] Agradecemos a compra Emanu.
[13:00:26] [Server thread/INFO]: [com.fabricioaquiles.stormtutorai.StormTutorAI] [StormTutorAI] Enabling StormTutorAI v1.0
[13:00:26] [Server thread/INFO]: [StormTutorAI] Sua licença está sendo validada.
[13:00:26] [Server thread/INFO]: [com.storm.cargodiscord.Main] [StormCargoDiscord] Enabling StormCargoDiscord v1.1.0
[13:00:26] [Server thread/INFO]: [StormCargoDiscord] Sua licença está sendo validada.
[13:00:26] [Server thread/INFO]: [yPlugins] Enabling yPlugins v3.4.1
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] Enabling yTags v2.2.5
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] Plugin carregado.
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] Carregando sistemas.
[13:00:26] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] Enabling yLeagues v1.0.3
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] Plugin carregado.
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] Carregando sistemas.
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReports] Enabling yReports v1.1.6
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReports] Plugin carregado.
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReports] Carregando sistemas.
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventosDeluxeAddon] Enabling yEventosDeluxeAddon v1.0.0
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventosDeluxeAddon] Plugin carregado.
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventosDeluxeAddon] Carregando sistemas.
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTickets] Enabling yTickets v1.2.1
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTickets] Plugin carregado.
[13:00:26] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTickets] Carregando sistemas.
[13:00:26] [ForkJoinPool.commonPool-worker-2/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 8 build(s) out of date.
You are running build 1086, the latest version is build 1094.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yRecompensasDiarias] Enabling yRecompensasDiarias v2.0.7
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yRecompensasDiarias] Plugin carregado.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yRecompensasDiarias] Carregando sistemas.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLogger] Enabling yLogger v2.0.3
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLogger] Plugin carregado.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLogger] Carregando sistemas.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReinicio] Enabling yReinicio v1.1.4
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReinicio] Plugin carregado.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReinicio] Carregando sistemas.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReinicio] (1) Reinicios carregados.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReinicio] 2 embed carregado(s): [aviso1, online]
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReinicio] Hookado com o chat vanilla.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReinicio] Hookado com o chat vanilla.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yStaffLogin] Enabling yStaffLogin v2.4.1
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yStaffLogin] Plugin carregado.
[13:00:27] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yStaffLogin] Carregando sistemas.
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [ySorteio] Enabling ySorteio v2.0.2
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [ySorteio] Plugin carregado.
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [ySorteio] Carregando sistemas.
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [ySorteio] 1 recompensas carregada(s): [Reco1]
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [ySorteio] 1 sorteios carregado(s): [VIP]
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Enabling yFragmentos v1.5.5
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Plugin carregado.
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Carregando sistemas.
[13:00:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[13:00:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[13:00:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'yPlugins' to create a bStats instance!
[13:00:28] [Server thread/ERROR]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Há um erro na tua categorias/padrao.yml
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] 1 categoria(s) carregada(s): [Pascoa.yml]
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCore] Enabling yCore v1.0.0
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCore] Plugin carregado.
[13:00:28] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCore] Carregando sistemas.
[13:00:29] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[13:00:29] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCrates] Enabling yCrates v1.5.4
[13:00:29] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCrates] Plugin carregado.
[13:00:29] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCrates] Carregando sistemas.
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCrates] 5 crate(s) carregada(s): [avancada.yml, basica.yml, celestial.yml, mitica.yml, vote.yml]
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCrates] 91 recompensa(s) carregada(s)
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCorreio] Enabling yCorreio v1.3.1
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCorreio] Plugin carregado.
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCorreio] Carregando sistemas.
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] Enabling yArenas v1.0.0
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] Plugin carregado.
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] Carregando sistemas.
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] Enabling yGuerra v2.8.2
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] Plugin carregado.
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] Carregando sistemas.
[13:00:30] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] 3 tipo(s) carregado(s): [guerra.yml, mineguerra.yml, triobatle.yml]
[13:00:31] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] 1 embed carregado(s): [evento_glad]
[13:00:31] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yPlotCore] Enabling yPlotCore v1.0.0
[13:00:31] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yPlotCore] Plugin carregado.
[13:00:31] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yPlotCore] Carregando sistemas.
[13:00:31] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] Enabling yEventos v2.3.1
[13:00:31] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] Plugin carregado.
[13:00:31] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] Carregando sistemas.
[13:00:31] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 8 eventos-chat(s) carregado(s): [fastclick, first, jackpot, lottery, math, phrase, quiz, unscramble]
[13:00:32] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 2 eventos-other(s) carregado(s): [fastcraft, voting]
[13:00:32] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[13:00:32] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 16 eventos-in-person(s) carregado(s): [dropper, dwarfandgiant, fight, frog, hotpotato, maze, minefield, onechamber, paintball, parkour, race, restone, spleef, splegg, sumo, trafficlights]
[13:00:33] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] Enabling yShop v1.7.3
[13:00:33] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] Plugin carregado.
[13:00:33] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] Carregando sistemas.
[13:00:33] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] 6 categoria(s) carregada(s): [minions.yml, padrao.yml, money.yml, brilho.yml, chaves.yml, passe.yml]
[13:00:33] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] 66 iten(s) carregado(s)
[13:00:33] [Server thread/INFO]: [nChat] Enabling nChat v5.6.55
[13:00:38] [Server thread/INFO]: [nChat] Successful plugin core start (took 4.68s)
[13:00:38] [Server thread/INFO]:           ___ _           _   
[13:00:38] [Server thread/INFO]:   _ __   / __\ |__   __ _| |_ 
[13:00:38] [Server thread/INFO]:  | '_ \ / /  | '_ \ / _` | __|
[13:00:38] [Server thread/INFO]:  | | | / /___| | | | (_| | |_ 
[13:00:38] [Server thread/INFO]:  |_| |_\____/|_| |_|\__,_|\__|
[13:00:38] [Server thread/INFO]:                              
[13:00:38] [Server thread/INFO]:  By: www.nickuc.com - V 5.6.55 DEVELOPMENT
[13:00:38] [Server thread/INFO]: 
[13:00:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nchat [5.6.55]
[13:00:39] [Server thread/INFO]: [nChat] Chat will be encoded with "adventure" component library
[13:00:39] [Server thread/INFO]: [AlonsoLib] Enabling AlonsoLib v0.4-BETA
[13:00:39] [Server thread/INFO]: [AlonsoLib] Hex colors are available! Ready for RGB..
[13:00:39] [Server thread/INFO]:      _   _                  _    _ _       Running v0.4-BETA
[13:00:39] [Server thread/INFO]:     /_\ | |___ _ _  ___ ___| |  (_) |__    Server Paper v1.21.4-226-a838a88 (MC: 1.21.4)
[13:00:39] [Server thread/INFO]:    / _ \| / _ \ ' \(_-</ _ \ |__| | '_ \   Using Adventure-bukkit v4.3.4 & Adventure-minimessagev4.17.0
[13:00:39] [Server thread/INFO]:   /_/ \_\_\___/_||_/__/\___/____|_|_.__/   Thanks for using my plugin ❤!
[13:00:39] [Server thread/INFO]:         Developed by AlonsoAliaga
[13:00:39] [Server thread/INFO]: 
[13:00:39] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.6.2
[13:00:40] [Server thread/WARN]: [SkinsRestorer] You must agree to the rules at 'commands.perSkinPermissionsConsent' in the config to use per skin permissions.
[13:00:40] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.4.
[13:00:41] [Server thread/INFO]: [SkinsRestorer] Floodgate skin listener registered
[13:00:41] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[13:00:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.6.2]
[13:00:41] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[13:00:42] [Server thread/INFO]: [yEconomy] Enabling yEconomy v1.4.8*
[13:00:42] [Server thread/INFO]: [yEconomy] Plugin carregado.
[13:00:42] [Server thread/INFO]: [yEconomy] Carregando sistemas.
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer] ----------------------------------------------
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer]     +==================+
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer]     |------------------|
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer]     |  Standalone Mode |
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer]     +==================+
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer] ----------------------------------------------
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer]     Version: 15.6.2
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer]     Commit: 7bda5de
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer]     This is the latest version!
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer] ----------------------------------------------
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[13:00:42] [Folia Async Scheduler Thread #3/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[13:00:42] [Server thread/INFO]: [nLogin] Enabling nLogin v10.4.22
[13:00:45] [Server thread/INFO]: [nLogin] Successful plugin core start (took 2.97s)
[13:00:45] [Server thread/INFO]:           __             _       
[13:00:45] [Server thread/INFO]:   _ __   / /  ___   __ _(_)_ __  
[13:00:45] [Server thread/INFO]:  | '_ \ / /  / _ \ / _` | | '_ \ 
[13:00:45] [Server thread/INFO]:  | | | / /__| (_) | (_| | | | | |
[13:00:45] [Server thread/INFO]:  |_| |_\____/\___/ \__, |_|_| |_|
[13:00:45] [Server thread/INFO]:                   |___/            
[13:00:45] [Server thread/INFO]:  By: www.nickuc.com - V 10.4.23 DEVELOPMENT
[13:00:45] [Server thread/INFO]:  
[13:00:45] [Server thread/WARN]: [nLogin] Premium and offline appendix cannot be the same! "" = ""
[13:00:47] [Server thread/WARN]: 2025-04-25 13:00:47 [JDALogger] [WARN] Using fallback logger due to missing SLF4J implementation.
[13:00:47] [Server thread/WARN]: 2025-04-25 13:00:47 [JDALogger] [WARN] Please setup a logging framework to use JDA.
[13:00:47] [Server thread/WARN]: 2025-04-25 13:00:47 [JDALogger] [WARN] You can use our logging setup guide https://jda.wiki/setup/logging/
[13:00:47] [Server thread/WARN]: 2025-04-25 13:00:47 [JDALogger] [WARN] To disable the fallback logger, add the slf4j-nop dependency or use JDALogger.setFallbackLoggerEnabled(false)
[13:00:51] [Server thread/ERROR]: [STDERR] [com.nickuc.login.lib.jda.lib.slf4j.helpers.Reporter] SLF4J(W): No SLF4J providers were found.
[13:00:51] [Server thread/ERROR]: [STDERR] [com.nickuc.login.lib.jda.lib.slf4j.helpers.Reporter] SLF4J(W): Defaulting to no-operation (NOP) logger implementation
[13:00:51] [Server thread/ERROR]: [STDERR] [com.nickuc.login.lib.jda.lib.slf4j.helpers.Reporter] SLF4J(W): See https://www.slf4j.org/codes.html#noProviders for further details.
[13:00:59] [Server thread/WARN]: 2025-04-25 13:00:59 [JDA] [INFO] Login Successful!
[13:01:02] [JDA MainWS-WriteThread/WARN]: 2025-04-25 13:01:02 [WebSocketClient] [INFO] Connected to WebSocket
[13:01:04] [JDA MainWS-ReadThread/WARN]: 2025-04-25 13:01:04 [JDA] [INFO] Finished Loading!
[13:01:04] [Server thread/INFO]: [nLogin] [Discord] Conexão com o Discord foi realizada com sucesso!
[13:01:07] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.65
[13:01:07] [Server thread/INFO]: [nAntiBot] Enabling nAntiBot v6.1.29
[13:01:10] [Server thread/INFO]: [nAntiBot] Successful plugin core start (took 2.84s)
[13:01:10] [Server thread/INFO]:           _         _   _   ___       _   
[13:01:10] [Server thread/INFO]:   _ __   /_\  _ __ | |_(_) / __\ ___ | |_ 
[13:01:10] [Server thread/INFO]:  | '_ \ //_\\| '_ \| __| |/__\/// _ \| __|
[13:01:10] [Server thread/INFO]:  | | | /  _  \ | | | |_| / \/  \ (_) | |_ 
[13:01:10] [Server thread/INFO]:  |_| |_\_/ \_/_| |_|\__|_\_____/\___/ \__|
[13:01:10] [Server thread/INFO]:                                          
[13:01:10] [Server thread/INFO]:  By: www.nickuc.com - V 6.1.29 DEVELOPMENT
[13:01:10] [Server thread/INFO]: 
[13:01:12] [Folia Async Scheduler Thread #2/INFO]: [nAntiBot] Connecting to the remote server antibot.nickuc.com...
[13:01:12] [Server thread/INFO]: [LeafHideLog] Enabling LeafHideLog vbeta-1.0.0
[13:01:12] [Server thread/INFO]: [LeafHideLog] Plugin inicializado com sucesso (levou 0.07s)
[13:01:18] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[13:01:18] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[13:01:18] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[13:01:18] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[13:01:18] [Server thread/INFO]: Preparing level "world"
[13:01:18] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:01:19] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:19] [Server thread/INFO]: Preparing spawn area: 6%
[13:01:19] [Server thread/INFO]: Preparing spawn area: 6%
[13:01:20] [Server thread/INFO]: Preparing spawn area: 18%
[13:01:20] [Server thread/INFO]: Time elapsed: 1690 ms
[13:01:20] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[13:01:20] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:20] [Server thread/INFO]: Time elapsed: 280 ms
[13:01:20] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[13:01:20] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:20] [Server thread/INFO]: Time elapsed: 190 ms
[13:01:20] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.2
[13:01:20] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[13:01:21] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[13:01:21] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[13:01:21] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[13:01:22] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[13:01:22] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[13:01:22] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[13:01:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[13:01:22] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:01:22] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.16
[13:01:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[13:01:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[13:01:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[13:01:22] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[13:01:22] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[13:01: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 and performance impact is negligible. It is safe to ignore.
[13:01:23] [Server thread/INFO]: Preparing start region for dimension minecraft:mundo
[13:01:23] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:23] [Server thread/INFO]: Preparing spawn area: 59%
[13:01:23] [Server thread/INFO]: Time elapsed: 505 ms
[13:01:23] [Server thread/INFO]: [WorldGuard] (Mundo) TNT ignition is PERMITTED.
[13:01:23] [Server thread/INFO]: [WorldGuard] (Mundo) Lighters are PERMITTED.
[13:01:23] [Server thread/INFO]: [WorldGuard] (Mundo) Lava fire is PERMITTED.
[13:01:23] [Server thread/INFO]: [WorldGuard] (Mundo) Fire spread is UNRESTRICTED.
[13:01:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Mundo'
[13:01:23] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: mundo_nether
[13:01:23] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:01:23] [Server thread/INFO]: Preparing start region for dimension minecraft:nether
[13:01:23] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:24] [Server thread/INFO]: Time elapsed: 205 ms
[13:01:24] [Server thread/INFO]: [WorldGuard] (Nether) TNT ignition is PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Nether) Lighters are PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Nether) Lava fire is PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Nether) Fire spread is UNRESTRICTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Nether'
[13:01:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: mundo
[13:01:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:01:24] [Server thread/INFO]: Preparing start region for dimension minecraft:mundo2
[13:01:24] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:24] [Server thread/INFO]: Time elapsed: 367 ms
[13:01:24] [Server thread/INFO]: [WorldGuard] (Mundo2) TNT ignition is PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Mundo2) Lighters are PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Mundo2) Lava fire is PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Mundo2) Fire spread is UNRESTRICTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Mundo2'
[13:01:24] [Server thread/INFO]: Preparing start region for dimension minecraft:nether3
[13:01:24] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:24] [Server thread/INFO]: Time elapsed: 311 ms
[13:01:24] [Server thread/INFO]: [WorldGuard] (Nether3) TNT ignition is PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Nether3) Lighters are PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Nether3) Lava fire is PERMITTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] (Nether3) Fire spread is UNRESTRICTED.
[13:01:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Nether3'
[13:01:25] [Server thread/INFO]: Preparing start region for dimension minecraft:eventos
[13:01:25] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:25] [Server thread/INFO]: Time elapsed: 287 ms
[13:01:25] [Server thread/INFO]: [WorldGuard] (eventos) TNT ignition is PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (eventos) Lighters are PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (eventos) Lava fire is PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (eventos) Fire spread is UNRESTRICTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'eventos'
[13:01:25] [Server thread/INFO]: Preparing start region for dimension minecraft:arena
[13:01:25] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:25] [Server thread/INFO]: Time elapsed: 104 ms
[13:01:25] [Server thread/INFO]: [WorldGuard] (arena) TNT ignition is PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (arena) Lighters are PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (arena) Lava fire is PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (arena) Fire spread is UNRESTRICTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'arena'
[13:01:25] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Mundo_nether
[13:01:25] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:01:25] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Mundo_the_end
[13:01:25] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:01:25] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: mundo_the_end
[13:01:25] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:01:25] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[13:01:25] [Server thread/INFO]: Preparing spawn area: 0%
[13:01:25] [Server thread/INFO]: Time elapsed: 188 ms
[13:01:25] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[13:01:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[13:01:25] [Server thread/INFO]: [Multiverse-Core] 10 - World(s) loaded.
[13:01:25] [Server thread/INFO]: [Multiverse-Core] Loading anchor:  'h'...
[13:01:25] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[13:01:25] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[13:01:25] [Server thread/INFO]: [SimpleClans] Enabling SimpleClans v2.19.2-05e7abc
[13:01:26] [Server thread/INFO]: [SimpleClans] SQLite Connection successful
[13:01:26] [Server thread/INFO]: [SimpleClans] Clans: 13
[13:01:26] [Server thread/INFO]: [SimpleClans] Clan players: 700
[13:01:26] [Server thread/INFO]: [SimpleClans] Registering 4 chat handlers...
[13:01:26] [Server thread/INFO]: [SimpleClans] [ACF] Enabled Asynchronous Tab Completion Support!
[13:01:26] [Server thread/INFO]: [SimpleClans] Registering 12 command contexts...
[13:01:26] [Server thread/INFO]: [SimpleClans] Registering 15 base commands...
[13:01:26] [Server thread/INFO]: [SimpleClans] Registering 32 command conditions...
[13:01:26] [Server thread/INFO]: [SimpleClans] Registering 19 command completions...
[13:01:26] [Server thread/INFO]: [SimpleClans] Multithreading: true
[13:01:26] [Server thread/INFO]: [SimpleClans] BungeeCord: false
[13:01:26] [Server thread/INFO]: [SimpleClans] HEX support: true
[13:01:26] [Server thread/INFO]: [SimpleClans] Help us translate SimpleClans to your language! Access https://crowdin.com/project/simpleclans/
[13:01:26] [Server thread/INFO]: [SimpleClans] PlaceholderAPI found. Registering hook...
[13:01:26] [Server thread/INFO]: [SimpleClans] Registering 7 placeholder resolvers...
[13:01:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: simpleclans [2.19.2-05e7abc]
[13:01:26] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[13:01:28] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[13:01:28] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[13:01:28] [Server thread/INFO]: [GriefPrevention] 195 total claims loaded.
[13:01:29] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[13:01:29] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[13:01:29] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[13:01:29] [Server thread/INFO]: [GriefPrevention] Boot finished.
[13:01:29] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+12-8455212
[13:01:30] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[13:01:30] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsWarpGUI to the same version.
[13:01:30] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[13:01:30] [Server thread/INFO]: [Essentials] No kits found to migrate.
[13:01:30] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[13:01:30] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[13:01:30] [Server thread/INFO]: [Essentials] Loaded 43517 items from items.json.
[13:01:30] [Server thread/INFO]: [Essentials] Using locale en_US
[13:01:30] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[13:01:32] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[13:01:32] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[13:01:32] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[13:01:32] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3727)
[13:01:32] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[13:01:33] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[13:01:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[13:01:33] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[13:01:33] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.2-SNAPSHOT
[13:01:34] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.9
[13:01:34] [Server thread/WARN]: [ItemsAdder] LoneLibs is enabled. This plugin is not needed anymore and it's recommended to remove it (if you are not using it for other plugins).
[13:01:34] [Server thread/INFO]: [ItemsAdder] InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[13:01:34] [Server thread/WARN]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
[13:01:34] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.9
  ___  ___        __        __   __   ___  __      ProtocolLib 5.4.0-SNAPSHOT-742
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Paper 1.21.4-226-a838a88 (MC: 1.21.4)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-03-03_12.32.24
                                                   Java Version: 21.0.6
                                                   OS: Linux 6.8.0-1021-aws                                               
[13:01:34] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.4
[13:01:34] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[13:01:34] [Server thread/INFO]: [ItemsAdder] ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[13:01:34] [Server thread/INFO]: [ItemsAdder] More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[13:01:34] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[13:01:35] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[13:01:35] [Server thread/INFO]: [ItemsAdder] [Pack] Done extracting internal contents from .jar
[13:01:35] [Server thread/ERROR]: [ItemsAdder] Missing namespace in file: /contents/elitecreatures/configs/cleric_assortment/categories.yml
[13:01:36] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.3.1
[13:01:36] [Server thread/INFO]: [yPoints] Enabling yPoints v2.4.0
[13:01:36] [Server thread/INFO]: [yPoints] Plugin carregado.
[13:01:36] [Server thread/INFO]: [yPoints] Carregando sistemas.
[13:01:36] [Server thread/INFO]: [INFO] [yPoints] conexão com sqlite inicializada com sucesso
[13:01:36] [Server thread/INFO]: [INFO] [yPoints] Carregado 0 objetos em 0ms
[13:01:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ypoints [2.4.0]
[13:01:36] [Server thread/INFO]: [yPoints] PlaceholderAPI encontrado, métodos inicializados.
[13:01:36] [Server thread/INFO]: [yPoints] OpeNChat encontrado, métodos inicializados.
[13:01:36] [Server thread/INFO]: [yPoints] Citizens encontrado.
[13:01:36] [Server thread/INFO]: [yPoints] DecentHolograms encontrado.
[13:01:36] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[13:01:36] [Server thread/INFO]: [Votifier] Loaded token for website: default
[13:01:36] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[13:01:37] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[13:01:37] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /177.54.146.20:8192.
[13:01:37] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.2.034
[13:01:37] [Server thread/INFO]: [mcMMO] Loaded 229 of 229 Alchemy potions.
[13:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.12.1
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Usando o arquivo de idioma lang-pt.yml.
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Carregamento concluído de 16 de configurações de loja de /shops/
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Atualizando as configurações do Shop...
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using yEconomy as economy provider
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 7 shop sections.
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Usando a versão 1.21.4 do minecraft...
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: A compatibilidade do AUTO foi habilitada nas configurações
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[13:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: O modo Debug foi ativado
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Carregando todos os itens...
[13:01:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Feito!
[13:01:40] [Server thread/INFO]: [zMenu] Enabling zMenu v1.0.3.8
[13:01:40] [Server thread/INFO]: [zMenu v1.0.3.8] === ENABLE START ===
[13:01:40] [Server thread/INFO]: [zMenu v1.0.3.8] Plugin Version V1.0.3.8
[13:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zmenu [1.0.3.8]
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/patterns/pattern_example.yml loaded successfully !
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/example_punish.yml loaded successfully !
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] items section was not found in /home/tcagame_svc3912/simoneg/3912/plugins/zMenu/inventories/Teste.yml
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/Teste.yml loaded successfully !
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/advanced_inventory.yml loaded successfully !
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/basic_inventory.yml loaded successfully !
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/pro_inventory.yml loaded successfully !
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/website/inventories.yml loaded successfully !
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] Command /basic_command successfully register.
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] Command /advanced_command successfully register.
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] Command /pro_command successfully register.
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] Command /openbook successfully register.
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] Command /punish successfully register.
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] 
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] You can support zMenu by upgrading your account here: https://minecraft-inventory-builder.com/account-upgrade
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] zMenu’s site includes an inventory editor (under development), a marketplace (already available) is a forum (under development)
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] 
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] Use ComponentMeta
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] Loading 6 commands
[13:01:41] [Server thread/INFO]: [zMenu v1.0.3.8] === ENABLE DONE (568ms) ===
[13:01:41] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[13:01:41] [Server thread/INFO]: [NBTAPI] Checking bindings...
[13:01:41] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[13:01:41] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[13:01:41] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[13:01:42] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[13:01:42] [Server thread/INFO]: [GSit] Enabling GSit v2.2.1
[13:01:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.2.1]
[13:01:42] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[13:01:42] [Server thread/INFO]: [GSit] O plugin foi ativado com sucesso.
[13:01:42] [Server thread/INFO]: [GSit] Conexão com  GriefPrevention feita com sucesso!
[13:01:42] [Server thread/INFO]: [GSit] Conexão com  PlaceholderAPI feita com sucesso!
[13:01:42] [Server thread/INFO]: [GSit] Conexão com  WorldGuard feita com sucesso!
[13:01:42] [Server thread/INFO]: [TAB] Enabling TAB v5.0.7
[13:01:42] [Server thread/INFO]: [TAB] Loaded NMS hook in 40ms
[13:01:42] [Server thread/INFO]: [TAB] Enabled in 315ms
[13:01:42] [Server thread/INFO]: [LeafPlugins] Enabling LeafPlugins v1.8.1
[13:01:43] [Server thread/INFO]: [LeafPlugins] Buscando plugins para (177.54.146.12:25525)...
[13:01:43] [Server thread/INFO]: [LeafPlugins] Conectado ao SQLite com sucesso!
[13:01:43] [Server thread/INFO]: [LeafPlugins] [WARN] Language not defined, configure it in: LeafPlugins/config.yml
[13:01:43] [Server thread/INFO]: [LeafPlugins] Identificado 5 plugin(s) com sucesso para (177.54.146.12:25525): [LeafTags Premium, LeafCombatLog, LeafMito Premium, LeafX1, LeafPunish Premium]
[13:01:46] [Server thread/INFO]: [LeafTags] [Premium] Carregando produto em sua versao v1.3.5
[13:01:46] [Server thread/INFO]: [LeafTags] [Premium] Conectado ao SQLite com sucesso!
[13:01:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LeafTags [1.3.5]
[13:01:47] [Server thread/INFO]: [LeafTags] [Premium] Plugin inicializado com sucesso (levou 1.31s)
[13:01:48] [Server thread/INFO]: [LeafCombatLog] [Premium] Carregando produto em sua versao v1.1.8
[13:01:49] [Server thread/INFO]: [LeafCombatLog] [Premium] Realizando calculos de otimizacao para regioes PvP... (Caso isto trave seu servidor, desative na config.yml)
[13:01:49] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "mundo1" ready!
[13:01:49] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "mundo" ready!
[13:01:49] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "mundo2" ready!
[13:01:50] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "campominado" ready!
[13:01:50] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "safezone" ready!
[13:01:50] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "lobby" ready!
[13:01:50] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "drooper" ready!
[13:01:52] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "pascoa" ready!
[13:01:54] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "arenarestaum" ready!
[13:01:57] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "arenap4" ready!
[13:01:58] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "spleef" ready!
[13:01:58] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "semaforo" ready!
[13:01:58] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "safep4pvp" ready!
[13:02:02] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "areaarena" ready!
[13:02:02] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "p4dimasafe" ready!
[13:02:02] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "areaguerra" ready!
[13:02:02] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "safep4" ready!
[13:02:02] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "safearena" ready!
[13:02:07] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "guerraclans" ready!
[13:02:10] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "spawn" ready!
[13:02:10] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "arvore" ready!
[13:02:11] [Server thread/INFO]: [LeafCombatLog] [Premium] Region "recurso-vip" ready!
[13:02:11] [Server thread/INFO]: [LeafCombatLog] [Premium] Starting Protocol Force Field...
[13:02:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LeafCombatLog [1.1.8]
[13:02:11] [Server thread/INFO]: [LeafCombatLog] [Premium] Plugin inicializado com sucesso (levou 3.21s)
[13:02:12] [Server thread/INFO]: [LeafMito] [Premium] Carregando produto em sua versao v1.0.9
[13:02:12] [Server thread/INFO]: [LeafMito] [Premium] Conectado ao SQLite com sucesso!
[13:02:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LeafMito [1.0.9]
[13:02:13] [Server thread/INFO]: [LeafMito] [Premium] Plugin inicializado com sucesso (levou 0.26s)
[13:02:13] [Server thread/INFO]: [LeafX1] [Premium] Carregando produto em sua versao vbeta-1.0.8
[13:02:14] [Server thread/INFO]: [LeafX1] [Premium] Conectado ao SQLite com sucesso!
[13:02:14] [Server thread/INFO]: [LeafX1] [Premium] Animacao ExplosionAnimation carregada.
[13:02:14] [Server thread/INFO]: [LeafX1] [Premium] Animacao FireworkAnimation carregada.
[13:02:15] [Server thread/INFO]: [LeafX1] [Premium] Plugin inicializado com sucesso (levou 1.23s)
[13:02:16] [Server thread/INFO]: [LeafPunish] [Premium] Carregando produto em sua versao v1.4.1
[13:02:16] [Server thread/INFO]: [LeafPunish] [Premium] Conectado ao SQLite com sucesso!
[13:02:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LeafPunish [1.4.1]
[13:02:17] [Server thread/INFO]: [LeafPunish] [Premium] Plugin inicializado com sucesso (levou 0.98s)
[13:02:17] [Server thread/INFO]: [LeafPlugins] Plugin inicializado com sucesso (levou 4.18s)
[13:02:17] [Server thread/INFO]: [PixelVip] Enabling PixelVip v3.0.5
[13:02:17] [Server thread/INFO]: [PixelVip] Init config module...
[13:02:17] [Server thread/INFO]: [PixelVip] Init utils module...
[13:02:17] [Server thread/INFO]: [PixelVip] Init essentials module...
[13:02:17] [Server thread/INFO]: [PixelVip] Essentials found. Hooked!
[13:02:17] [Server thread/INFO]: [PixelVip] Init economy module...
[13:02:17] [Server thread/INFO]: [PixelVip] -> Vault found. Hooked.
[13:02:17] [Server thread/INFO]: [PixelVip] Init commands module...
[13:02:17] [Server thread/INFO]: [PixelVip] Init scheduler module...
[13:02:17] [Server thread/INFO]: [PixelVip] Reloading tasks...
[13:02:17] [Server thread/INFO]: [PixelVip] -> Task started
[13:02:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pixelvip [3.0.5]
[13:02:17] [Server thread/INFO]: [PixelVip] -> PlaceHolderAPI found. Hooked.
[13:02:17] [Server thread/INFO]: [PixelVip] We have 17 active Vips on file
[13:02:17] [Server thread/INFO]: [PixelVip] PixelVip enabled!
[13:02:17] [Server thread/INFO]: [PixelVip] Metrics enabled! See our stats here: https://bstats.org/plugin/bukkit/PixelVip
[13:02:17] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.3.7
[13:02:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animatedscoreboard [0.0.1]
[13:02:17] [Server thread/INFO]: [EpicHomes] Enabling EpicHomes v1.1.2
[13:02:17] [Server thread/INFO]: [DivineHomes] -------------------------------------------
[13:02:17] [Server thread/INFO]: [DivineHomes] Successfully loaded usermap to memory.
[13:02:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: epicHomes [1.1.2]
[13:02:17] [Server thread/INFO]: [DivineHomes] -------------------------------------------
[13:02:17] [Server thread/INFO]: [DivineHomes] PlaceholderAPI found!
[13:02:17] [Server thread/INFO]: [DivineHomes] External placeholders enabled!
[13:02:17] [Server thread/INFO]: [DivineHomes] Continuing plugin startup
[13:02:17] [Server thread/INFO]: [DivineHomes] -------------------------------------------
[13:02:17] [Server thread/INFO]: [DivineHomes] -------------------------------------------
[13:02:17] [Server thread/INFO]: [DivineHomes] Plugin by: Loving11ish
[13:02:17] [Server thread/INFO]: [DivineHomes] has been loaded successfully
[13:02:17] [Server thread/INFO]: [DivineHomes] Plugin Version: 1.1.2
[13:02:17] [Server thread/INFO]: [DivineHomes] -------------------------------------------
[13:02:17] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.4.2
[13:02:17] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully enabled FancyHolograms version 2.4.2
[13:02:17] [Server thread/INFO]: [BedrockOffhand] Enabling BedrockOffhand v2.0.2
[13:02:17] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.17.2
[13:02:17] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loaded 52 holograms for all loaded worlds
[13:02:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.17.2]
[13:02:18] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.17.2
[13:02:18] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[13:02:18] [Server thread/INFO]: There is a new version available. (1.17.3)
[13:02:18] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/playerkits-2
[13:02:18] [Server thread/INFO]: [ARedstoneDisable] Enabling ARedstoneDisable v1.1
[13:02:18] [Server thread/INFO]: [ARedstoneDisable] Started successfully - ARedstoneDisable / Majkrafty.pl
[13:02:18] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v3.3.2
[13:02:18] [Server thread/INFO]: [PlayerWarps] VaultHook has been registered.
[13:02:18] [Server thread/INFO]: [PlayerWarps] WorldGuardHook has been registered.
[13:02:18] [Server thread/INFO]: [PlayerWarps] ItemsAdderHook has been registered.
[13:02:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerwarps [3.3.2]
[13:02:18] [Server thread/INFO]: [PlayerWarps] PlaceholderApiHook has been registered.
[13:02:18] [Server thread/INFO]: [PlayerWarps] GriefPreventionHook has been registered.
[13:02:18] [Server thread/INFO]: [PlayerWarps] EssentialsHook has been registered.
[13:02:18] [Server thread/INFO]: [WildChests] Enabling WildChests v2025.1
[13:02:18] [Server thread/INFO]: [WildChests] ******** ENABLE START ********
[13:02:18] [Server thread/INFO]: [WildChests] Loading configuration started...
[13:02:18] [Server thread/INFO]: [WildChests]  - Found 6 chests in config.yml.
[13:02:18] [Server thread/INFO]: [WildChests] Loading configuration done (Took 25ms)
[13:02:18] [Server thread/INFO]: [WildChests] Loading messages started...
[13:02:18] [Server thread/INFO]: [WildChests]  - Found 42 messages in lang.yml.
[13:02:18] [Server thread/INFO]: [WildChests] Loading messages done (Took 2ms)
[13:02:18] [Server thread/INFO]: [WildChests] ******** ENABLE DONE ********
[13:02:18] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.4
[13:02:18] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[13:02:18] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[13:02:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[13:02:18] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[13:02:19] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[13:02:19] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.4
[13:02:19] [Server thread/INFO]: [CentralCart] Enabling CentralCart v1.0.0-96e09d
[13:02:19] [Server thread/INFO]: 
   ______                 __                     __   ______                   __ 
  / ____/  ___    ____   / /_   _____  ____ _   / /  / ____/  ____ _   _____  / /_
 / /      / _ \  / __ \ / __/  / ___/ / __ `/  / /  / /      / __ `/  / ___/ / __/
/ /___   /  __/ / / / // /_   / /    / /_/ /  / /  / /___   / /_/ /  / /    / /_  
\____/   \___/ /_/ /_/ \__/  /_/     \__,_/  /_/   \____/   \__,_/  /_/     \__/  
                                                                                  
                      www.centralcart.com.br - v1.0.0-96e09d
                       Monetize o seu servidor de Minecraft!
[13:02:19] [Server thread/INFO]: [CentralCart] => Plano: SUPER - Expira em: 22/05/2025
[13:02:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cc [1.0.0]
[13:02:19] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.16.0
[13:02:20] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[13:02:20] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[13:02:20] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[13:02:20] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[13:02:20] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Floodgate!
[13:02:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.16.0]
[13:02:20] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[13:02:20] [Server thread/INFO]: [SkullFixer] Enabling SkullFixer v1.0.0
[13:02:20] [Server thread/INFO]: [SkullFixer] Plugin carregado.
[13:02:20] [Server thread/INFO]: [SkullFixer] Carregando sistemas.
[13:02:20] [Server thread/INFO]: [WildLoaders] Enabling WildLoaders v2025.1
[13:02:20] [Server thread/INFO]: [WildLoaders] ******** ENABLE START ********
[13:02:20] [Server thread/INFO]: [WildLoaders] Loading configuration started...
[13:02:20] [Server thread/INFO]: [WildLoaders]  - Found 2 chunk-loaders in config.yml.
[13:02:20] [Server thread/INFO]: [WildLoaders] Loading configuration done (Took 6ms)
[13:02:20] [Server thread/INFO]: [WildLoaders] Loading messages started...
[13:02:20] [Server thread/INFO]: [WildLoaders]  - Found 25 messages in lang.yml.
[13:02:20] [Server thread/INFO]: [WildLoaders] Loading messages done (Took 1ms)
[13:02:20] [Server thread/INFO]: [WildLoaders] ******** ENABLE DONE ********
[13:02:20] [Server thread/INFO]: [ServerIcon] Enabling ServerIcon v1.0.1*
[13:02:20] [Server thread/INFO]: <------------------------------------> 
[13:02:20] [Server thread/INFO]: [ServerIcon] Enabled, (Version: 1.0.1)
[13:02:20] [Server thread/INFO]: [ServerIcon] Thanks for use my plugin :)
[13:02:20] [Server thread/INFO]: [ServerIcon] Made by davigamer161
[13:02:20] [Server thread/INFO]: <------------------------------------> 
[13:02:20] [Server thread/INFO]: [BattlePass] Enabling BattlePass v4.9.15
[13:02:21] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[13:02:21] [Server thread/INFO]: [BattlePass] Finished loading the week-pool quests. All quests loaded successfully.
[13:02:21] [Server thread/INFO]: [mcMMO] Using internal version as PluginVersion{major=2, minor=2, bugfix=34} for loading McMMO.
[13:02:21] [Server thread/INFO]: [mcMMO] Hooked into McMMO
[13:02:21] [Server thread/INFO]: [Citizens] Hooked into Citizens
[13:02:21] [Server thread/INFO]: [EconomyShopGUI] Hooked into EconomyShopGUI
[13:02:21] [Server thread/INFO]: [Votifier] Hooked into Votifier
[13:02:21] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[13:02:21] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[13:02:21] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[13:02:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: battlepass [1.1]
[13:02:21] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.9
[13:02:21] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[13:02:22] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[13:02:22] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[13:02:22] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[13:02:22] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[13:02:22] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Loading marriages ...
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Marriages loaded
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Loading priests ...
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Priests loaded
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Loading players ...
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Players loaded
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Loading marriages into cache ...
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Marriages loaded into cache
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Loading homes ...
[13:02:22] [Thread-48/INFO]: [MarriageMaster] Homes loaded
[13:02:22] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[13:02:22] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[13:02:22] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 826 items.
[13:02:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.7.9]
[13:02:22] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[13:02:22] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[13:02:22] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.7.0
[13:02:22] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[13:02:22] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[13:02:22] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[13:02:22] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[13:02:22] [Server thread/INFO]: [ItemEdit] placeholders:
[13:02:22] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[13:02:22] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[13:02:22] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[13:02:22] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[13:02:22] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[13:02:22] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[13:02:22] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[13:02:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[13:02:22] [Server thread/INFO]: [ItemEdit] # Enabled (took 156 ms)
[13:02:22] [Server thread/INFO]: [EssentialsWarpGUI] Enabling EssentialsWarpGUI v3.1
[13:02:22] [Server thread/INFO]: [XLTournaments] Enabling XLTournaments v3.17.12
[13:02:22] [Server thread/INFO]: [XLTournaments] 
[13:02:22] [Server thread/INFO]: [XLTournaments] \/|      XLTournaments v3.17.12
[13:02:22] [Server thread/INFO]: [XLTournaments] /\|_     Author: [ItsLewizzz, ItzSave]
[13:02:22] [Server thread/INFO]: [XLTournaments]          Copyright (c) Zithium Studios 2023. All Rights Reserved.
[13:02:22] [Server thread/INFO]: [XLTournaments] 
[13:02:22] [Server thread/INFO]: [XLTournaments] Loading plugin..
[13:02:22] [Server thread/INFO]: [XLTournaments] Loading bstats metrics.
[13:02:22] [Server thread/INFO]: [XLTournaments] Metrics are disabled.
[13:02:23] [Server thread/INFO]: [XLTournaments] Hooked into Vault
[13:02:23] [Server thread/INFO]: [XLTournaments] 
[13:02:23] [Server thread/INFO]: [Colored Signs] Enabling ColoredSigns v6.3.1.215
[13:02:23] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[13:02:23] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[13:02:23] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[13:02:23] [Server thread/INFO]: | Command file(s) found : 1
[13:02:23] [Server thread/INFO]: | Config : Ready.
[13:02:23] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[13:02:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[13:02:23] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[13:02:23] [Server thread/INFO]: | Custom commands loaded : 44
[13:02:23] [Server thread/INFO]: | New update available : MyCommand v5.7.5
[13:02:23] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[13:02:23] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[13:02:23] [Server thread/INFO]: [AxAFKZone] Enabling AxAFKZone v1.6.2
[13:02:24] [Server thread/INFO]: ╠ Loaded zone ZonaAFK!
[13:02:24] [Server thread/INFO]: ╠ Loaded zone VIP!
[13:02:25] [Server thread/INFO]: [SynkLibs] Enabling SynkLibs v1.7.2
[13:02:28] [Server thread/INFO]: [SynkLibs] »  SynkLibs is up to date!
[13:02:28] [Server thread/INFO]: [ChestCommands] Enabling ChestCommands v3.1.4*
[13:02:28] [Server thread/INFO]: [OldCombatMechanics] Enabling OldCombatMechanics v2.0.4
[13:02:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ocm [2.0.4]
[13:02:28] [Server thread/WARN]: [OldCombatMechanics] Error reloading module 'Old Golden Apples'
java.lang.NullPointerException: Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because "sect" is null
    at OldCombatMechanics.jar/kernitus.plugin.OldCombatMechanics.module.ModuleGoldenApple.getPotionEffects(ModuleGoldenApple.java:227) ~[OldCombatMechanics.jar:?]
    at OldCombatMechanics.jar/kernitus.plugin.OldCombatMechanics.module.ModuleGoldenApple.reload(ModuleGoldenApple.java:75) ~[OldCombatMechanics.jar:?]
    at OldCombatMechanics.jar/kernitus.plugin.OldCombatMechanics.utilities.Config.lambda$reload$0(Config.java:87) ~[OldCombatMechanics.jar:?]
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?]
    at OldCombatMechanics.jar/kernitus.plugin.OldCombatMechanics.utilities.Config.reload(Config.java:85) ~[OldCombatMechanics.jar:?]
    at OldCombatMechanics.jar/kernitus.plugin.OldCombatMechanics.OCMMain.onEnable(OCMMain.java:98) ~[OldCombatMechanics.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:02:28] [Server thread/INFO]: [OldCombatMechanics] OldCombatMechanics v2.0.4 has been enabled
[13:02:28] [Server thread/INFO]: [AxTrade] Enabling AxTrade v1.16.2
[13:02:29] [Server thread/INFO]: [AxTrade] Hooked into Vault!
[13:02:30] [Server thread/INFO]: [AxTrade] Loaded plugin!
[13:02:30] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[13:02:30] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[13:02:30] [Server thread/INFO]: [ClearLag] Loading modules...
[13:02:30] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (Index 3 out of bounds for length 3)
[13:02:30] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[13:02:30] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[13:02:30] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[13:02:30] [Thread-50/WARN]: [ClearLag] Clearlag failed to check for updates - bukkit may be down
[13:02:30] [Thread-50/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[13:02:30] [Thread-50/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.Util.getBukkitVersion(Util.java:105)
[13:02:30] [Thread-50/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.updateAvailable(BukkitUpdater.java:32)
[13:02:30] [Thread-50/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.run(BukkitUpdater.java:82)
[13:02:30] [Thread-50/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[13:02:30] [Server thread/INFO]: [DivineClaims] Enabling DivineClaims v1.0-SNAPSHOT
[13:02:30] [Server thread/INFO]: [DivineClaims] DivineClaims iniciado com sucesso!
[13:02:30] [Server thread/INFO]: [Elevator] Enabling Elevator v3.0.8
[13:02:30] [Server thread/INFO]: [Elevator] Detected 1.21.4-R0.1-SNAPSHOT.
[13:02:30] [Server thread/INFO]: ___________ __                       __                
[13:02:30] [Server thread/INFO]: \_   _____/|  |   _______  _______ _/  |_  ___________ 
[13:02:30] [Server thread/INFO]:  |    __)_ |  | _/ __ \  \/ /\__  \\   __\/  _ \_  __ \
[13:02:30] [Server thread/INFO]:  |        \|  |_\  ___/\   /  / __ \|  | (  <_> )  | \/
[13:02:30] [Server thread/INFO]: /_______  /|____/\___  >\_/  (____  /__|  \____/|__|   
[13:02:30] [Server thread/INFO]:         \/           \/           \/                   
[13:02:30] [Server thread/INFO]: 
[13:02:30] [Server thread/INFO]: Elevator v3.0.8
[13:02:30] [Server thread/INFO]: Running on Paper
[13:02:30] [Server thread/INFO]: Author: Baktus_79
[13:02:30] [Server thread/INFO]: _______________________________________________________
[13:02:30] [Server thread/INFO]: 
[13:02:30] [Server thread/INFO]: Enabling particles for elevators
[13:02:30] [Server thread/INFO]: Using WITCH as particle for elevators
[13:02:30] [Server thread/INFO]: Enabling particles for teleporters
[13:02:30] [Server thread/INFO]: Using IRON BLOCK as elevator block
[13:02:30] [Server thread/INFO]: Using SEA LANTERN as teleporter block
[13:02:30] [Server thread/INFO]: Using the sound entity.player.levelup on activate elevator
[13:02:30] [Server thread/INFO]: Using the sound entity.enderman.teleport when using elevator
[13:02:30] [Server thread/INFO]: Using the sound entity.enderman.teleport when using teleporters
[13:02:30] [Server thread/INFO]: Successfully hooked into GriefPrevention
[13:02:30] [Server thread/INFO]: Successfully hooked into WorldGuard
[13:02:30] [Server thread/INFO]: Successfully hooked into Essentials
[13:02:30] [Server thread/INFO]: _______________________________________________________
[13:02:30] [Server thread/INFO]: [WMcmmoAddon] Enabling WMcmmoAddon v1.0
[13:02:30] [Server thread/INFO]: [WMcmmoAddon] WMcmmoAddon habilitado com sucesso!
[13:02:31] [Server thread/INFO]: [SpawnerLegacy] Enabling SpawnerLegacy v1.3.5
[13:02:31] [Server thread/INFO]: [SpawnerLegacy v1.3.5] enabled!
[13:02:31] [Server thread/INFO]: [SpawnerLegacy] Vault has been found, economy enabled!
[13:02:31] [Server thread/INFO]: [PersonalPhantoms] Enabling PersonalPhantoms v2.1.2
[13:02:31] [Server thread/INFO]: [PersonalPhantoms] -----------------------
[13:02:31] [Server thread/INFO]: [PersonalPhantoms] PersonalPhantoms v2.1.2
[13:02:31] [Server thread/INFO]: [PersonalPhantoms] By srnyx
[13:02:31] [Server thread/INFO]: [PersonalPhantoms] -----------------------
[13:02:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: phantoms [2.1.2]
[13:02:31] [Server thread/INFO]: [AntiWorldFly] Enabling AntiWorldFly v2.5.4
[13:02:31] [Server thread/INFO]: [AntiWorldFly] Registering listeners...
[13:02:31] [Thread-51/INFO]: [AntiWorldFly] Checking for plugin update...
[13:02:31] [Server thread/INFO]: [AntiWorldFly] Plugin successfully enabled and ready to run! Took 16ms.
[13:02:31] [Server thread/INFO]: [Ultimate_BlockRegeneration] Enabling Ultimate_BlockRegeneration v2.0.28
[13:02:31] [Server thread/INFO]: ****************************
[13:02:31] [Server thread/INFO]:       Ultimate BlockRegen     
[13:02:31] [Server thread/INFO]:  Regenerate Blocks in Style 
[13:02:31] [Server thread/INFO]:                             
[13:02:31] [Server thread/INFO]:         V:2.0.28        
[13:02:31] [Server thread/INFO]:        Made By HmmboYt      
[13:02:31] [Server thread/INFO]:  Join Our Discord For Support  
[13:02:31] [Server thread/INFO]: ****************************
[13:02:31] [Server thread/INFO]: Thanks for using our plugin 879790 - %%__BUILTBYBIT__%%1294793782
[13:02:31] [Server thread/INFO]: [Ultimate_BlockRegeneration] ItemsAdder Loaded
[13:02:31] [Server thread/INFO]: [Ultimate_BlockRegeneration] Vault Loaded
[13:02:31] [Server thread/WARN]: [Ultimate_BlockRegeneration] "Ultimate_BlockRegeneration v2.0.28" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void revxrsal.commands.bukkit.brigadier.PaperCommodore$CommandRegisterListener.onCommandRegistered(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<?>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [].
[13:02:32] [Server thread/INFO]: SQLite tables created successfully!
[13:02:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ubr [1.0]
[13:02:32] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v5.4
[13:02:32] [Server thread/INFO]: [SetSpawn] Enabled!
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.2.3.1
[13:02:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [3.2.3.1]
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] === ENABLE START ===
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Plugin Version V3.2.3.1
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of 4 price items
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] /home/tcagame_svc3912/simoneg/3912/plugins/zAuctionHouseV3/blacklistplayers.json loaded successfully !
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded config.yml
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of 3 tax items
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded 4 blacklist items
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded 0 whitelist items
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Examples category with 4 materials
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Blocks category with 1060 materials
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Potions category with 17 materials
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Tools category with 20 materials
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Weapons category with 13 materials
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading 3 inventories
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading 0 commands
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Load SQL...
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/patterns/decoration.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/patterns/pagination.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/patterns/back.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/patterns/auction.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/buying.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/removeconfirm.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/buyconfirm.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/categories.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/search.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/sellshow.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/economy.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/auction.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/expire.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/sell.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/show.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/category.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/adminremove.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/buyconfirminventory.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/items.yml loaded successfully !
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Register VAULT economy with name vault
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Register ProtocolLib implementation
[13:02:32] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] === ENABLE DONE (753ms) ===
[13:02:32] [Server thread/INFO]: [WorldBorderHQ] Enabling WorldBorderHQ v2.1.5
[13:02:32] [Server thread/INFO]: [WorldBorderHQ] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[13:02:32] [Server thread/INFO]: [WorldBorderHQ] [CONFIG] Border-checking timed task started.
[13:02:32] [Server thread/INFO]: [WorldBorderHQ] [CONFIG] World "MundoPvP" has border radius 5000 at X: 0.0 Z: 0.0
[13:02:32] [Server thread/INFO]: [WorldBorderHQ] [CONFIG] World "Mundo" has border radius 5000 at X: 0.0 Z: 0.0
[13:02:32] [Server thread/INFO]: [WorldBorderHQ] [CONFIG] World "Mundo2" has border radius 5000 at X: -240.0 Z: -224.0
[13:02:32] [Server thread/INFO]: [WorldBorderHQ] For reference, the main world's spawn location is at X: 0.0 Y: 104.0 Z: 32.0
[13:02:32] [Server thread/INFO]: [AlonsoJoin] Enabling AlonsoJoin v0.2-BETA
[13:02:32] [Server thread/INFO]: [AlonsoJoin] Max health Attribute check found. Using it..
[13:02:32] [Server thread/INFO]: [AlonsoJoin] Inventory title with support for more than 32 characters. Skipping..
[13:02:32] [Server thread/INFO]: [AlonsoJoin] Hex colors are available! Ready for RGB..
[13:02:32] [Server thread/INFO]: [AlonsoJoin] Old constructor for HoverEvent found! Using it..
[13:02:32] [Server thread/INFO]: [AlonsoJoin] New sendTitle method found! Using it..
[13:02:32] [Server thread/INFO]: [AlonsoJoin] New setUnbreakable method found! Using it..
[13:02:32] [Server thread/INFO]: [AlonsoJoin] New isUnbreakable method found! Using it..
[13:02:32] [Server thread/INFO]:     _   _                     _     _       Running v0.2-BETA
[13:02:32] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___ _ | |___(_)_ _   Server Paper v1.21.4-226-a838a88 (MC: 1.21.4)
[13:02:32] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ || / _ \ | ' \  Discord for support: https://alonsoaliaga.com/discord
[13:02:32] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/\__/\___/_|_||_| Thanks for using my plugin ❤!
[13:02:32] [Server thread/INFO]:         Developed by AlonsoAliaga
[13:02:32] [Server thread/INFO]: 
[13:02:32] [Server thread/INFO]: ==============================================================================================
[13:02:32] [Server thread/INFO]: [AlonsoJoin] You are using a Paper fork (Paper), plugin should work fine!
[13:02:32] [Server thread/INFO]: [AlonsoJoin] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[13:02:32] [Server thread/INFO]: ==============================================================================================
[13:02:32] [Server thread/INFO]: 
[13:02:33] [Server thread/INFO]: [AlonsoJoin] BungeeCord action bar available. Hooking..
[13:02:33] [Server thread/INFO]: [AlonsoJoin] ProtocolLib found! Checking..
[13:02:33] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Successfully loaded 5 placeholders for exceptions feature.
[13:02:33] [Server thread/INFO]: [AlonsoJoin] PlaceholderAPI is required for this feature to work. If it's not installed it will be ignored.
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Successfully loaded 1 books!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] AvatarMessage format 'owner' has been loaded successfully!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] AvatarMessage format 'default' has been loaded successfully!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Successfully loaded 2 AvatarMessage formats!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Format 'owners' doesn't have Messages section. Format will not send quit messages..
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Successfully loaded 2 effects for fireworks!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Loaded '5' join actions in 'owners' format!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Loaded '0' quit actions in 'owners' format!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Format 'owners' has been loaded successfully!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Format 'vip' doesn't have Messages section. Format will not send quit messages..
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Loaded '1' join actions in 'vip' format!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Loaded '0' quit actions in 'vip' format!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Format 'vip' has been loaded successfully!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Format 'nonranked' doesn't have Messages section. Format will not send join messages..
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Format 'nonranked' doesn't have Messages section. Format will not send quit messages..
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Successfully loaded 2 effects for fireworks!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Loaded '4' join actions in 'nonranked' format!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Loaded '0' quit actions in 'nonranked' format!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Format 'nonranked' has been loaded successfully!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Successfully loaded 3 join formats!
[13:02:33] [Server thread/INFO]: [AlonsoJoin] PlaceholderAPI found! Hooking..
[13:02:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsojoin [0.2-BETA]
[13:02:33] [Server thread/INFO]: [AlonsoJoin] Bungee messaging system is allowed in this server. Enabling..
[13:02:33] [Server thread/INFO]: [ServersNPC] Enabling ServersNPC v5.0
[13:02:33] [Server thread/INFO]: [AutomaticBroadcast] Enabling AutomaticBroadcast v1.9.0
[13:02:33] [Server thread/INFO]:    _____  _____
[13:02:33] [Server thread/INFO]:   |  _  || __  |  AutomaticBroadcast
[13:02:33] [Server thread/INFO]:   |     || __ -|    Version 1.9.0
[13:02:33] [Server thread/INFO]:   |__|__||_____|      by Pandaaa
[13:02:33] [Server thread/INFO]: 
[13:02:33] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.3
[13:02:34] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.3]  Enabled - By Rigby and fernferret
[13:02:34] [Server thread/INFO]: [DayNightPvP] Enabling DayNightPvP v1.2.9.0
[13:02:34] [Server thread/INFO]:     _     _
[13:02:34] [Server thread/INFO]:    | \|\||_)   DayNightPvP v1.2.9.0
[13:02:34] [Server thread/INFO]:    |_/| ||         by needkg
[13:02:34] [Server thread/INFO]: 
[13:02:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: dnp [GENERIC]
[13:02:34] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.6
[13:02:36] [Server thread/INFO]: EZColors »  Successfully downloaded 12 languages from the cloud!
[13:02:36] [Server thread/INFO]: EZColors »  Loading EZColors v2.2.6!
[13:02:36] [Server thread/INFO]: EZColors »  Found a compatible version. Hooking into V1_21_R1!
[13:02:36] [Server thread/INFO]: EZColors »  Using HIGHEST as the Chat Listener.
[13:02:36] [Server thread/INFO]: EZColors »  Found PlaceholderAPI. Loading hook!
[13:02:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ezcolors [1.0.0]
[13:02:36] [Server thread/INFO]: EZColors »  Successfully Loaded EZColors v2.2.6 in 2598ms!
[13:02:36] [Server thread/INFO]: [RecyclerPlus] Enabling RecyclerPlus v1.4.0
[13:02:36] [Server thread/INFO]: [RecyclerPlus] [STDOUT]                                 
[13:02:36] [Server thread/WARN]: Nag author(s): '[]' of 'RecyclerPlus v1.4.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[13:02:36] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[13:02:36] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[13:02:36] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'RecyclerPlus' to create a bStats instance!
[13:02:36] [Server thread/INFO]: [RecyclerPlus] Success load custom items.
[13:02:36] [Server thread/INFO]: [UltraRepair] Enabling UltraRepair v4.2.4
[13:02:37] [Server thread/INFO]: 

 ____ ___  __________ 
|    |   \ \______   \
|    |   /  |       _/
|    |  /   |    |   \
|______/    |____|_  /
                   \/ 

[13:02:37] [Server thread/INFO]: [UltraRepair] Loading configuration files...
[13:02:37] [Server thread/INFO]: [UltraRepair] Initializing base settings...
[13:02:37] [Server thread/INFO]: [UltraRepair] Checking economy integration...
[13:02:37] [Server thread/INFO]: [UltraRepair] Loading repair manager...
[13:02:37] [Server thread/INFO]: [UltraRepair] Registering commands...
[13:02:37] [Server thread/WARN]: [UltraRepair] "UltraRepair v4.2.4" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void dev.demeng.ultrarepair.shaded.pluginbase.commands.bukkit.brigadier.PaperCommodore$CommandRegisterListener.onCommandRegistered(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<?>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [Demeng].
[13:02:38] [Server thread/INFO]: [UltraRepair] Registering listeners...
[13:02:38] [Server thread/INFO]: [UltraRepair] Loading metrics...
[13:02:38] [Server thread/INFO]: [UltraRepair] Checking for updates...
[13:02:38] [Server thread/INFO]: [UltraRepair] UltraRepair v4.2.4 by Demeng has been enabled.
[13:02:38] [Server thread/INFO]: [eGlow] Enabling eGlow v3.3.9
[13:02:38] [Server thread/INFO]: [eGlow]: Loading main config.
[13:02:38] [Server thread/INFO]: [eGlow]: Loading messages config.
[13:02:38] [Server thread/INFO]: [eGlow]: Loading customeffects config.
[13:02:38] [Server thread/INFO]: eGlow Successfully loaded Playerdata database.
[13:02:38] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.8.0.0
[13:02:38] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
[13:02:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: imageframe [1.0.0]
[13:02:48] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[13:02:48] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.9-RELEASE-1
[13:02:48] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[13:02:48] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[13:02:48] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[13:02:48] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[13:02:48] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[13:02:48] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[13:02:48] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Contributors: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Displays. Attempting to initialize packet factory...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[13:02:49] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[13:02:49] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Database upgrade script running... Current Database Version: 19
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Used 21ms to fetch 48 shops from database.
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Used 133ms to load 0 shops into memory (48 shops will be loaded after chunks/world loaded).
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[13:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.9-RELEASE-1]
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[13:02:49] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (1098ms)
[13:02:49] [Server thread/INFO]: [sRandomRTP] Enabling sRandomRTP v2.9
[13:02:49] [Server thread/INFO]: 
[13:02:49] [Server thread/INFO]: [sRandomRTP] - >==========================================<
[13:02:49] [Server thread/INFO]: 
[13:02:49] [Server thread/INFO]: [sRandomRTP] - Plugin initialization started...
[13:02:49] [Server thread/INFO]: [sRandomRTP] - Version check...
[13:02:49] [Server thread/INFO]: [sRandomRTP] - Checking installed PlaceHolderAPI...
[13:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sRandomRTP [2.9]
[13:02:49] [Server thread/INFO]: [sRandomRTP] - Loading data...
[13:02:49] [Server thread/INFO]: [sRandomRTP] - Loading events...
[13:02:49] [Server thread/INFO]: [sRandomRTP] - Creating files...
[13:02:49] [Server thread/INFO]: [sRandomRTP] - Updating files...
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле ar_sa.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле custom_messages.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле de_de.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле en_us.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле es_es.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле fr_fr.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле it_it.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле ja_jp.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле ko_kr.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле pl_pl.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле pt_br.yml:
[13:02:49] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле uk_ua.yml:
[13:02:50] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле vi_vn.yml:
[13:02:50] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле zh_cn.yml:
[13:02:50] [Server thread/INFO]: В файле ru_ru.yml есть следующие ключи, которых нет в файле tr_tr.yml:
[13:02:50] [Server thread/INFO]: [sRandomRTP] - Loading commands...
[13:02:50] [Server thread/INFO]: [sRandomRTP] - Running tasks...
[13:02:50] [Server thread/INFO]: [sRandomRTP] - Sending anonymous statistics...
[13:02:50] [Server thread/INFO]: 
[13:02:50] [Server thread/INFO]: [sRandomRTP] - Plugin ativado! 139 ms
[13:02:50] [Server thread/INFO]: [sRandomRTP] - Versão do servidor: 1.21.4-226-a838a88 (MC: 1.21.4)
[13:02:50] [Server thread/INFO]: [sRandomRTP] - Versão do Java: 21.0.6 | Host: Linux 6.8.0-1021-aws (amd64)
[13:02:50] [Server thread/INFO]: 
[13:02:50] [Server thread/INFO]: [sRandomRTP] - >==========================================<
[13:02:50] [Server thread/INFO]: 
[13:02:50] [Server thread/INFO]: [JoinEventsPlus] Enabling JoinEventsPlus v3.2.0*
[13:02:50] [Server thread/INFO]: [AutoPickup] Enabling AutoPickup v1.4.6-SNAPSHOT
[13:02:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: autopickup [1.0.0]
[13:02:55] [Server thread/INFO]: [AutoPickup] Checking for new verison...
[13:02:55] [Server thread/INFO]: [AutoPickup] Plugin is up-to-date.
[13:02:55] [Server thread/INFO]: [LuzN] Enabling LuzN v1.1*
[13:02:55] [Server thread/INFO]: [LuzN] Plugin carregado.
[13:02:55] [Server thread/INFO]: [CSL] Enabling ChunkSpawnerLimiter v4.3.12
[13:02:55] [Server thread/INFO]: [CSL] [ACF] Enabled Asynchronous Tab Completion Support!
[13:02:55] [Server thread/INFO]: [CSL] [ACF] Enabled Brigadier Support!
[13:02:55] [Server thread/WARN]: [CSL] "ChunkSpawnerLimiter v4.3.12" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void com.cyprias.chunkspawnerlimiter.libs.acf.PaperBrigadierManager.onCommandRegister(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<com.destroystokyo.paper.brigadier.BukkitBrigadierCommandSource>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [Cyprias, sarhatabaot].
[13:02:56] [Server thread/INFO]: [spark] Starting background profiler...
[13:02:56] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:02:56] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[13:02:56] [Server thread/INFO]: [Geyser-Spigot] 
[13:02:56] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.6.2-b792 (git-master-8cf6581)
[13:02:56] [Server thread/INFO]: [Geyser-Spigot] 
[13:02:56] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[13:03:01] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 25525
[13:03:01] [Server thread/INFO]: [Geyser-Spigot] Done (4.91s)! Run /geyser help for help!
[13:03:01] [Server thread/INFO]: Done preparing level "world" (103.738s)
[13:03:01] [Server thread/INFO]: Running delayed init tasks
[13:03:01] [Craft Scheduler Thread - 4 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[13:03:01] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Fetching version information...
[13:03:01] [Craft Scheduler Thread - 15 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[13:03:01] [Craft Scheduler Thread - 29 - zAuctionHouseV3/INFO]: [zAuctionHouseV3] The database connection is valid ! (192.168.10.10)
[13:03:02] [Craft Scheduler Thread - 34 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[13:03:02] [Craft Scheduler Thread - 11 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[13:03:02] [Craft Scheduler Thread - 36 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 0 ImageMaps!
[13:03:02] [Craft Scheduler Thread - 11 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[13:03:02] [Craft Scheduler Thread - 29 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading items
[13:03:02] [Craft Scheduler Thread - 29 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading transactions
[13:03:02] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[13:03:02] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[13:03:02] [pool-151-thread-2/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of transactions successfully completed.
[13:03:02] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[13:03:02] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[13:03:02] [Craft Scheduler Thread - 38 - AlonsoJoin/INFO]: [AlonsoJoin] Checking for updates...
[13:03:02] [Craft Scheduler Thread - 38 - AlonsoJoin/INFO]: [AlonsoJoin] Plugin up-to-date! You have the latest version!
[13:03:02] [pool-151-thread-1/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of items successfully completed.
[13:03:02] [Craft Scheduler Thread - 9 - Essentials/WARN]: [Essentials] You're 1 EssentialsX dev build(s) out of date!
[13:03:02] [Craft Scheduler Thread - 9 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[13:03:02] [Server thread/INFO]: [StormTutorAI] Oba! Sua licença foi validada com sucesso.
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] Loaded 92 items
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] Used 27/6608 font_images
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 4 categories
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url: https://download.mc-packs.net/pack/07e5b31974b980ff2fddafb34af8cbb591fcf779.zip
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] [Pack] LastEdit: 2025-04-19_22-07
[13:03:03] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] [Pack] URL is valid (external). URL: https://download.mc-packs.net/pack/07e5b31974b980ff2fddafb34af8cbb591fcf779.zip
[13:03:04] [Craft Scheduler Thread - 13 - EpicHomes/INFO]: [DivineHomes] *-------------------------------------------*
[13:03:04] [Craft Scheduler Thread - 13 - EpicHomes/INFO]: [DivineHomes] O plugin está atualizado!
[13:03:04] [Craft Scheduler Thread - 13 - EpicHomes/INFO]: [DivineHomes] *-------------------------------------------*
[13:03:04] [Craft Scheduler Thread - 28 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[13:03:05] [Server thread/INFO]: [StormTutorAI] [AI-Client] client definido para OpenAI.
[13:03:06] [Craft Scheduler Thread - 21 - RecyclerPlus/INFO]: [RecyclerPlus] There is a new update available https://www.spigotmc.org/resources/102495
[13:03:06] [Craft Scheduler Thread - 30 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] New update available. Your version: 3.2.3.1, latest version: 3.2.3.3
[13:03:06] [Craft Scheduler Thread - 30 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] Download plugin here: https://groupez.dev/resources/1
[13:03:07] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder]  
[13:03:07] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder] UPDATE available!
[13:03:07] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder] Current version: 4.0.9
[13:03:07] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder] Online version: 4.0.9-hotfix-1
[13:03:07] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder]  
[13:03:07] [Craft Scheduler Thread - 14 - zMenu/INFO]: [zMenu v1.0.3.8] New update available. Your version: 1.0.3.8, latest version: 1.0.4.0
[13:03:07] [Craft Scheduler Thread - 14 - zMenu/INFO]: [zMenu v1.0.3.8] Download plugin here: https://groupez.dev/resources/253
[13:03:08] [Craft Scheduler Thread - 12 - PlayerWarps/INFO]: [PlayerWarps] You are running the latest release (3.3.2).
[13:03:09] [Craft Scheduler Thread - 18 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: LoneDev (88296)
[13:03:14] [Server thread/INFO]: [StormTutorAI] [SQLite] conexão com o SQLite efetuada com sucesso, criando tabelas...
[13:03:14] [Server thread/INFO]: [StormTutorAI] [Comandos] comandos carregados com sucesso.
[13:03:14] [Server thread/INFO]: [StormTutorAI] plugin iniciado com sucesso.
[13:03:14] [Server thread/INFO]: [StormCargoDiscord] Oba! Sua licença foi validada com sucesso.
[13:03:14] [Server thread/INFO]: [StormCargoDiscord] Utilizando a versão craftbukkit.
[13:03:14] [Server thread/INFO]: [StormCargoDiscord] Conexão com SQLite realizada com sucesso.
[13:03:14] [Server thread/INFO]: [StormCargoDiscord] Iniciando o BOT do Discord.
[13:03:16] [Server thread/INFO]: [com.stormplugins.jda.api.JDA] Login Successful!
[13:03:16] [JDA MainWS-ReadThread/INFO]: [com.stormplugins.jda.internal.requests.WebSocketClient] Connected to WebSocket
[13:03:17] [JDA MainWS-ReadThread/INFO]: [com.stormplugins.jda.api.JDA] Finished Loading!
[13:03:17] [Server thread/INFO]: [StormCargoDiscord] O BOT do Discord foi iniciado com sucesso.
[13:03:17] [Server thread/INFO]: [StormCargoDiscord] O cargo com o id '1244504111831973950D' não foi encontrado no servidor do Discord.
[13:03:17] [Server thread/INFO]: [StormCargoDiscord] Carregado 7 cargos.
[13:03:17] [Server thread/INFO]: [StormCargoDiscord] O plugin foi iniciado (2788ms).
[13:03:17] [Server thread/INFO]: [SimpleClans] Registered WorldGuardProvider successfully
[13:03:17] [Server thread/WARN]: [SimpleClans] Error registering provider WorldGuard6Provider
[13:03:17] [Server thread/INFO]: [SimpleClans] Registered GriefPreventionProvider successfully
[13:03:17] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:03:17] [Server thread/INFO]: [XLTournaments] Registered external objective NUVOTIFIER_VOTES using Votifier plugin.
[13:03:17] [Server thread/INFO]: [XLTournaments] Registered external objective PLACEHOLDERAPI using PlaceholderAPI plugin.
[13:03:17] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_RECEIVE using Essentials plugin.
[13:03:17] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_SPEND using Essentials plugin.
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 14 tournament objectives (PLACEHOLDERAPI, POTION_BREW, BLOCK_BREAK, PLAYER_CONSUME, ODAILYQUESTS_COMPLETE, NUVOTIFIER_VOTES, PLAYTIME, PLAYER_FISH, ESSENTIALS_BALANCE_RECEIVE, MOB_KILLS, ITEM_CRAFT, BLOCK_PLACE, PLAYER_KILLS, ESSENTIALS_BALANCE_SPEND).
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 'consuma' tournament.
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 'craft' tournament.
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 'player' tournament.
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 'online' tournament.
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 'mobs' tournament.
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 'pesca' tournament.
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 'colocar' tournament.
[13:03:17] [Server thread/INFO]: [XLTournaments] Loaded 'quebrar' tournament.
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: xltournaments [3.17.12]
[13:03:17] [Server thread/INFO]: [DayNightPvP] It's day in 'world'
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eglow [3.3.9]
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: pointsapi [1.0.2]
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[13:03:17] [Server thread/INFO]: 8 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[13:03:17] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] Plugin (Vault e Economy) encontrado. Realizando Hook...
[13:03:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ytags [2.2.5]
[13:03:17] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] PlaceholderAPI encontrado, métodos carregados.
[13:03:17] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] OpeNChat encontrado, métodos inicializados.
[13:03:17] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:17] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 0 objetos em 0ms
[13:03:17] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] 11 tags carregada(s): [Arcanjo, Beta, Chamas, Colossal, DChamas, Divindade, Fortuna, Martelo, Pascoa, Tralalero, Universo]
[13:03:17] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTags] Pacotes carregados.
[13:03:18] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: yreports [1.1.6]
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReports] PlaceholderAPI encontrado, métodos inicializados.
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReports] 4 motivos carregado(s): [1, 2, 3, 4]
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReports] 3 punicoes carregado(s): [1, 2, 3]
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yReports] 1 embed carregado(s): [newReport]
[13:03:18] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:18] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 0 objetos em 0ms
[13:03:18] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 5 objetos em 12ms
[13:03:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ytickets [1.2.1]
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTickets] PlaceholderAPI encontrado, métodos inicializados.
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yTickets] 2 embed carregado(s): [newMessage, newTicket]
[13:03:18] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:18] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 0 objetos em 0ms
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yRecompensasDiarias] Enums carregadas.
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yRecompensasDiarias] 3 reward(s) carregado(s): [reward1, reward2, reward3]
[13:03:18] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yRecompensasDiarias] 2 daily_reward(s) carregado(s): [daily_reward2, daily_reward1]
[13:03:18] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:19] [Server thread/INFO]: [INFO] [yPlugins] Carregado 9 objetos em 2ms
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLogger] OpeNChat encontrado.
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLogger] Enums carregadas.
[13:03:19] [Server thread/WARN]: [yPlugins] Task #25 for yPlugins v3.4.1 generated an exception
java.lang.ArrayIndexOutOfBoundsException: Index 0 out of bounds for length 0
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1031) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1021) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at com.ystoreplugins.yreinicio.Main.lambda$null$0(Main.java:92) ~[?:?]
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?]
    at com.ystoreplugins.yreinicio.Main.lambda$register$1(Main.java:92) ~[?:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:03:19] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:19] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 0 objetos em 0ms
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yStaffLogin] 1 webhooks carregadas: [staff]
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yStaffLogin] 1 embed carregado(s): [verificacao]
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yStaffLogin] Hookado com o nLogin.
[13:03:19] [Server thread/ERROR]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Há um erro na tua categorias/padrao.yml
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] 1 categoria(s) carregada(s): [Pascoa.yml]
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Plugin (Vault e Economia) encontrados. Realizando Hook...
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Hookado com o WorldGuard 7
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yFragmentos] Fragmentos carregados.
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCrates] 5 crate(s) carregada(s): [avancada.yml, basica.yml, celestial.yml, mitica.yml, vote.yml]
[13:03:19] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCrates] 91 recompensa(s) carregada(s)
[13:03:20] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:20] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 0 objetos em 1ms
[13:03:20] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:20] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 0 objetos em 0ms
[13:03:20] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 457 objetos em 11ms
[13:03:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ycorreio [1.3.1]
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCorreio] PlaceholderAPI encontrado, métodos inicializados.
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCorreio] 3 recompensas carregada(s): [Reco1, Reco2, Reco3]
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCorreio] 3 grupos carregado(s): [gp1]
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yCorreio] 3 grupos carregado(s): [cat1]
[13:03:20] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:20] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 737 objetos em 16ms
[13:03:20] [Server thread/INFO]: [INFO] [yPlugins] Carregado 4 objetos em 27ms
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] Plugin (Vault e Economia) encontrados. Realizando Hook...
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] PlaceholderAPI encontrado, métodos inicializados.
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] Enums carregadas.
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] 3 reward(s) carregado(s): [reward1, reward2, reward3]
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] 1 economias carregada(s): [money]
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] 2 arena(s) carregado(s): [p4dima, arena]
[13:03:20] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yArenas] 2 ranks carregado(s): [iron, bronze]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] 3 tipo(s) carregado(s): [guerra.yml, mineguerra.yml, triobatle.yml]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] 1 embed carregado(s): [evento_glad]
[13:03:21] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:21] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 0 objetos em 0ms
[13:03:21] [Server thread/INFO]: [INFO] [DESCONHECIDO] integração realizada com o SimpleClans.
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] Plugin (Vault e Economia) encontrado. Realizando Hook...
[13:03:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: yguerra [2.8.2]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] PlaceholderAPI encontrado, métodos inicializados.
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] Legendchat encontrado, métodos inicializados.
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] 3 tipo(s) carregado(s): [guerra.yml, mineguerra.yml, triobatle.yml]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yGuerra] 1 embed carregado(s): [evento_glad]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yPlotCore] Hookado com o GriefPrevention
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yPlotCore] Hookado com o mcMMO 2
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 8 eventos-chat(s) carregado(s): [fastclick, first, jackpot, lottery, math, phrase, quiz, unscramble]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 2 eventos-other(s) carregado(s): [fastcraft, voting]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 16 eventos-in-person(s) carregado(s): [dropper, dwarfandgiant, fight, frog, hotpotato, maze, minefield, onechamber, paintball, parkour, race, restone, spleef, splegg, sumo, trafficlights]
[13:03:21] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:21] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 0 objetos em 0ms
[13:03:21] [Server thread/INFO]: [INFO] [yPlugins] Carregado 26 objetos em 8ms
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] Plugin (Vault e Economia) encontrados. Realizando Hook...
[13:03:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: yeventos [2.3.1]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] PlaceholderAPI encontrado, métodos inicializados.
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] nChat encontrado.
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] Enums carregadas.
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 1 reward(s) carregado(s): [reward1]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 1 economias carregada(s): [points]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 1 embed carregado(s): [jackpot]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 8 eventos-chat(s) carregado(s): [fastclick, first, jackpot, lottery, math, phrase, quiz, unscramble]
[13:03:21] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 2 eventos-other(s) carregado(s): [fastcraft, voting]
[13:03:22] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yEventos] 16 eventos-in-person(s) carregado(s): [dropper, dwarfandgiant, fight, frog, hotpotato, maze, minefield, onechamber, paintball, parkour, race, restone, spleef, splegg, sumo, trafficlights]
[13:03:22] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] 6 categoria(s) carregada(s): [minions.yml, padrao.yml, money.yml, brilho.yml, chaves.yml, passe.yml]
[13:03:22] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] 66 iten(s) carregado(s)
[13:03:22] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] Plugin (Vault e Economia) encontrados. Realizando Hook...
[13:03:22] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] Descontos carregados.
[13:03:22] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] Bonus carregados.
[13:03:22] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yShop] 1 economias carregada(s): [money]
[13:03:22] [Server thread/INFO]: [yPlugins] Citizens encontrado.
[13:03:22] [Server thread/INFO]: [yPlugins] DecentHolograms encontrado.
[13:03:22] [Server thread/INFO]: [yEconomy] conexão com sqlite inicializada com sucesso
[13:03:23] [Server thread/INFO]: [org.ehcache.core.EhcacheManager] Cache 'player-cache' created in EhcacheManager.
[13:03:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: yeconomy [1.4.8]
[13:03:23] [Server thread/INFO]: [yEconomy] PlaceholderAPI encontrado, métodos inicializados.
[13:03:23] [Server thread/INFO]: [yEconomy] OpeNChat encontrado, métodos inicializados.
[13:03:23] [Server thread/INFO]: [Citizens] Loaded 9 NPCs.
[13:03:23] [Server thread/WARN]: [LeafX1] Task #6213 for LeafX1 vbeta-1.0.8 generated an exception
java.lang.NullPointerException: Cannot invoke "com.leafplugins.plugins.resources.org.simpleyaml.configuration.ConfigurationSection.getValues(boolean)" because the return value of "com.leafplugins.plugins.resources.org.simpleyaml.configuration.ConfigurationSection.getConfigurationSection(String)" is null
    at com.leafplugins.x1.platform.bukkit.manager.ArenaManager.lambda$load$0(ArenaManager.java:60) ~[?:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:03:23] [Server thread/WARN]: [LeafX1] Task #6214 for LeafX1 vbeta-1.0.8 generated an exception
java.lang.NullPointerException: Cannot invoke "com.leafplugins.plugins.resources.org.simpleyaml.configuration.ConfigurationSection.getValues(boolean)" because the return value of "com.leafplugins.plugins.resources.org.simpleyaml.configuration.ConfigurationSection.getConfigurationSection(String)" is null
    at com.leafplugins.x1.platform.bukkit.manager.ArenaManager.lambda$load$0(ArenaManager.java:60) ~[?:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-226-a838a88]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:03:23] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: yEconomy
[13:03:23] [Server thread/WARN]: [QuickShop-Hikari] QuickShop detected that no tax account exists and will try to create one. If you see any errors, please change the tax-account name in the config.yml to that of the Server owner.
[13:03:23] [Server thread/WARN]: [QuickShop-Hikari] Cannot create tax-account, please change the tax-account name in the config.yml to that of the server owner
[13:03:23] [Server thread/WARN]: [QuickShop-Hikari] Player for the Tax-account has never played on this server before and we couldn't create an account. This may cause server lag or economy errors, therefore changing the name is recommended. You may ignore this warning if it doesn't cause any issues.
[13:03:23] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[13:03:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[13:03:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[13:03:23] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
[13:03:23] [Server thread/INFO]: [ItemsAdder] Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
[13:03:23] [Server thread/INFO]: Done (262.888s)! For help, type "help"
[13:03:23] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 21970ms or 439 ticks behind
[13:03:23] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] Checking for Updates ... 
[13:03:23] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] No new version available
[13:03:24] [Server thread/INFO]: [INFO] [DESCONHECIDO] integração realizada com o SimpleClans.
[13:03:24] [Server thread/INFO]: [INFO] [DESCONHECIDO] conexão com sqlite inicializada com sucesso
[13:03:24] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 757 objetos em 36ms
[13:03:24] [Server thread/INFO]: [INFO] [DESCONHECIDO] Carregado 25 objetos em 60ms
[13:03:24] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] Plugin (Vault e Economia) encontrados. Realizando Hook...
[13:03:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: yleagues [1.0.3]
[13:03:24] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] PlaceholderAPI encontrado, métodos inicializados.
[13:03:24] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] nChat encontrado.
[13:03:24] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] OpeNChat encontrado, métodos inicializados.
[13:03:24] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Lag Notice - Slow Economy Response - Request took over {0}ms!
[13:03:24] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] Enums carregadas.
[13:03:24] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] 1 economias carregada(s): [money]
[13:03:24] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] 3 reward(s) carregado(s): [reward1, reward2, reward3]
[13:03:25] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] 6 rank(s) carregado(s): [0, 1, 2, 3, 4, 5]
[13:03:25] [Server thread/INFO]: [br.com.ystoreplugins.platform.WrappedBukkitPlugin] [yLeagues] 2 liga(s) carregado(s): [caostri, caosmensal]
[13:03:25] [Server thread/ERROR]: [yPlugins] Failed to register events for class com.ystoreplugins.yleagues.listener.hook.punish.StormPunishListener because com/storm/punish/spigot/events/PunishSpigotEvent does not exist.
[13:03:25] [Server thread/ERROR]: [yPlugins] Failed to register events for class com.ystoreplugins.yleagues.listener.hook.punish.YPunishListener because com/ystoreplugins/ypunish/api/event/PunishApprovedEvent does not exist.
[13:03:25] [Server thread/INFO]: [WildChests]  - Using EconomyShopGUI as PricesProvider.
[13:03:26] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Lag Notice - Slow Economy Response - Request took over {0}ms!
[13:03:26] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Lag Notice - Slow Economy Response - Request took over {0}ms!
[13:03:26] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Lag Notice - Slow Economy Response - Request took over {0}ms!
[13:03:26] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Lag Notice - Slow Economy Response - Request took over {0}ms!
[13:03:27] [Server thread/INFO]: [WildChests] Trying to connect to SQLite database...
[13:03:27] [Server thread/INFO]: [WildChests] Successfully established connection with SQLite database!
[13:03:27] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Lag Notice - Slow Economy Response - Request took over {0}ms!
[13:03:28] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Lag Notice - Slow Economy Response - Request took over {0}ms!
[13:03:29] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Lag Notice - Slow Economy Response - Request took over {0}ms!
[13:03:32] [Craft Scheduler Thread - 10 - AlonsoLib/INFO]: [AlonsoLib] Checking for updates...
[13:03:32] [Server thread/INFO]: [nChat] [Vault] Chat provider detected: LuckPerms
[13:03:32] [Server thread/INFO]: [nChat] [Vault] Economy provider detected: yEconomy
[13:03:32] [Server thread/INFO]: [nChat] [Vault] Permission provider detected: LuckPerms
[13:03:33] [Craft Scheduler Thread - 21 - EpicHomes/INFO]: [DivineHomes] A tarefa de salvamento automático foi iniciada.
[13:03:33] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[13:03:33] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[13:03:33] [Server thread/INFO]: [AlonsoJoin] SkinsRestorer PlaceholderAPI expansion found but 'test' wasn't passed (%skinsrestorer_test%). AvatarMessage might not work correctly..
[13:03:33] [Craft Scheduler Thread - 22 - SpawnerLegacy/INFO]: [SpawnerLegacy ] New version is available: v1.3.7! To download visit: https://www.spigotmc.org/resources/spawnerlegacy.116287/
[13:03:33] [Craft Scheduler Thread - 18 - EpicHomes/INFO]: [DivineHomes] Dados do mapa de usuários salvos no disco!
[13:03:34] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[13:03:34] [Craft Scheduler Thread - 15 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.18.4
[13:03:35] [pool-36-thread-3/INFO]: [nAntiBot] [Captcha] Captchas generated successfully. (RAM usage ≃ 8 MB [static only], total = 500, protocol count = 46, threads = 3, took 144.43s)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF] java.lang.NoSuchFieldException: locale
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at SimpleClans.jar//net.sacredlabyrinth.phaed.simpleclans.acf.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:324)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at java.base/java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1116)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at SimpleClans.jar//net.sacredlabyrinth.phaed.simpleclans.acf.BukkitCommandManager.lambda$new$1(BukkitCommandManager.java:135)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at SimpleClans.jar//net.sacredlabyrinth.phaed.simpleclans.acf.ACFPaperScheduler.lambda$createLocaleTask$1(ACFPaperScheduler.java:56)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at io.papermc.paper.threadedregions.scheduler.FoliaAsyncScheduler$AsyncScheduledTask.run(FoliaAsyncScheduler.java:217)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[13:03:47] [Folia Async Scheduler Thread #5/INFO]: [SimpleClans] [ACF]     at java.base/java.lang.Thread.run(Thread.java:1583)
[13:03:48] [Server thread/INFO]: [VotingPlugin] Login: Emanu3lOP (cb983296-810f-32b1-a98b-177ffd6dc8f3)
[13:03:48] [Server thread/WARN]: [ItemsAdder] 'Emanu3lOP' is using a different protocol version of the game (767) than the server (769).
[13:03:48] [Server thread/WARN]: [ItemsAdder] This may cause gameplay and graphical issues. Consider to avoid multi-version servers.
[13:03:49] [Server thread/INFO]: Emanu3lOP[/191.223.58.135:60322] logged in with entity id 704 at ([Spawn]-607.512052141817, 50.0, -235.35679622518623)
[13:03:50] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2991ms or 59 ticks behind
[13:03:55] [Server thread/INFO]: [AlonsoJoin] SkinsRestorerAPI/SkinsRestorerProvider are not available or SkinsRestorer version is outdated! Join us on discord.
[13:04:01] [Folia Async Scheduler Thread #6/INFO]: [nLogin] O usuário Emanu3lOP se autenticou com sucesso.
[13:04:15] [epollEventLoopGroup-4-1/INFO]: [Geyser-Spigot] Player connected with username EmanuALT
[13:04:15] [localSession-7-2/INFO]: [Geyser-Spigot] EmanuALT (logged in as: EmanuALT) has connected to the Java server
[13:04:16] [Server thread/INFO]: [floodgate] Floodgate player logged in as .EmanuALT joined (UUID: 00000000-0000-0000-0009-01fc2f8961fd)
[13:04:16] [Server thread/INFO]: [VotingPlugin] Login: .EmanuALT (00000000-0000-0000-0009-01fc2f8961fd)
[13:04:16] [Folia Async Scheduler Thread #6/INFO]: [nLogin] O usuário .EmanuALT logou automaticamente (conta Bedrock)
[13:04:16] [Server thread/INFO]: .EmanuALT[/191.223.58.135:0] logged in with entity id 820 at ([Spawn]-607.5001, 50.0, -230.50131)
[13:04:33] [epollEventLoopGroup-4-2/INFO]: [Geyser-Spigot] Player connected with username L2012P
[13:04:33] [localSession-7-3/INFO]: [Geyser-Spigot] L2012P (logged in as: L2012P) has connected to the Java server
[13:04:34] [Server thread/INFO]: Disconnecting .L2012P (/201.21.155.187:0): You are not whitelisted on this server!
[13:04:34] [localSession-7-3/INFO]: [Geyser-Spigot] L2012P has disconnected from the Java server because of You are not whitelisted on this server!
[13:04:34] [Geyser Spigot connection thread-6-4/INFO]: [floodgate] Floodgate player logged in as .L2012P disconnected
[13:04:47] [Server thread/INFO]: [DayNightPvP] It's night in 'world'
[13:04:57] [Server thread/INFO]: Disconnecting nirus (/200.192.102.104:54123): You are not whitelisted on this server!
[13:04:59] [Server thread/INFO]: Disconnecting nirus (/200.192.102.104:53216): You are not whitelisted on this server!
[13:05:06] [Server thread/INFO]: [VotingPlugin] Login: Emanu3lOP (cb983296-810f-32b1-a98b-177ffd6dc8f3)
[13:05:06] [Folia Async Scheduler Thread #2/INFO]: [nLogin] O usuário Emanu3lOP logou automaticamente (sessão de login)
[13:05:06] [Server thread/WARN]: [ItemsAdder] 'Emanu3lOP' is using a different protocol version of the game (767) than the server (769).
[13:05:06] [Server thread/WARN]: [ItemsAdder] This may cause gameplay and graphical issues. Consider to avoid multi-version servers.
[13:05:06] [Server thread/INFO]: Emanu3lOP[/191.223.58.135:60337] logged in with entity id 1041 at ([Spawn]-606.0323387984131, 50.30570208353778, -232.1876584687493)
[13:05:23] [Server thread/INFO]: Disconnecting nirus (/200.192.102.104:53375): You are not whitelisted on this server!
[13:05:23] [Server thread/INFO]: Emanu3lOP issued server command: /mvtp eventos
[13:05:25] [localSession-7-2/INFO]: [Geyser-Spigot] EmanuALT has disconnected from the Java server because of Bedrock client disconnected
[13:05:25] [Geyser Spigot connection thread-6-3/INFO]: [floodgate] Floodgate player logged in as .EmanuALT disconnected
[13:05:36] [Server thread/INFO]: [VotingPlugin] Login: Emanu3lOP (cb983296-810f-32b1-a98b-177ffd6dc8f3)
[13:05:36] [Folia Async Scheduler Thread #5/INFO]: [nLogin] O usuário Emanu3lOP logou automaticamente (sessão de login)
[13:05:36] [Server thread/WARN]: [ItemsAdder] 'Emanu3lOP' is using a different protocol version of the game (767) than the server (769).
[13:05:36] [Server thread/WARN]: [ItemsAdder] This may cause gameplay and graphical issues. Consider to avoid multi-version servers.
[13:05:36] [Server thread/INFO]: Emanu3lOP[/191.223.58.135:60342] logged in with entity id 1187 at ([eventos]0.0, -60.0, 0.0)
[13:05:54] [Server thread/INFO]: [VotingPlugin] Login: Emanu3lOP (cb983296-810f-32b1-a98b-177ffd6dc8f3)
[13:05:54] [Server thread/WARN]: [ItemsAdder] 'Emanu3lOP' is using a different protocol version of the game (767) than the server (769).
[13:05:54] [Server thread/WARN]: [ItemsAdder] This may cause gameplay and graphical issues. Consider to avoid multi-version servers.
[13:05:54] [Folia Async Scheduler Thread #7/INFO]: [nLogin] O usuário Emanu3lOP logou automaticamente (sessão de login)
[13:05:54] [Server thread/INFO]: Emanu3lOP[/191.223.58.135:60350] logged in with entity id 1267 at ([Spawn]-607.5038695045171, 49.0, -240.54339557489482)
[13:06:04] [Server thread/INFO]: Emanu3lOP issued server command: /mvtp eventos
[13:06:05] [epollEventLoopGroup-4-3/INFO]: [Geyser-Spigot] Player connected with username EmanuALT
[13:06:05] [localSession-7-4/INFO]: [Geyser-Spigot] EmanuALT (logged in as: EmanuALT) has connected to the Java server
[13:06:06] [Server thread/INFO]: Disconnecting EmanuALT (/191.223.58.135:0): You are not whitelisted on this server!
[13:06:06] [localSession-7-4/INFO]: [Geyser-Spigot] EmanuALT has disconnected from the Java server because of You are not whitelisted on this server!
[13:06:11] [Server thread/INFO]: Disconnecting nirus (/200.192.102.104:52661): You are not whitelisted on this server!
[13:07:01] [Server thread/INFO]: [VotingPlugin] Login: Emanu3lOP (cb983296-810f-32b1-a98b-177ffd6dc8f3)
[13:07:01] [Folia Async Scheduler Thread #7/INFO]: [nLogin] O usuário Emanu3lOP logou automaticamente (sessão de login)
[13:07:01] [Server thread/WARN]: [ItemsAdder] 'Emanu3lOP' is using a different protocol version of the game (767) than the server (769).
[13:07:01] [Server thread/WARN]: [ItemsAdder] This may cause gameplay and graphical issues. Consider to avoid multi-version servers.
[13:07:01] [Server thread/INFO]: Emanu3lOP[/191.223.58.135:60366] logged in with entity id 1294 at ([eventos]0.0, -60.0, 5.405822919639355)
[13:07:32] [Server thread/INFO]: Emanu3lOP issued server command: /npc create Mundo1Spawn
[13:07:35] [Server thread/INFO]: Emanu3lOP issued server command: /znpcs
[13:07:39] [Server thread/INFO]: Emanu3lOP issued server command: /znpcs list
[13:07:41] [Server thread/INFO]: Emanu3lOP issued server command: /znpcs teleport 2
[13:07:42] [Server thread/INFO]: Emanu3lOP issued server command: /znpcs delete 2
[13:07:45] [Server thread/INFO]: Emanu3lOP issued server command: /npc create Mundo2Spawn
[13:07:54] [Server thread/INFO]: Emanu3lOP issued server command: /npc name