Paste #132822: DenizenMetaBot Auto-Repaste Of log From piggygames1205

Date: 2025/04/21 03:05:20 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


[10:55:48] [ServerMain/INFO]: [bootstrap] Running Java 23 (Java HotSpot(TM) 64-Bit Server VM 23.0.2+7-58; Oracle Corporation null) on Windows 11 10.0 (amd64)
[10:55:48] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.5-22-main@6c2b037 (2025-04-16T18:32:47Z) for Minecraft 1.21.5
[10:55:50] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[10:55:51] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins\WildLoaders-2025.1.jar'...
[10:55:52] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins\WildLoaders-2025.1.jar' in 638ms.
[10:55:53] [ServerMain/INFO]: [PluginInitializerManager] Initialized 45 plugins
[10:55:53] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - nightcore (2.7.5)
[10:55:53] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (44):
 - AltDetector (2.03), ArmorEquipEvent (1.7.6-SNAPSHOT), AxKoth (2.14.1), BetterRTP (3.6.13), BlueSlimeCore (2.9.6.431), Broadcast (2.3), ChatAdmin (1.0), Citizens (2.0.38-SNAPSHOT (build 3781)), ColoredAnvils (1.08), CombatLogX (11.5.0.0.1242), DecentHolograms (2.8.16), DiscordSRV (1.29.0), EXGM_WzMines (1.0-SNAPSHOT), ExcellentCrates (6.1.1), FNSEnchantments (1.0-SNAPSHOT), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1092;4af1b8b), Geyser-Spigot (2.6.2-SNAPSHOT), IllegalStack (2.9.12a), ItemEdit (3.7.0), LibsDisguises (11.0.5), LuckPerms (5.4.156), Multiverse-Core (4.3.14), NBTAPI (2.15.0), NoMercyEssentials (1.0.0), NoMercyHeadhunting (1.0-SNAPSHOT), NoMercyMCTeams (1.0), NoMercyShop (1.0.0), NoMercyStaff (1.0), NoMercyStoreIntegration (1.0-SNAPSHOT), OpenInv (5.1.9), PiggyBoss (1.0-SNAPSHOT), PlaceholderAPI (2.11.6), SimpleScore (3.12.5), TAB (5.0.7), Vault (1.7.3-b131), ViaBackwards (5.3.1-SNAPSHOT), ViaRewind (4.0.6), ViaVersion (5.3.1), VoidGen (2.2.1), VouchersPlus (1.1.8), WildLoaders (2025.1), WorldGuard (7.0.13+82fdc65), floodgate (2.2.4-SNAPSHOT (b116-0e3163c)), packetevents (2.8.0+0931f7c9e-SNAPSHOT)
[10:56:02] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:56:05] [ServerMain/INFO]: Loaded 1373 recipes
[10:56:05] [ServerMain/INFO]: Loaded 1484 advancements
[10:56:05] [Server thread/INFO]: Starting minecraft server version 1.21.5
[10:56:05] [Server thread/INFO]: Loading properties
[10:56:05] [Server thread/INFO]: This server is running Paper version 1.21.5-22-main@6c2b037 (2025-04-16T18:32:47Z) (Implementing API version 1.21.5-R0.1-SNAPSHOT)
[10:56:05] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[10:56:05] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:56:05] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:56:06] [Server thread/INFO]: [MoonriseCommon] Paper is using 4 worker threads, 1 I/O threads
[10:56:06] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[10:56:06] [Server thread/INFO]: Default game type: SURVIVAL
[10:56:06] [Server thread/INFO]: Generating keypair
[10:56:06] [Server thread/INFO]: Starting Minecraft server on 192.168.0.203:25565
[10:56:06] [Server thread/INFO]: Using default channel type
[10:56:06] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[10:56:06] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\ch\ethz\globis\phtree\phtree\2.8.2\phtree-2.8.2.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-platform-bukkit\4.3.4\adventure-platform-bukkit-4.3.4.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-platform-api\4.3.4\adventure-platform-api-4.3.4.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.4\adventure-text-serializer-bungeecord-4.3.4.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-platform-facet\4.3.4\adventure-platform-facet-4.3.4.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-platform-viaversion\4.3.4\adventure-platform-viaversion-4.3.4.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-minimessage\4.20.0\adventure-text-minimessage-4.20.0.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-api\4.20.0\adventure-api-4.20.0.jar
[10:56:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-key\4.20.0\adventure-key-4.20.0.jar
[10:56:07] [Server thread/INFO]: [nightcore] Server version detected as Paper 1.21.5. Using paper-bridge.
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[10:56:08] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\net\kyori\adventure-text-serializer-legacy\4.16.0\adventure-text-serializer-legacy-4.16.0.jar
[10:56:09] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:56:24] [Server thread/WARN]: Legacy plugin ColoredAnvils v1.08 does not specify an api-version.
[10:56:24] [Server thread/WARN]: Legacy plugin ChatAdmin v1.0 does not specify an api-version.
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loading 1 libraries... please wait
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\club\minnced\discord-webhooks\0.8.4\discord-webhooks-0.8.4.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\slf4j\slf4j-api\1.7.32\slf4j-api-1.7.32.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\com\squareup\okhttp3\okhttp\4.10.0\okhttp-4.10.0.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\com\squareup\okio\okio-jvm\3.0.0\okio-jvm-3.0.0.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\jetbrains\kotlin\kotlin-stdlib-jdk8\1.5.31\kotlin-stdlib-jdk8-1.5.31.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\jetbrains\kotlin\kotlin-stdlib-jdk7\1.5.31\kotlin-stdlib-jdk7-1.5.31.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\jetbrains\kotlin\kotlin-stdlib-common\1.5.31\kotlin-stdlib-common-1.5.31.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\jetbrains\kotlin\kotlin-stdlib\1.6.20\kotlin-stdlib-1.6.20.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\jetbrains\annotations\13.0\annotations-13.0.jar
[10:56:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library C:\Users\nomer\Desktop\mcsmanager\daemon\data\InstanceData\4734dc86e2f34b9fab70033148b23ccb\libraries\org\json\json\20230618\json-20230618.jar
[10:56:26] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.1
[10:56:26] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.1 is now loaded. Registering protocol transformers and injecting...
[10:56:26] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[10:56:26] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[10:56:26] [Server thread/INFO]: [ViaBackwards] Loading translations...
[10:56:26] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[10:56:27] [Server thread/INFO]: [ViaRewind] Registering protocols...
[10:56:27] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.156
[10:56:27] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[10:56:28] [Server thread/INFO]: [floodgate] Het duurde 725ms voordat Floodgate opstartte
[10:56:28] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.3.1-SNAPSHOT
[10:56:28] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[10:56:28] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.6.2-SNAPSHOT
[10:56:29] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[10:56:29] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[10:56:29] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.6
[10:56:29] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1092;4af1b8b
[10:56:30] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2205a9fb]
[10:56:30] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.8.0+0931f7c9e-SNAPSHOT
[10:56:31] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[10:56:31] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[10:56:31] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[10:56:31] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.5
[10:56:32] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.0
[10:56:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.5! Trying to find NMS support
[10:56:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R4' loaded!
[10:56:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[10:56:32] [Server thread/INFO]: [NoMercyEssentials] Loading server plugin NoMercyEssentials v1.0.0
[10:56:32] [Server thread/INFO]: [ArmorEquipEvent] Loading server plugin ArmorEquipEvent v1.7.6-SNAPSHOT
[10:56:32] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3781)
[10:56:32] [Server thread/INFO]: [NoMercyMCTeams] Loading server plugin NoMercyMCTeams v1.0
[10:56:32] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.5
[10:56:32] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[10:56:32] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.6.431
[10:56:32] [Server thread/INFO]: [WildLoaders] Loading server plugin WildLoaders v2025.1
[10:56:32] [Server thread/INFO]: [VouchersPlus] Loading server plugin VouchersPlus v1.1.8
[10:56:32] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.7
[10:56:32] [Server thread/INFO]: [NoMercyStoreIntegration] Loading server plugin NoMercyStoreIntegration v1.0-SNAPSHOT
[10:56:32] [Server thread/INFO]: [SimpleScore] Loading server plugin SimpleScore v3.12.5
[10:56:32] [Thread-8/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[10:56:32] [Server thread/INFO]: [PiggyBoss] Loading server plugin PiggyBoss v1.0-SNAPSHOT
[10:56:32] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v5.1.9
[10:56:32] [Server thread/INFO]: [NoMercyStaff] Loading server plugin NoMercyStaff v1.0
[10:56:32] [Server thread/INFO]: [NoMercyShop] Loading server plugin NoMercyShop v1.0.0
[10:56:32] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.7.0
[10:56:32] [Server thread/INFO]: [IllegalStack] Loading server plugin IllegalStack v2.9.12a
[10:56:32] [Server thread/INFO]: [NoMercyHeadhunting] Loading server plugin NoMercyHeadhunting v1.0-SNAPSHOT
[10:56:32] [Server thread/INFO]: [FNSEnchantments] Loading server plugin FNSEnchantments v1.0-SNAPSHOT
[10:56:32] [Server thread/INFO]: [EXGM_WzMines] Loading server plugin EXGM_WzMines v1.0-SNAPSHOT
[10:56:32] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v6.1.1
[10:56:32] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[10:56:32] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.16
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.5.0.0.1242
[10:56:32] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansions...
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'Action Bar v17.3'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'Boss Bar v17.1'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v17.7'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'Citizens Compatibility v17.15'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'End Crystal Helper v17.1'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins\CombatLogX\expansions\Force Field.jar' because a plugin dependency was not loaded: ProtocolLib
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'LibsDisguises Compatibility v17.1'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'LuckPerms Compatibility v17.1'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'Newbie Helper v17.2'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v17.2'...
[10:56:32] [Server thread/INFO]: [CombatLogX]  
[10:56:32] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v17.3'...
[10:56:32] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.13+82fdc65
[10:56:33] [Server thread/INFO]: [CombatLogX]  
[10:56:33] [Server thread/INFO]: [CombatLogX] Successfully loaded 10 expansions.
[10:56:33] [Server thread/INFO]: [ColoredAnvils] Loading server plugin ColoredAnvils v1.08
[10:56:33] [Server thread/INFO]: [ChatAdmin] Loading server plugin ChatAdmin v1.0
[10:56:33] [Server thread/INFO]: [Broadcast] Loading server plugin Broadcast v2.3
[10:56:33] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[10:56:33] [Server thread/INFO]: [AxKoth] Loading server plugin AxKoth v2.14.1
[10:56:33] [Server thread/INFO]: [AltDetector] Loading server plugin AltDetector v2.03
[10:56:33] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:56:33] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.156
[10:56:34] [Server thread/INFO]:         __    
[10:56:34] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.156
[10:56:34] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[10:56:34] [Server thread/INFO]: 
[10:56:34] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:56:34] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:56:35] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:56:35] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:56:35] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2763ms)
[10:56:35] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[10:56:35] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:56:36] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[10:56:36] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:56:36] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.6
[10:56:36] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1092;4af1b8b
[10:56:36] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[10:56:36] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[10:56:36] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:56:36] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:56:36] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_5.PaperweightFaweAdapter as the Bukkit adapter
[10:56:37] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[10:56:37] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[10:56:37] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.5
[10:56:37] [Server thread/WARN]: [nightcore] Locale file for 'nl' language not found. Using default 'en' locale.
[10:56:37] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 2 build(s) out of date.
You are running build 1092, the latest version is build 1094.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[10:56:37] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[10:56:37] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[10:56:37] [Server thread/INFO]: [nightcore] Time zone set as Europe/Amsterdam
[10:56:37] [Server thread/INFO]: [nightcore] Plugin loaded in 145 ms!
[10:56:37] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.6.431
[10:56:37] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[10:56:37] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[10:56:37] [Server thread/INFO]: [PiggyBoss] Enabling PiggyBoss v1.0-SNAPSHOT
[10:56:37] [Server thread/INFO]: [PiggyBoss] Starting boss spawners...
[10:56:37] [Server thread/INFO]: [PiggyBoss] Starting spawner: CaveBossSpawner
[10:56:37] [Server thread/INFO]: CaveBossSpawner initialized
[10:56:37] [Server thread/INFO]: PiggyBoss: 1 boss spawners activated
[10:56:37] [Server thread/INFO]: [PiggyBoss] PiggyBoss plugin enabled!
[10:56:37] [Server thread/INFO]: Preparing level "world"
[10:56:38] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:56:38] [Server thread/INFO]: Preparing spawn area: 0%
[10:56:38] [Server thread/INFO]: Time elapsed: 371 ms
[10:56:38] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:56:38] [Server thread/INFO]: Preparing spawn area: 0%
[10:56:39] [Server thread/INFO]: Preparing spawn area: 53%
[10:56:39] [Server thread/INFO]: Time elapsed: 794 ms
[10:56:39] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:56:39] [Server thread/INFO]: Preparing spawn area: 0%
[10:56:39] [Server thread/INFO]: Time elapsed: 61 ms
[10:56:39] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.1
[10:56:39] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.5 (770)
[10:56:39] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[10:56:39] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.3.1-SNAPSHOT
[10:56:39] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.2-SNAPSHOT
[10:56:40] [Server thread/INFO]: [packetevents] Enabling packetevents v2.8.0+0931f7c9e-SNAPSHOT
[10:56:40] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[10:56:40] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[10:56:40] [packetevents-update-check-thread/INFO]: [packetevents] You are running a development build of PacketEvents. Your build: (2.8.0+0931f7c9e-SNAPSHOT) | Latest release: (2.7.0)
[10:56:40] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:56:40] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[10:56:40] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[10:56:40] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[10:56:40] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[10:56:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[10:56:40] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:56:41] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.5
[10:56:41] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-11.0.5.jar
[10:56:41] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R4) (MC: 1.21.5)
[10:56:41] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1585
[10:56:41] [Server thread/INFO]: [LibsDisguises] Build Date: 13/04/2025 03:40
[10:56:41] [Server thread/INFO]: [LibsDisguises] Found a premium Lib's Disguises jar (v11.0.3, build #1560, created 16/03/2025 06:05)
[10:56:41] [Server thread/INFO]: [LibsDisguises] Registered to: 1392644 (29)
[10:56:41] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[10:56:41] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'SCALED', LD will scale down (when possible) oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[10:56:42] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_5/18...
[10:56:43] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_5/18 in 440.991ms
[10:56:44] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[10:56:44] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[10:56:44] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[10:56:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[10:56:44] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[10:56:44] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.15.0
[10:56:44] [Server thread/INFO]: [NBTAPI] Checking bindings...
[10:56:44] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[10:56:44] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[10:56:44] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[10:56:44] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Enabling NoMercyEssentials v1.0.0
[10:56:44] [Server thread/INFO]: [com.nomercymc.essentials.libs.hikari.HikariDataSource] NoMercyEssentials-HikariPool - Starting...
[10:56:44] [Server thread/INFO]: [com.nomercymc.essentials.libs.hikari.pool.HikariPool] NoMercyEssentials-HikariPool - Added connection org.sqlite.jdbc4.JDBC4Connection@7ba69903
[10:56:44] [Server thread/INFO]: [com.nomercymc.essentials.libs.hikari.HikariDataSource] NoMercyEssentials-HikariPool - Start completed.
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Database connection pool initialized successfully (SQLite).
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Database tables verified/created successfully.
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Created player_playtime table if it didn't exist
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Loaded kit: Coal
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Loaded kit: Iron
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Loaded kit: Gold
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Loaded kit: Diamond
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Loaded kit: Emerald
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Loaded spawn location: world at 0.9210214359177226, 76.0, 0.5250699892807391
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Loading player chat color preferences from database...
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Loaded preferences for 2 players.
[10:56:44] [Server thread/WARN]: [NoMercyEssentials] Error loading pet loot item from type-loot.TURTLE: No enum constant org.bukkit.Material.SCUTE
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Created warps table if it didn't exist
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Created player_vaults table if it didn't exist
[10:56:44] [Server thread/WARN]: [NoMercyEssentials] No permission kits found in configuration.
[10:56:44] [Server thread/INFO]: [nightcore] Found economy provider: NoMercyEssentials Economy
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Vault found and economy provider registered successfully.
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] PlaceholderAPI found and hooked successfully.
[10:56:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nme [1.0.0]
[10:56:44] [Server thread/INFO]: [NoMercyEssentials] Registered NoMercyEssentials placeholders with PlaceholderAPI.
[10:56:45] [Server thread/INFO]: [NoMercyEssentials] NoMercyMC Essentials has been enabled!
[10:56:45] [Server thread/INFO]: [ArmorEquipEvent] Enabling ArmorEquipEvent v1.7.6-SNAPSHOT
[10:56:45] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3781)
[10:56:45] [Server thread/INFO]: [Citizens] Detected system language [[nl]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[10:56:45] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[10:56:45] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[10:56:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[10:56:45] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Enabling NoMercyMCTeams v1.0
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Configuration loaded
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Loaded 3 teams from SQLite database
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Connected to SQLite database
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Data manager initialized with SQLITE storage
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Loaded 3 teams from SQLite database
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Loaded 3 teams
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Economy integration enabled
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Economy integration enabled
[10:56:45] [Server thread/INFO]: [NoMercyMCTeams] Leaderboard update task started
[10:56:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: teams [1.0]
[10:56:46] [Server thread/INFO]: [NoMercyMCTeams] Registered PlaceholderAPI placeholders
[10:56:46] [Server thread/INFO]: [NoMercyMCTeams] NoMercyMC Teams Plugin has been enabled!
[10:56:46] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[10:56:46] [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--].
[10:56:46] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[10:56:46] [Server thread/INFO]: Could not set generator for world 'duels_world': Plugin 'VoidGenerator' does not exist
[10:56:46] [Server thread/INFO]: Preparing start region for dimension minecraft:duels_world
[10:56:46] [Server thread/INFO]: Time elapsed: 1 ms
[10:56:46] [Server thread/INFO]: [WorldGuard] (duels_world) TNT ignition is PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (duels_world) Lighters are PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (duels_world) Lava fire is PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (duels_world) Fire spread is UNRESTRICTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'duels_world'
[10:56:46] [Server thread/INFO]: Could not set generator for world 'duels_world': Plugin 'VoidGenerator' does not exist
[10:56:46] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: potentialspawn
[10:56:46] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:56:46] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: t
[10:56:46] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:56:46] [Server thread/INFO]: Preparing start region for dimension minecraft:test
[10:56:46] [Server thread/INFO]: Preparing spawn area: 0%
[10:56:46] [Server thread/INFO]: Time elapsed: 61 ms
[10:56:46] [Server thread/INFO]: [WorldGuard] (Test) TNT ignition is PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (Test) Lighters are PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (Test) Lava fire is PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (Test) Fire spread is UNRESTRICTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Test'
[10:56:46] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: testtt2
[10:56:46] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:56:46] [Server thread/INFO]: Preparing start region for dimension minecraft:arena1
[10:56:46] [Server thread/INFO]: Preparing spawn area: 0%
[10:56:46] [Server thread/INFO]: Time elapsed: 36 ms
[10:56:46] [Server thread/INFO]: [WorldGuard] (Arena1) TNT ignition is PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (Arena1) Lighters are PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (Arena1) Lava fire is PERMITTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] (Arena1) Fire spread is UNRESTRICTED.
[10:56:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Arena1'
[10:56:46] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[10:56:46] [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.
[10:56:46] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[10:56:46] [Server thread/INFO]: [WildLoaders] Enabling WildLoaders v2025.1
[10:56:46] [Server thread/INFO]: [WildLoaders] ******** ENABLE START ********
[10:56:46] [Server thread/INFO]: [WildLoaders] Loading configuration started...
[10:56:46] [Server thread/INFO]: [WildLoaders]  - Found 2 chunk-loaders in config.yml.
[10:56:46] [Server thread/INFO]: [WildLoaders] Loading configuration done (Took 12ms)
[10:56:46] [Server thread/INFO]: [WildLoaders] Loading messages started...
[10:56:46] [Server thread/INFO]: [WildLoaders]  - Found 25 messages in lang.yml.
[10:56:46] [Server thread/INFO]: [WildLoaders] Loading messages done (Took 4ms)
[10:56:46] [Server thread/INFO]: [WildLoaders] ******** ENABLE DONE ********
[10:56:46] [Server thread/INFO]: [VouchersPlus] Enabling VouchersPlus v1.1.8
[10:56:47] [Server thread/INFO]: [Vouchers+] Starting Plugin...
[10:56:47] [Server thread/INFO]: [Vouchers+] Detected Placeholder API. Successfully enabled plugin support.
[10:56:47] [Server thread/INFO]: [Vouchers+] Anti-Dupe is not enabled, skipping set up.
[10:56:47] [Server thread/INFO]: [Vouchers+] Detected version group as V1.20.5+[1215]. Applying necessary settings.
[10:56:47] [Server thread/INFO]: [Vouchers+] Started Successfully!
[10:56:47] [Server thread/INFO]: [TAB] Enabling TAB v5.0.7
[10:56:47] [Server thread/INFO]: [TAB] Loaded NMS hook in 31ms
[10:56:47] [Server thread/INFO]: [TAB] Enabled in 253ms
[10:56:47] [Server thread/INFO]: [NoMercyStoreIntegration] Enabling NoMercyStoreIntegration v1.0-SNAPSHOT
[10:56:47] [Server thread/INFO]: [NoMercyStoreIntegration] SSH Tunnel established on local port 3307
[10:56:47] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] MineCraftHavenStoreIntegrationPool - Starting...
[10:56:48] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] MineCraftHavenStoreIntegrationPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@3ec825fa
[10:56:48] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] MineCraftHavenStoreIntegrationPool - Start completed.
[10:56:48] [Server thread/INFO]: [NoMercyStoreIntegration] Successfully connected to database.
[10:56:48] [Server thread/INFO]: [NoMercyStoreIntegration] Delivery scheduler started. Interval: 60s.
[10:56:48] [Server thread/INFO]: [NoMercyStoreIntegration] NoMercyMC Store Integration has been enabled!
[10:56:48] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.5
[10:56:48] [Server thread/INFO]: [SimpleScore] It looks like your server doesn't have ProtocolLib, install ProtocolLib for even better performance and compatibility with other plugins.
[10:56:48] [Server thread/INFO]: [SimpleScore] https://www.spigotmc.org/resources/protocollib.1997/
[10:56:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SimpleScore [3.12.5]
[10:56:48] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.9
[10:56:48] [Server thread/WARN]: [OpenInv] Your server version (1.21.5) is not supported.
[10:56:48] [Server thread/WARN]: [OpenInv] Please download the correct version of OpenInv here: https://github.com/Jikoo/OpenInv/releases
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Enabling NoMercyStaff v1.0
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Successfully connected to the SQLite database!
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Detected version from Bukkit version: v1_21_R1
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Using 1.19.3+ packet system with List constructor
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Found connection field: b
[10:56:48] [Server thread/WARN]: [NoMercyStaff] Couldn't find connection field or send method: Could not find send packet method in double
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Successfully initialized packet reflection for vanish system
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Discord webhook URL configured: https://discordapp.com/api/web...
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Discord integration is enabled with webhook URL: https://discordapp.com/api/web...
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Registered punishment GUI listener
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Registered teleport GUI listener
[10:56:48] [Server thread/INFO]: [NoMercyStaff] Registered report GUI listener
[10:56:48] [Server thread/INFO]: [NoMercyStaff] All event listeners registered successfully
[10:56:48] [Server thread/INFO]: [NoMercyStaff] NoMercyMC Staff Plugin has been enabled!
[10:56:48] [Server thread/INFO]: [NoMercyShop] Enabling NoMercyShop v1.0.0
[10:56:48] [Server thread/INFO]: [NoMercyShop] Loaded configuration file: config.yml
[10:56:48] [Server thread/INFO]: [NoMercyShop] Loaded configuration file: shop.yml
[10:56:48] [Server thread/WARN]: [NoMercyShop] Invalid material: BED for item: home_perk
[10:56:48] [Server thread/INFO]: [NoMercyShop] Loaded 7 categories and 81 items.
[10:56:48] [Server thread/INFO]: [NoMercyShop] NoMercyShop has been enabled!
[10:56:48] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.7.0
[10:56:48] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[10:56:49] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[10:56:49] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[10:56:49] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[10:56:49] [Server thread/INFO]: [ItemEdit] placeholders:
[10:56:49] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[10:56:49] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[10:56:49] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[10:56:49] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[10:56:49] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[10:56:49] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[10:56:49] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[10:56:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[10:56:49] [Server thread/INFO]: [ItemEdit] # Enabled (took 174 ms)
[10:56:49] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.9.12a
[10:56:49] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: POTION 
[10:56:49] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT an ArcLight hybrid environment, continuing as normal.
[10:56:49] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Forge hybrid environment, continuing as normal.
[10:56:49] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Fabric hybrid environment, continuing as normal.
[10:56:49] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is a Paper server, enabling Paper features.
[10:56:49] [Server thread/INFO]: [IllegalStack/IllegalStack] Server does NOT have Folia components, continuing as normal.
[10:56:49] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
[10:56:49] [Server thread/INFO]: [IllegalStack/fListener] MC Version < 1.13 detected!
[10:56:49] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
[10:56:49] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 65 *** Only really matters if the difficulty is set to HARD ***
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Enabling NoMercyHeadhunting v1.0-SNAPSHOT
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Successfully hooked into Vault economy: NoMercyEssentials Economy
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Loaded 0 custom spawners.
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Spawner task started with interval: 600 ticks.
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Floating mob descent task started.
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Started stack cleanup task with interval of 300 seconds
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Loading data for online players...
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Finished loading data for 0 online players.
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] NoMercyHeadhunting has been enabled!
[10:56:49] [Server thread/INFO]: [NoMercyHeadhunting] Mask Upgrade System: Enabled
[10:56:49] [Server thread/INFO]: [FNSEnchantments] Enabling FNSEnchantments v1.0-SNAPSHOT
[10:56:49] [Server thread/INFO]: [FNSEnchantments] Successfully hooked into NoMercyMCTeams API.
[10:56:49] [Server thread/INFO]: [EXGM_WzMines] Enabling EXGM_WzMines v1.0-SNAPSHOT
[10:56:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: EXGMMines [1.0.0]
[10:56:49] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.1.1
[10:56:49] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[10:56:49] [Server thread/WARN]: [ExcellentCrates] Locale file for 'nl' language not found. Using default 'en' locale.
[10:56:49] [Server thread/WARN]: [ExcellentCrates] *************************
[10:56:49] [Server thread/WARN]: [ExcellentCrates] You don't have EconomyBridge installed.
[10:56:49] [Server thread/WARN]: [ExcellentCrates] The following features will be unavailable:
[10:56:49] [Server thread/WARN]: [ExcellentCrates] - Crate open cost.
[10:56:49] [Server thread/WARN]: [ExcellentCrates] - Custom item plugin support.
[10:56:49] [Server thread/WARN]: [ExcellentCrates] *************************
[10:56:49] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[10:56:49] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@70505736
[10:56:49] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[10:56:49] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate openings.
[10:56:49] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[10:56:49] [Server thread/INFO]: [ExcellentCrates] Loaded 6 rarities!
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.wind_charge.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.name_tag.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.axolotl_bucket.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.music_disc_pigstep.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.goat_horn.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.goat_horn_1.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.black_bundle.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.red_bundle.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.orange_bundle.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.event_axe.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.event_sword.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.event_helmet.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.event_chestplate.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.event_leggings.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'event.yml' -> 'Rewards.List.event_boots.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_helmet.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_chestplate.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_leggings.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_boots.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_sword.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_pickaxe.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_axe.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_silk_touch_pickaxe.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_shield.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.godly_enchantment_orb_right_click.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_enchantment_orb_right_click.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.dragon_enchantment_orb_right_click.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.rare_enchantment_orb_right_click.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'legendary.yml' -> 'Rewards.List.legendary_dog_armor.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'potion.yml' -> 'Rewards.List.power_potion.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'potion.yml' -> 'Rewards.List.luck_potion.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'potion.yml' -> 'Rewards.List.ghost_potion.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'potion.yml' -> 'Rewards.List.dolphin_potion.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'potion.yml' -> 'Rewards.List.night_vision_potion.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'potion.yml' -> 'Rewards.List.hunger_potion.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'potion.yml' -> 'Rewards.List.bad_luck_potion.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'potion.yml' -> 'Rewards.List.legendary_crate_key.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'rank.yml' -> 'Rewards.List.iron_rank_season_bound.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'rank.yml' -> 'Rewards.List.gold_rank_season_bound.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'rank.yml' -> 'Rewards.List.diamond_rank_season_bound.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'rank.yml' -> 'Rewards.List.coal_rank_season_bound.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'rank.yml' -> 'Rewards.List.emerald_rank_season_bound.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.golden_apple.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.experience_bottle.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.book.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.raw_gold.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.raw_iron.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.coal.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.vote_helmet.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.vote_chestplate.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.vote_leggings.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.vote_boots.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.vote_sword.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.vote_axe.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.vote_pickaxe.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.vote_shield.PreviewData'.
[10:56:50] [Server thread/ERROR]: [ExcellentCrates] Could not parse item tag string '{}'. Caused by 'vote.yml' -> 'Rewards.List.potion_crate.PreviewData'.
[10:56:50] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crates.
[10:56:50] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:56:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.1.1]
[10:56:50] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 811 ms!
[10:56:50] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[10:56:50] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.16
[10:56:50] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] No bot token has been set in the config; a bot token is required to connect to Discord.
[10:56:50] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.5! Trying to find NMS support
[10:56:50] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(1.21.5-R0.1-SNAPSHOT) is not supported by this NBT-API Version(2.14.1) located in DecentHolograms. The NBT-API will try to work as good as it can! Some functions may not work!
[10:56:50] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.5.0.0.1242
[10:56:50] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[10:56:50] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[10:56:50] [Server thread/INFO]: CombatLogX was loaded successfully.
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v17.3'...
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Boss Bar v17.1'...
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v17.7'...
[10:56:50] [pool-83-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Citizens Compatibility v17.15'...
[10:56:50] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Successfully found a dependency: Citizens v2.0.38-SNAPSHOT (build 3781)
[10:56:50] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Dependency 'Citizens' is not the correct version.
[10:56:50] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Citizens Compatibility v17.15'...
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'LibsDisguises Compatibility v17.1'...
[10:56:50] [Server thread/INFO]: [CombatLogX] [LibsDisguises Compatibility] Successfully found a dependency: LibsDisguises v11.0.5
[10:56:50] [Server thread/INFO]: [CombatLogX] [LibsDisguises Compatibility] Dependency 'LibsDisguises' is not the correct version!
[10:56:50] [Server thread/INFO]: [CombatLogX] [LibsDisguises Compatibility] Some dependencies for this expansion are missing!
[10:56:50] [Server thread/INFO]: [CombatLogX] Disabling expansion 'LibsDisguises Compatibility v17.1'...
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'LuckPerms Compatibility v17.1'...
[10:56:50] [Server thread/INFO]: [CombatLogX] [LuckPerms Compatibility] Successfully found a dependency: LuckPerms v5.4.156
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v17.2'...
[10:56:50] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.6
[10:56:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatlogx [17.2]
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v17.3'...
[10:56:50] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.13+82fdc65
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'End Crystal Helper v17.1'...
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Newbie Helper v17.2'...
[10:56:50] [Server thread/INFO]: [CombatLogX]  
[10:56:50] [Server thread/INFO]: [CombatLogX] Successfully enabled 8 expansions.
[10:56:50] [Server thread/INFO]: CombatLogX was enabled successfully.
[10:56:50] [Server thread/INFO]: [ColoredAnvils] Enabling ColoredAnvils v1.08*
[10:56:50] [Server thread/INFO]: [ColoredAnvils] ColoredAnvils v1.08 has been enabled!
[10:56:50] [Server thread/INFO]: [ColoredAnvils] Permissions for ColoredAnvils are disabled.
[10:56:50] [Server thread/INFO]: [ChatAdmin] Enabling ChatAdmin v1.0*
[10:56:50] [Server thread/INFO]: [ChatAdmin] by Jake is Enabled
[10:56:50] [Server thread/INFO]: [Broadcast] Enabling Broadcast v2.3
[10:56:51] [Server thread/INFO]: [Broadcast] 2025/04/21 10:56:50  Toggled logging to console 
[10:56:51] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[10:56:51] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[10:56:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[10:56:51] [Server thread/INFO]: [AxKoth] Enabling AxKoth v2.14.1
[10:56:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axkoth [1.0.0]
[10:56:52] [Server thread/INFO]: [AxKoth] Loaded plugin!
[10:56:52] [Server thread/INFO]: [AltDetector] Enabling AltDetector v2.03
[10:56:52] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Starting...
[10:56:52] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Start completed.
[10:56:52] [Server thread/INFO]: [AltDetector] Using SQLite database, version 3.49.1, driver version 3.49.1.0
[10:56:52] [Server thread/INFO]: [AltDetector] 0 records removed, expiration time 60 days.
[10:56:53] [Server thread/INFO]: [AltDetector] Metrics enabled if allowed by plugins/bStats/config.yml
[10:56:53] [Server thread/INFO]: [spark] Starting background profiler...
[10:56:53] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[10:56:53] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[10:56:53] [Server thread/INFO]: [Geyser-Spigot] 
[10:56:53] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.6.2-b793 (git-master-baac979)
[10:56:53] [Server thread/INFO]: [Geyser-Spigot] 
[10:56:53] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[10:56:58] [Server thread/INFO]: [Geyser-Spigot] Started Geyser on UDP port 19132
[10:56:58] [Server thread/INFO]: [Geyser-Spigot] Done (4,667s)! Run /geyser help for help!
[10:56:58] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:56:58] [Server thread/INFO]: Done preparing level "world" (20.594s)
[10:56:58] [Server thread/INFO]: Running delayed init tasks
[10:56:58] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[10:56:58] [Craft Scheduler Thread - 8 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:56:58] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[10:56:58] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[10:56:58] [Craft Scheduler Thread - 19 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[10:56:58] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[10:56:58] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[10:56:58] [Craft Scheduler Thread - 19 - DecentHolograms/INFO]: [DecentHolograms] Loaded 1 holograms!
[10:56:58] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.29.0
[10:56:58] [Craft Scheduler Thread - 8 - Vault/INFO]: [Vault] No new version available
[10:56:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[10:56:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: pinger [1.0.1]
[10:56:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[10:56:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[10:56:58] [Server thread/INFO]: 4 placeholder hook(s) registered!
[10:56:58] [Server thread/INFO]: [Citizens] 9 NPCs geladen.
[10:56:58] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[10:56:58] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.3.2, you're on: 5.3.1
[10:56:58] [Server thread/INFO]: Done (70.716s)! For help, type "help"
[10:56:58] [Server thread/INFO]: [FNSEnchantments] Registering Citizens-dependent enchantments...
[10:56:58] [Server thread/INFO]: [FNSEnchantments] [ArcaneMirage] Successfully hooked into Citizens API.
[10:56:58] [Server thread/INFO]: [FNSEnchantments] ArcaneMirage registered successfully.
[10:57:01] [User Authenticator #0/INFO]: UUID of player PiggyGames1205 is ddd5c917-c78e-4703-ba5f-5baadd673f2c
[10:57:01] [Craft Scheduler Thread - 22 - NoMercyStaff/WARN]: [NoMercyStaff] API request failed with status code: 404
[10:57:01] [Craft Scheduler Thread - 22 - NoMercyStaff/WARN]: [NoMercyStaff] Error response: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL was not found on this server.</p></body></html>
[10:57:02] [Server thread/INFO]: [NoMercyHeadhunting] [DEBUG] Loading player data from file for ddd5c917-c78e-4703-ba5f-5baadd673f2c
[10:57:02] [Server thread/INFO]: [+] PiggyGames1205
[10:57:02] [Server thread/INFO]: PiggyGames1205[/PRIVATE] logged in with entity id 291 at ([world]-7.289769988363814, 77.5, -11.291312509311103)
[10:57:02] [Server thread/INFO]: [AltDetector] PiggyGames1205 may be an alt of NoMercyMc
[10:57:03] [Craft Scheduler Thread - 7 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[10:57:03] [Craft Scheduler Thread - 7 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[10:57:19] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[10:57:19] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[10:57:19] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.6.431
[10:57:19] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.6.454
[10:57:19] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[10:57:28] [Craft Scheduler Thread - 7 - NoMercyStaff/INFO]: [NoMercyStaff] Starting data sync with website...
[10:57:28] [Craft Scheduler Thread - 7 - NoMercyStaff/INFO]: [NoMercyStaff] Syncing 50 staff logs with website...
[10:57:28] [Craft Scheduler Thread - 7 - NoMercyStaff/WARN]: [NoMercyStaff] API request failed with status code: 404
[10:57:28] [Craft Scheduler Thread - 7 - NoMercyStaff/WARN]: [NoMercyStaff] Error response: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL was not found on this server.</p></body></html>
[10:57:28] [Craft Scheduler Thread - 7 - NoMercyStaff/WARN]: [NoMercyStaff] Failed to sync staff logs with website.
[10:57:28] [Craft Scheduler Thread - 7 - NoMercyStaff/INFO]: [NoMercyStaff] Data sync completed successfully.
[10:58:03] [Craft Scheduler Thread - 6 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[10:58:03] [Craft Scheduler Thread - 6 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[10:59:03] [Craft Scheduler Thread - 6 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[10:59:03] [Craft Scheduler Thread - 6 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[10:59:12] [Server thread/INFO]: PiggyGames1205 issued server command: /gmc
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GMC
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GMC
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GMC
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GMC","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/gmc"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T08:59:12.448480100Z"}],"username":"NoMercy Staff"}
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[10:59:12] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[10:59:30] [Server thread/INFO]: PiggyGames1205 issued server command: /loader give
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_LOADER
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_LOADER
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_LOADER
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: LOADER","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/loader give"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T08:59:30.705000300Z"}],"username":"NoMercy Staff"}
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[10:59:30] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[10:59:35] [Server thread/INFO]: PiggyGames1205 issued server command: /loader give PiggyGames1205 large_loader
[10:59:35] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_LOADER
[10:59:35] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_LOADER
[10:59:35] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_LOADER
[10:59:35] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[10:59:35] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: LOADER","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/loader give PiggyGames1205 large_loader"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T08:59:35.811610300Z"}],"username":"NoMercy Staff"}
[10:59:35] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[10:59:36] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[10:59:36] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[10:59:36] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[10:59:49] [Server thread/INFO]: PiggyGames1205 issued server command: /loader give PiggyGames1205 normal_loader
[10:59:49] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_LOADER
[10:59:49] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_LOADER
[10:59:49] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_LOADER
[10:59:49] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[10:59:49] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: LOADER","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/loader give PiggyGames1205 normal_loader"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T08:59:49.762561700Z"}],"username":"NoMercy Staff"}
[10:59:49] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[10:59:50] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[10:59:50] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[10:59:50] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:00:03] [Craft Scheduler Thread - 6 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:00:03] [Craft Scheduler Thread - 6 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:01:03] [Craft Scheduler Thread - 6 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:01:03] [Craft Scheduler Thread - 6 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:01:58] [Craft Scheduler Thread - 7 - NoMercyStaff/INFO]: [NoMercyStaff] Performed scheduled save of staff data
[11:01:58] [Server thread/INFO]: [NoMercyHeadhunting] [Stack Cleanup] Processed 0 stacks, fixed 0 stacks, removed 0 entities
[11:02:03] [Craft Scheduler Thread - 31 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:02:03] [Craft Scheduler Thread - 31 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:02:27] [Server thread/INFO]: PiggyGames1205 issued server command: /loader give PiggyGames1205 normal_loader 1 1h
[11:02:27] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_LOADER
[11:02:27] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_LOADER
[11:02:27] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_LOADER
[11:02:27] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:02:27] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: LOADER","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/loader give PiggyGames1205 normal_loader 1 1h"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:02:27.710415200Z"}],"username":"NoMercy Staff"}
[11:02:27] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:02:28] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:02:28] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:02:28] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:02:55] [Server thread/INFO]: PiggyGames1205 issued server command: /crate editor
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_CRATE
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_CRATE
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_CRATE
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: CRATE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/crate editor"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:02:55.085057100Z"}],"username":"NoMercy Staff"}
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:02:55] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:03:03] [Craft Scheduler Thread - 11 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:03:03] [Craft Scheduler Thread - 11 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:03:19] [Server thread/INFO]: PiggyGames1205 issued server command: /epic
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_EPIC
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_EPIC
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_EPIC
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: EPIC","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/epic"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:03:19.493762800Z"}],"username":"NoMercy Staff"}
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:03:19] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:03:24] [Async Chat Thread - #1/INFO]: [Alpha] [Owner] PiggyGames1205: 1
[11:03:51] [Server thread/INFO]: PiggyGames1205 issued server command: /godly
[11:03:51] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GODLY
[11:03:51] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GODLY
[11:03:51] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GODLY
[11:03:51] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:03:51] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GODLY","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/godly"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:03:51.786382100Z"}],"username":"NoMercy Staff"}
[11:03:51] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:03:52] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:03:52] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:03:52] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:04:03] [Craft Scheduler Thread - 11 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:04:03] [Craft Scheduler Thread - 11 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:05:03] [Craft Scheduler Thread - 33 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:05:03] [Craft Scheduler Thread - 33 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:05:37] [Server thread/INFO]: PiggyGames1205 issued server command: /gl
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GL
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GL
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GL
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GL","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/gl"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:05:37.613374800Z"}],"username":"NoMercy Staff"}
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:05:37] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:05:43] [Server thread/INFO]: PiggyGames1205 issued server command: /bal
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_BAL
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_BAL
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_BAL
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: BAL","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/bal"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:05:43.597323Z"}],"username":"NoMercy Staff"}
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:05:43] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:06:01] [Server thread/INFO]: PiggyGames1205 issued server command: /eco set PiggyGames1205 0
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_ECO
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_ECO
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_ECO
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: ECO","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/eco set PiggyGames1205 0"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:06:01.562493100Z"}],"username":"NoMercy Staff"}
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:06:01] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:06:03] [Craft Scheduler Thread - 22 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:06:03] [Craft Scheduler Thread - 22 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:06:04] [Server thread/INFO]: PiggyGames1205 issued server command: /baltop
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_BALTOP
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_BALTOP
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_BALTOP
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: BALTOP","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/baltop"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:06:04.518734400Z"}],"username":"NoMercy Staff"}
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:06:04] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:06:56] [Server thread/INFO]: PiggyGames1205 issued server command: /money reset
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_MONEY
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_MONEY
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_MONEY
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: MONEY","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/money reset"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:06:57.012713Z"}],"username":"NoMercy Staff"}
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:06:57] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:06:58] [Server thread/INFO]: [NoMercyHeadhunting] [Stack Cleanup] Processed 0 stacks, fixed 0 stacks, removed 0 entities
[11:06:58] [Craft Scheduler Thread - 11 - NoMercyStaff/INFO]: [NoMercyStaff] Performed scheduled save of staff data
[11:07:03] [Craft Scheduler Thread - 37 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:07:03] [Craft Scheduler Thread - 37 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:08:03] [Craft Scheduler Thread - 10 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:08:03] [Craft Scheduler Thread - 10 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:09:03] [Craft Scheduler Thread - 39 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:09:03] [Craft Scheduler Thread - 39 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:09:44] [Server thread/INFO]: PiggyGames1205 issued server command: /nomercyessentials:money
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_NOMERCYESSENTIALS:MONEY
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_NOMERCYESSENTIALS:MONEY
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_NOMERCYESSENTIALS:MONEY
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: NOMERCYESSENTIALS:MONEY","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/nomercyessentials:money"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:09:44.427375900Z"}],"username":"NoMercy Staff"}
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:09:44] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:10:03] [Craft Scheduler Thread - 37 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:10:03] [Craft Scheduler Thread - 37 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:10:03] [Server thread/INFO]: PiggyGames1205 issued server command: /eco set 0
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_ECO
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_ECO
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_ECO
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: ECO","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/eco set 0"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:10:03.513066900Z"}],"username":"NoMercy Staff"}
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:10:03] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:10:10] [Server thread/INFO]: PiggyGames1205 issued server command: /eco reset
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_ECO
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_ECO
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_ECO
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: ECO","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/eco reset"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:10:10.677867700Z"}],"username":"NoMercy Staff"}
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:10:10] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:10:17] [Server thread/INFO]: PiggyGames1205 issued server command: /eco take PiggyGames1205
[11:10:17] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_ECO
[11:10:17] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_ECO
[11:10:17] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_ECO
[11:10:17] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:10:17] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: ECO","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/eco take PiggyGames1205"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:10:17.972016600Z"}],"username":"NoMercy Staff"}
[11:10:17] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:10:18] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:10:18] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:10:18] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:10:24] [Server thread/INFO]: PiggyGames1205 issued server command: /eco set PiggyGames1205 0
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_ECO
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_ECO
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_ECO
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: ECO","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/eco set PiggyGames1205 0"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:10:24.512304100Z"}],"username":"NoMercy Staff"}
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:10:24] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:10:31] [Server thread/INFO]: PiggyGames1205 issued server command: /eco set PiggyGames1205 0
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_ECO
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_ECO
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_ECO
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: ECO","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/eco set PiggyGames1205 0"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:10:31.479619700Z"}],"username":"NoMercy Staff"}
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:10:31] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:11:03] [Craft Scheduler Thread - 40 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:11:03] [Craft Scheduler Thread - 40 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:11:58] [Craft Scheduler Thread - 41 - NoMercyStaff/INFO]: [NoMercyStaff] Performed scheduled save of staff data
[11:11:58] [Server thread/INFO]: [NoMercyHeadhunting] [Stack Cleanup] Processed 0 stacks, fixed 0 stacks, removed 0 entities
[11:12:03] [Craft Scheduler Thread - 41 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:12:03] [Craft Scheduler Thread - 41 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:12:31] [Server thread/INFO]: PiggyGames1205 issued server command: /fl
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_FL
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_FL
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_FL
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: FL","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/fl"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:12:31.298782800Z"}],"username":"NoMercy Staff"}
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:12:31] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:12:35] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:12:35.141644400Z"}],"username":"NoMercy Staff"}
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:12:35] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:12:45] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule commandBlockOutput false
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule commandBlockOutput false"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:12:45.292513Z"}],"username":"NoMercy Staff"}
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:12:45] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:12:59] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule playersSleepingPercentage 20
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule playersSleepingPercentage 20"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:13:00.014401300Z"}],"username":"NoMercy Staff"}
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:13:00] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:13:03] [Craft Scheduler Thread - 39 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:13:03] [Craft Scheduler Thread - 39 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:13:06] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule keepInventory false
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule keepInventory false"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:13:06.390901300Z"}],"username":"NoMercy Staff"}
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:13:06] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:13:53] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule maxEntityCramming true
[11:13:53] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:13:53] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:13:53] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:13:53] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:13:53] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule maxEntityCramming true"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:13:53.704930400Z"}],"username":"NoMercy Staff"}
[11:13:53] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:13:54] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:13:54] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:13:54] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:13:54] [Server thread/WARN]: Failed to parse integer true
[11:13:54] [Server thread/WARN]: Failed to parse integer true
[11:13:54] [Server thread/WARN]: Failed to parse integer true
[11:13:54] [Server thread/WARN]: Failed to parse integer true
[11:13:54] [Server thread/WARN]: Failed to parse integer true
[11:13:54] [Server thread/WARN]: Failed to parse integer true
[11:14:02] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule randomTickSpeed 2
[11:14:02] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:14:02] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:14:02] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:14:02] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:14:02] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule randomTickSpeed 2"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:14:02.821909700Z"}],"username":"NoMercy Staff"}
[11:14:02] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:14:03] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:14:03] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:14:03] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:14:03] [Craft Scheduler Thread - 41 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:14:03] [Craft Scheduler Thread - 41 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:14:28] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule spawnRadius 0
[11:14:28] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:14:28] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:14:28] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:14:28] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:14:28] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule spawnRadius 0"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:14:28.717646Z"}],"username":"NoMercy Staff"}
[11:14:28] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:14:29] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:14:29] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:14:29] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:14:37] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule spectatorsGenerateChunks true
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule spectatorsGenerateChunks true"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:14:37.489713700Z"}],"username":"NoMercy Staff"}
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:14:37] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:15:03] [Craft Scheduler Thread - 41 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:15:03] [Craft Scheduler Thread - 41 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:15:45] [Server thread/INFO]: PiggyGames1205 issued server command: /global-gamerule announceAdvancements true
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Attempting to send staff action to Discord: COMMAND_GLOBAL-GAMERULE
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Creating Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Executing Discord webhook for staff action: COMMAND_GLOBAL-GAMERULE
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Sending Discord webhook to URL: https://discordapp.com/api/web...
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Webhook payload: {"tts":false,"avatar_url":"https://nomercymc.org/img/logo.png","embeds":[{"color":8421504,"title":"Staff Command: GLOBAL-GAMERULE","fields":[{"inline":true,"name":"Staff","value":"PiggyGames1205"},{"inline":false,"name":"Details","value":"/global-gamerule announceAdvancements true"},{"inline":true,"name":"Server","value":"Paper"},{"inline":false,"name":"Staff UUID","value":"ddd5c917-c78e-4703-ba5f-5baadd673f2c"}],"timestamp":"2025-04-21T09:15:45.202124700Z"}],"username":"NoMercy Staff"}
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Sending webhook data...
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Discord webhook response code: 204
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Discord webhook sent successfully
[11:15:45] [Server thread/INFO]: [NoMercyStaff] Discord webhook execution result: true
[11:16:03] [Craft Scheduler Thread - 41 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:16:03] [Craft Scheduler Thread - 41 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.
[11:16:58] [Craft Scheduler Thread - 10 - NoMercyStaff/INFO]: [NoMercyStaff] Performed scheduled save of staff data
[11:16:58] [Server thread/INFO]: [NoMercyHeadhunting] [Stack Cleanup] Processed 0 stacks, fixed 0 stacks, removed 0 entities
[11:17:03] [Craft Scheduler Thread - 45 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Token being sent: Not null, length=14
[11:17:03] [Craft Scheduler Thread - 45 - NoMercyStoreIntegration/INFO]: [NoMercyStoreIntegration] Received 0 commands from API.