Paste #131600: aaaa

Date: 2025/03/07 05:37:27 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[13:33:18] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:33:20] [ServerMain/INFO]: Loaded 1175 recipes
[13:33:21] [Server thread/INFO]: Starting minecraft server version 1.20.6
[13:33:21] [Server thread/INFO]: Loading properties
[13:33:21] [Server thread/INFO]: This server is running CraftBukkit version 4195-b-Spigot-f6a4805-6524758 (MC: 1.20.6) (Implementing API version 1.20.6-R0.1-SNAPSHOT)
[13:33:21] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:33:21] [Server thread/INFO]: Using 4 threads for Netty based IO
[13:33:21] [Server thread/INFO]: Debug logging is disabled
[13:33:21] [Server thread/INFO]: Default game type: SURVIVAL
[13:33:21] [Server thread/INFO]: Generating keypair
[13:33:22] [Server thread/INFO]: Starting Minecraft server on *:43806
[13:33:22] [Server thread/INFO]: Using epoll channel type
[13:33:22] [Server thread/INFO]: [GroupManager] Loading 6 libraries... please wait
[13:33:22] [Server thread/INFO]: [GroupManager] Loaded library /server/libraries/org/postgresql/postgresql/42.4.2/postgresql-42.4.2.jar
[13:33:22] [Server thread/INFO]: [GroupManager] Loaded library /server/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[13:33:22] [Server thread/INFO]: [GroupManager] Loaded library /server/libraries/com/h2database/h2/2.1.214/h2-2.1.214.jar
[13:33:22] [Server thread/INFO]: [GroupManager] Loaded library /server/libraries/mysql/mysql-connector-java/8.0.30/mysql-connector-java-8.0.30.jar
[13:33:22] [Server thread/INFO]: [GroupManager] Loaded library /server/libraries/com/google/protobuf/protobuf-java/3.19.4/protobuf-java-3.19.4.jar
[13:33:22] [Server thread/INFO]: [GroupManager] Loaded library /server/libraries/org/mariadb/jdbc/mariadb-java-client/3.0.7/mariadb-java-client-3.0.7.jar
[13:33:22] [Server thread/INFO]: [GroupManager] Loaded library /server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[13:33:22] [Server thread/INFO]: [GroupManager] Loaded library /server/libraries/org/slf4j/slf4j-api/2.0.0/slf4j-api-2.0.0.jar
[13:33:24] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.11
[13:33:24] [Server thread/INFO]: [GroupManager] Loading GroupManager v3.2 (Phoenix)
[13:33:24] [Server thread/INFO]: [GroupManager] Dependencies: OK
[13:33:24] [Server thread/INFO]: [ChocoTreeChopper] Loading ChocoTreeChopper v0.18
[13:33:24] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[13:33:24] [Server thread/INFO]: [ChestSort] Loading ChestSort v14.1.0
[13:33:24] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.3.6+6892-3d660b8
[13:33:25] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7502531e]
[13:33:25] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.1
[13:33:25] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.20.1
[13:33:25] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.1
[13:33:25] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.10+d9424b1
[13:33:25] [Server thread/INFO]: [AuraSkills] Loading AuraSkills v2.2.8
[13:33:25] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.35-SNAPSHOT (build 3558)
[13:33:25] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.29.0
[13:33:25] [Server thread/INFO]: [AuthMe] Loading AuthMe v5.6.0-bCUSTOM
[13:33:25] [Server thread/INFO]: [EconomyShopGUI] Loading EconomyShopGUI v6.10.0
[13:33:25] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.18.4
[13:33:25] [Server thread/INFO]: [Sentinel] Loading Sentinel v2.9.0-SNAPSHOT (build 522)
[13:33:25] [Server thread/INFO]: [BeautyQuests] Loading BeautyQuests v1.0.3
[13:33:25] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.4.2-1
[13:33:25] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[13:33:25] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.1 which is not a depend or softdepend of this plugin.
[13:33:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[13:33:25] [Server thread/WARN]: [Vault] Loaded class org.anjocaido.groupmanager.GroupManager from GroupManager v3.2 (Phoenix) which is not a depend or softdepend of this plugin.
[13:33:25] [Server thread/INFO]: [Vault] [Permission] GroupManager found: Waiting
[13:33:25] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:33:25] [Server thread/INFO]: [Vault] [Chat] GroupManager found: Waiting
[13:33:25] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[13:33:25] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.6+6892-3d660b8
[13:33:25] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:33:25] [Server thread/WARN]: [WorldEdit] Loaded class org.anjocaido.groupmanager.dataholder.worlds.WorldsHolder from GroupManager v3.2 (Phoenix) which is not a depend or softdepend of this plugin.
[13:33:25] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:33:26] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R4.PaperweightAdapter as the Bukkit adapter
[13:33:27] [Server thread/INFO]: [WorldEdit] ====================================================
[13:33:27] [Server thread/INFO]: [WorldEdit]  WorldEdit works better if you use Paper 
[13:33:27] [Server thread/INFO]: [WorldEdit]  as your server software. 
[13:33:27] [Server thread/INFO]: [WorldEdit]   
[13:33:27] [Server thread/INFO]: [WorldEdit]  Paper offers significant performance improvements,
[13:33:27] [Server thread/INFO]: [WorldEdit]  bug fixes, security enhancements and optional
[13:33:27] [Server thread/INFO]: [WorldEdit]  features for server owners to enhance their server.
[13:33:27] [Server thread/INFO]: [WorldEdit]   
[13:33:27] [Server thread/INFO]: [WorldEdit]  Paper includes Timings v2, which is significantly
[13:33:27] [Server thread/INFO]: [WorldEdit]  better at diagnosing lag problems over v1.
[13:33:27] [Server thread/INFO]: [WorldEdit]   
[13:33:27] [Server thread/INFO]: [WorldEdit]  All of your plugins should still work, and the
[13:33:27] [Server thread/INFO]: [WorldEdit]  Paper community will gladly help you fix any issues.
[13:33:27] [Server thread/INFO]: [WorldEdit]   
[13:33:27] [Server thread/INFO]: [WorldEdit]  Join the Paper Community @ https://papermc.io
[13:33:27] [Server thread/INFO]: [WorldEdit] ====================================================
[13:33:27] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[13:33:27] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[13:33:27] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[13:33:27] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[13:33:27] [Server thread/INFO]: Preparing level "world"
[13:33:27] [Server thread/INFO]: -------- World Settings For [world] --------
[13:33:27] [Server thread/INFO]: Mob Spawn Range: 6
[13:33:27] [Server thread/INFO]: Experience Merge Radius: 3.0
[13:33:27] [Server thread/INFO]: Max TNT Explosions: 100
[13:33:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:33:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Cane Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Melon Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Potato Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Vine Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[13:33:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[13:33:27] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[13:33:27] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[13:33:27] [Server thread/INFO]: View Distance: 10
[13:33:27] [Server thread/INFO]: Simulation Distance: 5
[13:33:27] [Server thread/INFO]: Item Despawn Rate: 6000
[13:33:27] [Server thread/INFO]: Item Merge Radius: 2.5
[13:33:27] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[13:33:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[13:33:27] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[13:33:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[13:33:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[13:33:28] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[13:33:28] [Server thread/INFO]: Mob Spawn Range: 6
[13:33:28] [Server thread/INFO]: Experience Merge Radius: 3.0
[13:33:28] [Server thread/INFO]: Max TNT Explosions: 100
[13:33:28] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:33:28] [Server thread/INFO]: Cactus Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Cane Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Melon Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Sapling Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Carrot Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Potato Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Wheat Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Vine Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Kelp Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[13:33:28] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[13:33:28] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[13:33:28] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[13:33:28] [Server thread/INFO]: View Distance: 10
[13:33:28] [Server thread/INFO]: Simulation Distance: 5
[13:33:28] [Server thread/INFO]: Item Despawn Rate: 6000
[13:33:28] [Server thread/INFO]: Item Merge Radius: 2.5
[13:33:28] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[13:33:28] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[13:33:28] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[13:33:28] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[13:33:28] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[13:33:33] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[13:33:33] [Server thread/INFO]: Mob Spawn Range: 6
[13:33:33] [Server thread/INFO]: Experience Merge Radius: 3.0
[13:33:33] [Server thread/INFO]: Max TNT Explosions: 100
[13:33:33] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:33:33] [Server thread/INFO]: Cactus Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Cane Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Melon Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Sapling Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Carrot Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Potato Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Wheat Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Vine Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Kelp Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[13:33:33] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[13:33:33] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[13:33:33] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[13:33:33] [Server thread/INFO]: View Distance: 10
[13:33:33] [Server thread/INFO]: Simulation Distance: 5
[13:33:33] [Server thread/INFO]: Item Despawn Rate: 6000
[13:33:33] [Server thread/INFO]: Item Merge Radius: 2.5
[13:33:33] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[13:33:33] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[13:33:33] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[13:33:33] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[13:33:33] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[13:33:33] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:33:36] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:36] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:36] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:36] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:36] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:36] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:36] [Server thread/INFO]: Time elapsed: 3089 ms
[13:33:36] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[13:33:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:38] [Server thread/INFO]: Time elapsed: 1072 ms
[13:33:38] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[13:33:38] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:38] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[13:33:38] [Server thread/INFO]: Time elapsed: 593 ms
[13:33:38] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[13:33:39] [Server thread/INFO]: [NBTAPI] Found Minecraft: v1_20_R4! Trying to find NMS support
[13:33:39] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_20_R4' loaded!
[13:33:39] [Server thread/INFO]: [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[13:33:39] [Server thread/INFO]: [GroupManager] Enabling GroupManager v3.2 (Phoenix)
[13:33:39] [Server thread/INFO]: [GroupManager] OfflinePlayers cached ( 19 ).
[13:33:39] [Server thread/INFO]: World Found: world
[13:33:39] [Server thread/INFO]: Superperms support enabled.
[13:33:39] [Server thread/INFO]: Scheduled Data Saving is set for every 10 minutes!
[13:33:39] [Server thread/INFO]: Backups will be retained for 24 hours!
[13:33:39] [Server thread/INFO]: DataSource - YAML
[13:33:39] [Server thread/INFO]: version 3.2 (Phoenix) is enabled!
[13:33:39] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:33:39] [Server thread/INFO]: [Vault][Permission] GroupManager hooked.
[13:33:39] [Server thread/INFO]: [Vault] [Vault][Chat] GroupManager - Chat hooked.
[13:33:39] [Server thread/INFO]: [ChocoTreeChopper] Enabling ChocoTreeChopper v0.18
[13:33:39] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.1.0
[13:33:39] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.10+d9424b1
[13:33:39] [Server thread/INFO]: [ChestSort] Use permissions: true
[13:33:39] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[13:33:39] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[13:33:39] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[13:33:39] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[13:33:39] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[13:33:39] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[13:33:39] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[13:33:39] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[13:33:39] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[13:33:39] [Server thread/INFO]: [ChestSort] Check for updates: true
[13:33:39] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[13:33:39] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[13:33:39] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[13:33:39] [Server thread/ERROR]: You are running an unsupported server version!
[13:33:40] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[13:33:40] [Server thread/INFO]: No kits found to migrate.
[13:33:40] [Server thread/WARN]: java.lang.NoSuchMethodException: no such method: net.minecraft.server.MinecraftServer.v()boolean/invokeVirtual
[13:33:40] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName.makeAccessException(MemberName.java:915)
[13:33:40] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolveOrFail(MemberName.java:994)
[13:33:40] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandles$Lookup.resolveOrFail(MethodHandles.java:3750)
[13:33:40] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandles$Lookup.findVirtual(MethodHandles.java:2767)
[13:33:40] [Server thread/WARN]:     at net.ess3.nms.refl.providers.ReflServerStateProvider.<init>(ReflServerStateProvider.java:32)
[13:33:40] [Server thread/WARN]:     at com.earth2me.essentials.Essentials.onEnable(Essentials.java:396)
[13:33:40] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:267)
[13:33:40] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[13:33:40] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:492)
[13:33:40] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R4.CraftServer.enablePlugin(CraftServer.java:564)
[13:33:40] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R4.CraftServer.enablePlugins(CraftServer.java:478)
[13:33:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:634)
[13:33:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:419)
[13:33:40] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:265)
[13:33:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1010)
[13:33:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311)
[13:33:40] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[13:33:40] [Server thread/WARN]: Caused by: java.lang.NoSuchMethodError: 'boolean net.minecraft.server.MinecraftServer.v()'
[13:33:40] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandleNatives.resolve(Native Method)
[13:33:40] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolve(MemberName.java:962)
[13:33:40] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolveOrFail(MemberName.java:991)
[13:33:40] [Server thread/WARN]:     ... 15 more
[13:33:40] [Server thread/INFO]: Loaded 39094 items from items.json.
[13:33:40] [Server thread/INFO]: Using locale en_US
[13:33:40] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[13:33:40] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[13:33:40] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[13:33:40] [Server thread/INFO]: Using Vault based permissions (GroupManager)
[13:33:40] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.1
[13:33:40] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[13:33:40] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1
[13:33:40] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[13:33:40] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.10+d9424b1
[13:33:40] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[13:33:40] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[13:33:40] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[13:33:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[13:33:40] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:33:41] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.8
[13:33:42] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[13:33:42] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[13:33:42] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[13:33:42] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[13:33:42] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 42 ms
[13:33:42] [Server thread/INFO]: [NBTAPI] Found Minecraft: v1_20_R4! Trying to find NMS support
[13:33:42] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_20_R4' loaded!
[13:33:42] [Server thread/INFO]: [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[13:33:42] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[13:33:43] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3558)
[13:33:43] [Server thread/INFO]: [Citizens] Loading external libraries
[13:33:43] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[13:33:43] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[13:33:43] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[13:33:44] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-bCUSTOM
[13:33:44] [Server thread/INFO]: [AuthMe] SQLite Setup finished
[13:33:44] [Server thread/INFO]: [AuthMe] Hooked into Vault!
[13:33:44] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[13:33:44] [pool-38-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[13:33:45] [Server thread/WARN]: [AuthMe] WARNING! The protectInventory feature requires ProtocolLib! Disabling it...
[13:33:45] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0 build n.CUSTOM successfully enabled!
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.10.0
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[13:33:45] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 662ms to complete
[13:33:45] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[13:33:45] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[13:33:45] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[13:33:46] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[13:33:46] [Server thread/INFO]: [GriefPrevention] 8 total claims loaded.
[13:33:46] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[13:33:46] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[13:33:46] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[13:33:46] [Server thread/INFO]: [GriefPrevention] Boot finished.
[13:33:46] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.9.0-SNAPSHOT (build 522)
[13:33:46] [Server thread/INFO]: [Sentinel] Sentinel loading...
[13:33:46] [Server thread/INFO]: [Sentinel] Running on java version: 21.0.3
[13:33:46] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[13:33:46] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[13:33:46] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[13:33:46] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[13:33:46] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v1.0.3
[13:33:46] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[13:33:46] [Server thread/WARN]: [BeautyQuests] You are not running the Paper software.
It is highly recommended to use it for extended features and more stability.
[13:33:46] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_20_R4.
[13:33:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[13:33:47] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.025s)!
[13:33:47] [Server thread/INFO]: [BeautyQuests] Loaded start particles: DUST in shape POINT with color R255 G255 B0
[13:33:47] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: HAPPY_VILLAGER in shape BAR
[13:33:47] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE in shape SPOT
[13:33:47] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[13:33:47] [Server thread/INFO]: [BeautyQuests] Adding citizens as a npc factory
[13:33:47] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.integrations.worldguard.WorldGuardEntryHandler
[13:33:47] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.4.2-1
[13:33:47] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[13:33:47] [Server thread/WARN]: Could not register alias sg because it contains commands that do not exist: economyshopgui -
[13:33:48] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:33:48] [Server thread/INFO]: Done (20.709s)! For help, type "help"
[13:33:48] [Server thread/INFO]: Starting GS4 status listener
[13:33:48] [Server thread/INFO]: Thread Query Listener started
[13:33:48] [Query Listener #1/INFO]: Query running on 0.0.0.0:9898
[13:33:48] [Server thread/INFO]: JMX monitoring enabled
[13:33:48] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:33:48] [Craft Scheduler Thread - 4/INFO]: Fetching version information...
[13:33:48] [Craft Scheduler Thread - 0/INFO]: [DecentHolograms] Loading holograms... 
[13:33:48] [Craft Scheduler Thread - 2/INFO]: 
[13:33:48] [Craft Scheduler Thread - 2/INFO]: A newer version of DecentHolograms is available. Download it from: 
[13:33:48] [Craft Scheduler Thread - 2/INFO]: - https://www.spigotmc.org/resources/96927/
[13:33:48] [Craft Scheduler Thread - 2/INFO]: - https://modrinth.com/plugin/decentholograms
[13:33:48] [Craft Scheduler Thread - 0/INFO]: [DecentHolograms] Loaded 37 holograms!
[13:33:48] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[13:33:48] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[13:33:48] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[13:33:48] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 308 total sources
[13:33:48] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[13:33:48] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[13:33:48] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[13:33:49] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:33:49] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[13:33:49] [Craft Scheduler Thread - 0/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[13:33:49] [Craft Scheduler Thread - 0/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[13:33:49] [Craft Scheduler Thread - 0/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[13:33:49] [Server thread/INFO]: Bukkit Permissions Updated!
[13:33:49] [Craft Scheduler Thread - 0/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins/AuthMe/GeoLite2-Country.mmdb (No such file or directory)
[13:33:49] [Craft Scheduler Thread - 5/INFO]: No new version available
[13:33:56] [Server thread/INFO]: [Citizens] Loaded 98 NPCs.
[13:33:56] [Server thread/ERROR]: [BeautyQuests] Error when deserializing the stage 0 for the quest 20
java.lang.IllegalArgumentException: Can't find the mob 25 for factory citizensNPC
    at fr.skytasul.quests.mobs.Mob.deserialize(Mob.java:149) ~[?:?]
    at fr.skytasul.quests.stages.StageMobs.deserialize(StageMobs.java:114) ~[?:?]
    at fr.skytasul.quests.stages.StageMobs.deserialize(StageMobs.java:35) ~[?:?]
    at fr.skytasul.quests.api.stages.types.AbstractCountableStage.deserialize(AbstractCountableStage.java:227) ~[?:?]
    at fr.skytasul.quests.stages.StageMobs.deserialize(StageMobs.java:148) ~[?:?]
    at fr.skytasul.quests.structure.StageControllerImplementation.loadFromConfig(StageControllerImplementation.java:261) ~[?:?]
    at fr.skytasul.quests.structure.StageControllerImplementation.loadFromConfig(StageControllerImplementation.java:253) ~[?:?]
    at fr.skytasul.quests.structure.QuestBranchImplementation.load(QuestBranchImplementation.java:385) ~[?:?]
    at fr.skytasul.quests.structure.BranchesManagerImplementation.deserialize(BranchesManagerImplementation.java:165) ~[?:?]
    at fr.skytasul.quests.structure.QuestImplementation.deserialize(QuestImplementation.java:613) ~[?:?]
    at fr.skytasul.quests.structure.QuestImplementation.loadFromFile(QuestImplementation.java:598) ~[?:?]
    at fr.skytasul.quests.structure.QuestsManagerImplementation.lambda$new$3(QuestsManagerImplementation.java:48) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at fr.skytasul.quests.structure.QuestsManagerImplementation.<init>(QuestsManagerImplementation.java:44) ~[?:?]
    at fr.skytasul.quests.BeautyQuests.loadAllDatas(BeautyQuests.java:513) ~[?:?]
    at fr.skytasul.quests.BeautyQuests.access$000(BeautyQuests.java:64) ~[?:?]
    at fr.skytasul.quests.BeautyQuests$1.run(BeautyQuests.java:172) ~[?:?]
    at org.bukkit.craftbukkit.v1_20_R4.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4195-b-Spigot-f6a4805-6524758]
    at org.bukkit.craftbukkit.v1_20_R4.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4195-b-Spigot-f6a4805-6524758]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1397) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4195-b-Spigot-f6a4805-6524758]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:402) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4195-b-Spigot-f6a4805-6524758]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1293) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4195-b-Spigot-f6a4805-6524758]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1064) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4195-b-Spigot-f6a4805-6524758]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4195-b-Spigot-f6a4805-6524758]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[13:33:56] [Server thread/ERROR]: [BeautyQuests] Error when deserializing the branch 0 for the quest 20 (false return)
[13:33:56] [Server thread/ERROR]: [BeautyQuests] Quest from file 20.yml not activated
[13:33:56] [Server thread/INFO]: [BeautyQuests] 39 quests loaded (0.164s)!
[13:33:56] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 564
[13:33:56] [Craft Scheduler Thread - 2/INFO]: [Vault] Checking for Updates ... 
[13:33:56] [Server thread/WARN]: [ChestSort] **************************************************
[13:33:56] [Server thread/WARN]: [ChestSort] * There is a new version of ChestSort available!
[13:33:56] [Server thread/WARN]: [ChestSort] *  
[13:33:56] [Server thread/WARN]: [ChestSort] * Your version:   14.1.0
[13:33:56] [Server thread/WARN]: [ChestSort] * Latest version: 14.2.0
[13:33:56] [Server thread/WARN]: [ChestSort] *  
[13:33:56] [Server thread/WARN]: [ChestSort] * Please update to the newest version.
[13:33:56] [Server thread/WARN]: [ChestSort] *  
[13:33:56] [Server thread/WARN]: [ChestSort] * Download:
[13:33:56] [Server thread/WARN]: [ChestSort] *   https://www.chestsort.de
[13:33:56] [Server thread/WARN]: [ChestSort] **************************************************
[13:33:56] [Server thread/WARN]: [BeautyQuests] *****************************************************
[13:33:56] [Server thread/WARN]: [BeautyQuests] * There is a new version of BeautyQuests available!
[13:33:56] [Server thread/WARN]: [BeautyQuests] *  
[13:33:56] [Server thread/WARN]: [BeautyQuests] * Your version:   1.0.3
[13:33:56] [Server thread/WARN]: [BeautyQuests] * Latest version: 1.0.4
[13:33:56] [Server thread/WARN]: [BeautyQuests] *  
[13:33:56] [Server thread/WARN]: [BeautyQuests] * Please update to the newest version.
[13:33:56] [Server thread/WARN]: [BeautyQuests] *  
[13:33:56] [Server thread/WARN]: [BeautyQuests] * Download:
[13:33:56] [Server thread/WARN]: [BeautyQuests] *   https://www.spigotmc.org/resources/39255
[13:33:56] [Server thread/WARN]: [BeautyQuests] *****************************************************
[13:33:56] [Craft Scheduler Thread - 2/INFO]: [Vault] No new version available
[13:33:56] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[13:33:57] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8839ms or 176 ticks behind
[13:34:51] [User Authenticator #1/INFO]: Async Player Login event refresh data... 
[13:34:51] [User Authenticator #1/INFO]: Async Player Login event finshed. 
[13:34:51] [User Authenticator #1/INFO]: UUID of player ____VIP____ is 9bab9255-988c-3731-bb4b-0138108f1217
[13:34:52] [Server thread/INFO]: ____VIP____ joined the game
[13:34:52] [Server thread/INFO]: ____VIP____[/**.**.**.**:50931] logged in with entity id 1282 at ([world]-56.21935716751724, 126.0, -171.99429844147727)
[13:34:55] [Craft Scheduler Thread - 5/INFO]: [AuthMe] ____VIP____ logged in **.**.**.**
[13:34:56] [Async Chat Thread - #0/INFO]: [ kkk Elite kkk ]____VIP____ A s A
[13:34:57] [Server thread/INFO]: ____VIP____ issued server command: /bal
[13:35:03] [Server thread/INFO]: ____VIP____ issued server command: /balance
[13:35:04] [Server thread/INFO]: ____VIP____ issued server command: /baltop
[13:35:13] [Server thread/INFO]: ____VIP____ issued server command: /skill
[13:37:13] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[13:37:16] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 spawn2
[13:37:16] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 spawn2
[13:37:17] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 spawn2
[13:37:33] [Server thread/INFO]: ____VIP____ issued server command: /rg flag spawn allowed-cmds
[13:37:38] [Server thread/INFO]: ____VIP____ issued server command: /rg list
[13:37:42] [Server thread/INFO]: ____VIP____ issued server command: /rg list -w "world" 2
[13:37:48] [Server thread/INFO]: ____VIP____ issued server command: /rg
[13:37:51] [Server thread/INFO]: ____VIP____ issued server command: /rg select
[13:38:28] [Server thread/INFO]: ____VIP____ issued server command: /skill
[13:42:44] [Server thread/INFO]: ____VIP____ issued server command: /skill reload
[13:42:46] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[13:42:46] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 0 ms
[13:42:46] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[13:42:46] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 308 total sources
[13:42:46] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[13:42:46] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[13:42:46] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[13:42:46] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[13:42:54] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#6
[13:43:05] [Server thread/INFO]: Created a User for Pig Lord (93995d19-7928-2bb5-96f4-7e0ba85288d0) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[13:43:13] [Server thread/INFO]: ____VIP____ issued server command: /heal
[13:43:19] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:43:23] [Server thread/INFO]: ____VIP____ issued server command: /speed 3
[13:43:25] [Server thread/INFO]: ____VIP____ issued server command: /skill
[13:43:32] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:43:39] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:43:44] [Server thread/INFO]: ____VIP____ issued server command: /heal
[13:43:57] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:44:09] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:44:33] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:44:37] [Server thread/INFO]: ____VIP____ issued server command: /heal
[13:44:42] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:44:50] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:45:06] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:45:15] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:45:22] [Server thread/INFO]: ____VIP____ issued server command: /heal
[13:45:24] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:45:31] [Server thread/INFO]: ____VIP____ issued server command: /attribute ____VIP____ minecraft:generic.attack_damage base get
[13:45:33] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:45:39] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:45:49] [Server thread/INFO]: ____VIP____ issued server command: /heal
[13:45:51] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:45:55] [Server thread/INFO]: Base value for attribute Max Health for entity ____VIP____ set to 55.0
[13:46:17] [Server thread/INFO]: ____VIP____ issued server command: /attribute ____VIP____ minecraft:generic.max_health base get
[13:46:23] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:48:32] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:48:43] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[13:48:46] [Server thread/INFO]: ____VIP____ issued server command: /heal
[13:48:57] [Craft Scheduler Thread - 7/INFO]: [BeautyQuests] Datas saved ~ periodic save
[13:49:29] [Server thread/INFO]: ____VIP____ issued server command: /eshop addhanditem Custom 750000000 750000000
[13:49:30] [Server thread/INFO]: ____VIP____ issued server command: /sreload
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[13:49:31] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[13:49:33] [Server thread/INFO]: ____VIP____ issued server command: /shop
[13:49:35] [Server thread/INFO]: ____VIP____ issued server command: /sreload
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[13:49:35] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[13:49:36] [Server thread/INFO]: ____VIP____ issued server command: /shop
[13:51:23] [Server thread/INFO]: ____VIP____ issued server command: /shop
[13:51:51] [Server thread/INFO]: ____VIP____ issued server command: /sreload
[13:51:51] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[13:51:52] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[13:51:52] [Server thread/INFO]: ____VIP____ issued server command: /shop
[13:52:09] [Server thread/INFO]: ____VIP____ issued server command: /home
[13:52:22] [Server thread/INFO]: Villager EntityVillagerNPC['Villager'/9893, l='ServerLevel[world]', x=614.59, y=-33.00, z=-396.88] died, message: 'Villager hit the ground too hard while trying to escape Villager'
[13:52:22] [Server thread/INFO]: Named entity EntityVillagerNPC['Villager'/9893, l='ServerLevel[world]', x=614.59, y=-33.00, z=-396.88] died: Villager was doomed to fall by Villager
[13:52:53] [Server thread/INFO]: ____VIP____ issued server command: /sg
[13:53:00] [Server thread/INFO]: Shop >> [ kkk Elite kkk ]____VIP____ sold 2x Guardian Helm(Custom.page1.items.28), 1x Guardian Boots(Custom.page1.items.31), 15x Full Attack(Custom.page1.items.17), 3x Guardian Leggings(Custom.page1.items.30), 2x Guardian Chestplate(Custom.page1.items.29) for $17,250,000,000.00 with the sell gui.
[13:53:04] [Server thread/INFO]: ____VIP____ issued server command: /heal
[13:56:51] [Server thread/INFO]: ____VIP____ issued server command: /worldguard reload
[13:56:51] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[13:56:51] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[13:56:51] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[13:56:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[13:56:51] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:57:56] [Server thread/INFO]: ____VIP____ issued server command: /mangaddp Starter auraskills.command.help
[13:58:09] [Server thread/INFO]: ____VIP____ issued server command: /mangaddp Starter auraskills.command.mana
[13:58:20] [Server thread/INFO]: ____VIP____ issued server command: /mangaddp Starter auraskills.command.skills
[13:58:27] [Server thread/INFO]: ____VIP____ issued server command: /mangaddp Starter auraskills.command.stats
[13:59:08] [Server thread/INFO]: ____VIP____ issued server command: /manload
[13:59:08] [Server thread/WARN]: Scheduled Data Saving is Disabled!
[13:59:08] [Server thread/INFO]: version 3.2 (Phoenix) is disabled!
[13:59:08] [Server thread/INFO]: World Found: world
[13:59:08] [Server thread/INFO]: Scheduled Data Saving is set for every 10 minutes!
[13:59:08] [Server thread/INFO]: Backups will be retained for 24 hours!
[13:59:08] [Server thread/INFO]: DataSource - YAML
[13:59:08] [Server thread/INFO]: version 3.2 (Phoenix) is enabled!
[13:59:08] [Server thread/INFO]: Bukkit Permissions Updated!
[13:59:08] [Craft Scheduler Thread - 7/INFO]: No new version available
[13:59:12] [Server thread/INFO]: ____VIP____ issued server command: /shop
[13:59:14] [Server thread/INFO]: ____VIP____ issued server command: /skill
[14:00:16] [Server thread/INFO]: ____VIP____ issued server command: /editskills
[14:00:23] [Server thread/INFO]: ____VIP____ issued server command: /help skill
[14:00:26] [Server thread/INFO]: ____VIP____ issued server command: /help
[14:00:30] [Server thread/INFO]: ____VIP____ issued server command: /help AuraSkills
[14:00:33] [Server thread/INFO]: ____VIP____ issued server command: /help AuraSkills 2
[14:00:36] [Server thread/INFO]: ____VIP____ issued server command: /help AuraSkills 3
[14:02:02] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:02:19] [Server thread/INFO]: ____VIP____ issued server command: /dh l add updates 1 &6&l[ &u&l/skill &6&l]
[14:02:23] [Server thread/INFO]: ____VIP____ issued server command: /skill
[14:03:00] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:03:04] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 pvp
[14:03:05] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 pvp
[14:03:05] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 pvp
[14:03:25] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 4 pvp blocked-cmds /fly, /eheal, /tp, /spawn
[14:03:36] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 pvp
[14:03:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:03:47] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 6 pvp
[14:03:53] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 pvp
[14:03:57] [Craft Scheduler Thread - 7/INFO]: [BeautyQuests] Datas saved ~ periodic save
[14:03:58] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 pvp exit DENY
[14:04:05] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 pvp exit-via-teleport ALLOW
[14:04:09] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 pvp entry DENY
[14:04:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:04:13] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:04:14] [Server thread/INFO]: ____VIP____ issued server command: /deop ____VIP____
[14:04:14] [Server thread/INFO]: [____VIP____: Made ____VIP____ no longer a server operator]
[14:04:16] [Server thread/INFO]: ____VIP____ issued server command: /warp pvp
[14:04:26] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 pvp entry ALLOW
[14:04:36] [Server thread/INFO]: Made ____VIP____ a server operator
[14:04:40] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 pvp entry ALLOW
[14:04:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:04:41] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 pvp entry 
[14:04:49] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 pvp entry ALLOW
[14:04:54] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 pvp enderpearl DENY
[14:04:59] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 pvp
[14:05:02] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 4 pvp invincible DENY
[14:05:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:05:11] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 pvp
[14:05:13] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 pvp
[14:05:22] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 2 pvp item-pickup DENY
[14:05:27] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 2 pvp item-drop ALLOW
[14:05:30] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 2 pvp exp-drops DENY
[14:05:32] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 1 pvp
[14:05:37] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 1 pvp tnt DENY
[14:05:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:05:46] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 pvp
[14:05:46] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 pvp
[14:05:47] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 pvp
[14:05:47] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 pvp
[14:05:54] [Server thread/INFO]: ____VIP____ issued server command: /deop ____VIP____
[14:05:54] [Server thread/INFO]: [____VIP____: Made ____VIP____ no longer a server operator]
[14:05:55] [Server thread/INFO]: ____VIP____ issued server command: /warp pvp
[14:05:57] [Server thread/INFO]: ____VIP____ issued server command: /fly
[14:06:03] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:06:04] [Server thread/INFO]: ____VIP____ issued server command: /eheal
[14:06:06] [Server thread/WARN]: ____VIP____ moved wrongly!
[14:06:09] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:06:11] [Server thread/INFO]: ____VIP____ issued server command: /warp spawn
[14:06:13] [Server thread/INFO]: ____VIP____ issued server command: /fly
[14:06:15] [Server thread/INFO]: ____VIP____ issued server command: /warp pvp
[14:08:20] [Server thread/INFO]: ____VIP____ issued server command: /rg flag pvp blocked-effects levitation
[14:08:28] [Server thread/INFO]: Made ____VIP____ a server operator
[14:08:30] [Server thread/INFO]: ____VIP____ issued server command: /rg flag <region> blocked-effects levitation
[14:08:32] [Server thread/INFO]: ____VIP____ issued server command: /rg flag pvp blocked-effects levitation
[14:09:05] [Server thread/INFO]: ____VIP____ issued server command: /loot
[14:09:12] [Server thread/INFO]: ____VIP____ issued server command: /skill
[14:09:45] [Server thread/INFO]: ____VIP____ issued server command: //wand
[14:10:01] [Server thread/INFO]: ____VIP____ issued server command: /up 1
[14:10:15] [Server thread/INFO]: ____VIP____ issued server command: /up 1
[14:10:17] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[14:10:23] [Server thread/INFO]: ____VIP____ issued server command: /warp pvp1
[14:10:54] [Server thread/INFO]: ____VIP____ issued server command: /rg flag spawn2 exit-message
[14:10:56] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" spawn2
[14:10:58] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 spawn2
[14:10:58] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 spawn2
[14:10:59] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 spawn2
[14:10:59] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 spawn2
[14:11:03] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 spawn2 farewell null
[14:11:08] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 spawn2 farewell
[14:11:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:11:12] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 spawn2 notify-leave 
[14:11:25] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#1
[14:11:30] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:11:31] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 boss
[14:11:31] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 boss
[14:11:32] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 boss
[14:11:33] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 boss
[14:11:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:11:44] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 boss greeting-title &d&lBoss #1
[14:11:58] [Server thread/INFO]: ____VIP____ issued server command: /pawn
[14:11:59] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:12:00] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#1
[14:12:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:12:25] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#2
[14:12:47] [Server thread/INFO]: Created a User for Lagoon (1c4d35e6-be5a-2846-b7c8-139d4ac7f13f) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:12:53] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:12:54] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#2
[14:13:03] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#1
[14:13:05] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:13:07] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 boss
[14:13:07] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 boss
[14:13:08] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 boss
[14:13:10] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 boss
[14:13:12] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 boss greeting-title
[14:13:13] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:13:15] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:13:17] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 spawn2
[14:13:17] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 spawn2
[14:13:17] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 spawn2
[14:13:17] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 spawn2
[14:13:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:13:53] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 spawn2 greeting-title &c&lcl❟❛❟ &6&lSpawn &c&lcl❟❛❟
[14:13:55] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:13:59] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2587ms or 51 ticks behind
[14:14:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:14:12] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 spawn2 greeting-title &c&lcl❟❛❟ &6&lSpawn &c&lcl❟❛❟
[14:14:13] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:14:16] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#1
[14:14:17] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:14:29] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 spawn2 greeting-title &c&l❟❛❟ &6&lSpawn &c&l❟❛❟
[14:14:38] [Server thread/INFO]: ____VIP____ issued server command: /warp Planet
[14:14:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:14:58] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:15:01] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:15:14] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#2
[14:15:16] [Server thread/INFO]: ____VIP____ issued server command: /warp Planet
[14:15:26] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" planet
[14:15:27] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 planet
[14:15:27] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 planet
[14:15:27] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 planet
[14:15:27] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 planet
[14:15:50] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 planet greeting-title &8&lPlanet
[14:15:52] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:15:56] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#3
[14:15:57] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:15:59] [Server thread/INFO]: ____VIP____ issued server command: /warp Planet
[14:16:08] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:16:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:16:12] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#2
[14:16:13] [Server thread/INFO]: ____VIP____ issued server command: /warp Planet
[14:16:17] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:16:18] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" planet
[14:16:20] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 planet
[14:16:20] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 planet
[14:16:20] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 planet
[14:16:21] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 planet
[14:16:23] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 planet greeting-title
[14:16:27] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:16:28] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" spawn2
[14:16:29] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 spawn2
[14:16:29] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 spawn2
[14:16:29] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 spawn2
[14:16:29] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 spawn2
[14:16:33] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 spawn2 greeting-title
[14:16:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:16:57] [Server thread/INFO]: ____VIP____ issued server command: /spawn
[14:17:29] [Server thread/INFO]: Created a User for Leaf Hunter (3beefe16-7c0b-243d-a423-4b8d44ddfbc1) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:17:36] [Server thread/INFO]: Created a User for Leaf Hunter (bb021d11-9dae-2bf2-8162-ebdf4eb67796) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:17:39] [Server thread/INFO]: Created a User for Leaf Hunter (24761259-e7e8-278e-9f91-61f47d6c29a8) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:17:51] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#5
[14:17:59] [Server thread/INFO]: Created a User for Kabuto (f9c229ed-a5c9-26d8-9d42-ea3d1e482dae) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:18:00] [Server thread/INFO]: Created a User for Millennium (c69afd25-5d49-21a5-be10-44a250ebbf5f) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:18:01] [Server thread/INFO]: Created a User for Bakura (aea16ae3-bb31-2b6e-981b-7da925260261) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:18:10] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:18:24] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:18:36] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:18:52] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:18:59] [Craft Scheduler Thread - 7/INFO]: [BeautyQuests] Datas saved ~ periodic save
[14:19:07] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:19:20] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:19:25] [Server thread/INFO]: Essentials updated the underlying Player object for f9c229ed-a5c9-26d8-9d42-ea3d1e482dae
[14:19:28] [Server thread/INFO]: Essentials updated the underlying Player object for aea16ae3-bb31-2b6e-981b-7da925260261
[14:19:29] [Server thread/INFO]: Essentials updated the underlying Player object for c69afd25-5d49-21a5-be10-44a250ebbf5f
[14:19:36] [Server thread/INFO]: Essentials updated the underlying Player object for aea16ae3-bb31-2b6e-981b-7da925260261
[14:19:39] [Server thread/INFO]: Essentials updated the underlying Player object for f9c229ed-a5c9-26d8-9d42-ea3d1e482dae
[14:19:40] [Server thread/INFO]: Essentials updated the underlying Player object for c69afd25-5d49-21a5-be10-44a250ebbf5f
[14:25:33] [Server thread/INFO]: Essentials updated the underlying Player object for f9c229ed-a5c9-26d8-9d42-ea3d1e482dae
[14:25:33] [Server thread/INFO]: Essentials updated the underlying Player object for aea16ae3-bb31-2b6e-981b-7da925260261
[14:25:33] [Server thread/INFO]: Essentials updated the underlying Player object for c69afd25-5d49-21a5-be10-44a250ebbf5f
[14:25:42] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:25:43] [Server thread/INFO]: Essentials updated the underlying Player object for aea16ae3-bb31-2b6e-981b-7da925260261
[14:25:44] [Server thread/INFO]: Essentials updated the underlying Player object for f9c229ed-a5c9-26d8-9d42-ea3d1e482dae
[14:25:45] [Server thread/INFO]: Essentials updated the underlying Player object for c69afd25-5d49-21a5-be10-44a250ebbf5f
[14:26:12] [Server thread/INFO]: ____VIP____ issued server command: /eshop addhanditem Custom 500000000 350000000
[14:26:12] [Server thread/INFO]: ____VIP____ issued server command: /sreload
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[14:26:12] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[14:26:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[14:26:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[14:26:43] [Server thread/INFO]: ____VIP____ issued server command: /shop
[14:27:18] [Server thread/INFO]: ____VIP____ issued server command: /sreload
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[14:27:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[14:27:18] [Server thread/INFO]: ____VIP____ issued server command: /shop
[14:27:33] [Server thread/INFO]: ____VIP____ issued server command: /sreload
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[14:27:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[14:27:34] [Server thread/INFO]: ____VIP____ issued server command: /shop
[14:27:48] [Server thread/INFO]: ____VIP____ issued server command: /sreload
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[14:27:48] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[14:28:32] [Server thread/INFO]: ____VIP____ issued server command: /nick &f&lWraith
[14:28:33] [Async Chat Thread - #2/INFO]: [ kkk Elite kkk ] Wraith A . A
[14:28:34] [Server thread/INFO]: ____VIP____ issued server command: /bal
[14:28:38] [Server thread/INFO]: ____VIP____ issued server command: /sg
[14:28:40] [Server thread/INFO]: Shop >> [ kkk Elite kkk ] Wraith sold 1x Divine Boots(Custom.page1.items.43), 1x Divine Sword(Custom.page1.items.19), 1x Divine Helm(Custom.page1.items.40) for $950,000,000.00 with the sell gui.
[14:28:46] [Server thread/INFO]: Essentials updated the underlying Player object for aea16ae3-bb31-2b6e-981b-7da925260261
[14:28:48] [Server thread/INFO]: Essentials updated the underlying Player object for f9c229ed-a5c9-26d8-9d42-ea3d1e482dae
[14:28:49] [Server thread/INFO]: Essentials updated the underlying Player object for c69afd25-5d49-21a5-be10-44a250ebbf5f
[14:28:55] [Server thread/INFO]: Essentials updated the underlying Player object for aea16ae3-bb31-2b6e-981b-7da925260261
[14:29:11] [Server thread/INFO]: Essentials updated the underlying Player object for f9c229ed-a5c9-26d8-9d42-ea3d1e482dae
[14:29:11] [Server thread/INFO]: Essentials updated the underlying Player object for c69afd25-5d49-21a5-be10-44a250ebbf5f
[14:29:12] [Server thread/INFO]: Essentials updated the underlying Player object for aea16ae3-bb31-2b6e-981b-7da925260261
[14:29:36] [Server thread/INFO]: ____VIP____ issued server command: /shop
[14:30:17] [Server thread/INFO]: ____VIP____ issued server command: /eshop deleteitem Custom page2.items.19
[14:30:18] [Server thread/INFO]: ____VIP____ issued server command: /sreload
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 section configs from /sections/
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 10 shop configs from /shops/
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 8 shop sections.
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.6...
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.0 but found v6.11.0.
[14:30:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[14:30:19] [Server thread/INFO]: ____VIP____ issued server command: /shop
[14:30:41] [Server thread/INFO]: ____VIP____ issued server command: /
[14:33:59] [Craft Scheduler Thread - 7/INFO]: [BeautyQuests] Datas saved ~ periodic save
[14:36:56] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:36:57] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 boss5
[14:36:57] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 boss5
[14:36:59] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 boss5
[14:37:06] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 4 boss5 time-lock 1800
[14:37:09] [Server thread/INFO]: ____VIP____ issued server command: /day
[14:37:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:37:14] [Server thread/INFO]: ____VIP____ issued server command: /time set 1800
[14:38:12] [Server thread/INFO]: ____VIP____ issued server command: /skill
[14:38:53] [Server thread/INFO]: ____VIP____ issued server command: /heal
[14:38:56] [Server thread/INFO]: ____VIP____ issued server command: /skill
[14:39:28] [Server thread/INFO]: Created a User for Kabuto (f9c229ed-a5c9-26d8-9d42-ea3d1e482dae) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:39:28] [Server thread/INFO]: Created a User for Millennium (c69afd25-5d49-21a5-be10-44a250ebbf5f) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:39:30] [Server thread/INFO]: Created a User for Bakura (aea16ae3-bb31-2b6e-981b-7da925260261) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:39:37] [Server thread/INFO]: Essentials updated the underlying Player object for f9c229ed-a5c9-26d8-9d42-ea3d1e482dae
[14:39:42] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#6
[14:39:46] [Server thread/INFO]: Created a User for Pig Lord (93995d19-7928-2bb5-96f4-7e0ba85288d0) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:39:58] [Server thread/INFO]: Essentials updated the underlying Player object for 93995d19-7928-2bb5-96f4-7e0ba85288d0
[14:39:59] [Server thread/INFO]: Created a User for BossKill (c1d8061a-c170-2794-b65b-9771e1f1b52a) for non Bukkit type: net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC$PlayerNPC
[14:40:37] [Server thread/INFO]: ____VIP____ issued server command: /warp VampireCathedral
[14:41:09] [Server thread/INFO]: ____VIP____ issued server command: /up 2
[14:41:21] [Server thread/INFO]: ____VIP____ issued server command: //copy
[14:41:24] [Server thread/INFO]: ____VIP____ issued server command: /rtp
[14:41:24] [Server thread/INFO]: [BetterRTP] This is not an error! UseLocationIfAvailable is set to `true`, but no location was found for ____VIP____! Using world defaults! (Maybe they dont have permission?)
[14:41:44] [Server thread/INFO]: ____VIP____ issued server command: //sphere
[14:41:59] [Server thread/INFO]: ____VIP____ issued server command: //sphere 0 50
[14:42:05] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5716ms or 114 ticks behind
[14:42:27] [Server thread/INFO]: ____VIP____ issued server command: /fly 10
[14:42:30] [Server thread/INFO]: ____VIP____ issued server command: /speed 10
[14:42:38] [Server thread/INFO]: ____VIP____ issued server command: //undo
[14:43:01] [Server thread/INFO]: ____VIP____ issued server command: //paste
[14:43:04] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2696ms or 53 ticks behind
[14:43:12] [Server thread/INFO]: ____VIP____ issued server command: /flyspeed 5
[14:43:32] [Server thread/INFO]: ____VIP____ issued server command: /gm 1
[14:43:34] [Server thread/INFO]: ____VIP____ issued server command: /ec
[14:44:19] [Server thread/INFO]: ____VIP____ issued server command: /flyspeed 1
[14:44:23] [Server thread/INFO]: ____VIP____ issued server command: /flyspeed 1
[14:49:07] [Craft Scheduler Thread - 16/INFO]: [BeautyQuests] Datas saved ~ periodic save
[14:49:27] [Server thread/INFO]: ____VIP____ issued server command: //wand
[14:49:40] [Server thread/INFO]: ____VIP____ issued server command: //copy
[14:49:42] [Server thread/INFO]: ____VIP____ issued server command: //rotate 90
[14:49:46] [Server thread/INFO]: ____VIP____ issued server command: //rotate 90
[14:49:54] [Server thread/INFO]: ____VIP____ issued server command: //paste
[14:49:59] [Server thread/INFO]: ____VIP____ issued server command: //undo
[14:50:09] [Server thread/INFO]: ____VIP____ issued server command: //flip
[14:50:32] [Server thread/INFO]: ____VIP____ issued server command: //flip me
[14:50:59] [Server thread/INFO]: ____VIP____ issued server command: //copy
[14:51:06] [Server thread/INFO]: ____VIP____ issued server command: //rotate 180
[14:51:07] [Server thread/INFO]: ____VIP____ issued server command: //paste
[14:51:12] [Server thread/INFO]: ____VIP____ issued server command: //undo
[14:51:20] [Server thread/INFO]: ____VIP____ issued server command: //paste
[14:51:31] [Server thread/INFO]: ____VIP____ issued server command: //copy
[14:51:33] [Server thread/INFO]: ____VIP____ issued server command: //rotate 180
[14:51:41] [Server thread/INFO]: ____VIP____ issued server command: //paste
[14:53:58] [Server thread/INFO]: ____VIP____ issued server command: /day
[14:54:29] [Server thread/INFO]: ____VIP____ issued server command: //set grass_block
[14:54:47] [Server thread/INFO]: ____VIP____ issued server command: //set grass_block
[14:55:08] [Server thread/INFO]: ____VIP____ issued server command: /createwarp Boss#7
[14:55:24] [Server thread/INFO]: ____VIP____ issued server command: //expand vert
[14:55:31] [Server thread/INFO]: ____VIP____ issued server command: /rg define boss7
[14:55:38] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[14:55:40] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 boss7
[14:55:41] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 boss7
[14:55:41] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 boss7
[14:55:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:55:44] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 boss7
[14:55:57] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 boss7 greeting-title &4&lVampire Cathedral
[14:56:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:56:40] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 boss7
[14:56:44] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 boss7
[14:56:46] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 mob-spawning DENY
[14:56:51] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 lava-fire DENY
[14:56:51] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 lightning DENY
[14:56:52] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 snow-fall DENY
[14:56:52] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 snow-melt DENY
[14:56:53] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 ice-form DENY
[14:56:53] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 ice-form 
[14:56:54] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 ice-form DENY
[14:56:54] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 ice-melt DENY
[14:56:54] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 frosted-ice-melt DENY
[14:56:55] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 frosted-ice-form DENY
[14:56:55] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 mushroom-growth DENY
[14:56:56] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 leaf-decay DENY
[14:56:56] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 grass-growth DENY
[14:56:57] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 mycelium-spread DENY
[14:56:58] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 vine-growth DENY
[14:57:00] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 3 boss7 fire-spread DENY
[14:57:02] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 boss7
[14:57:07] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 2 boss7 exp-drops ALLOW
[14:57:08] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 2 boss7 item-drop ALLOW
[14:57:09] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 2 boss7 item-pickup ALLOW
[14:57:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:57:14] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 1 boss7
[14:57:17] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 1 boss7 tnt DENY
[14:57:20] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 1 boss7 pvp DENY
[14:57:28] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 1 boss7 use ALLOW
[14:57:30] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 1 boss7 use 
[14:57:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:57:49] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 1 boss7 potion-splash ALLOW
[14:57:50] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 boss7
[14:57:50] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 boss7
[14:57:51] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 boss7
[14:58:00] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 4 boss7 invincible DENY
[14:58:04] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 boss7
[14:58:06] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 boss7 fall-damage DENY
[14:58:10] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 6 boss7
[14:58:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:58:17] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 7 boss7
[14:58:19] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 6 boss7
[14:58:23] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 6 boss7 auraskills-xp-gain ALLOW
[14:58:25] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 6 boss7 auraskills-xp-gain-agility ALLOW
[14:58:25] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 6 boss7 auraskills-xp-gain-alchemy ALLOW
[14:58:25] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 6 boss7 auraskills-xp-gain-archery ALLOW
[14:58:26] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 6 boss7 auraskills-xp-gain-defense ALLOW
[14:58:26] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 6 boss7 auraskills-xp-gain-enchanting ALLOW
[14:58:27] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 6 boss7 auraskills-xp-gain-endurance ALLOW
[14:58:27] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 7 boss7
[14:58:29] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-excavation ALLOW
[14:58:29] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-farming ALLOW
[14:58:30] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-fighting ALLOW
[14:58:30] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-fishing ALLOW
[14:58:31] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-foraging ALLOW
[14:58:31] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-forging ALLOW
[14:58:31] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-healing ALLOW
[14:58:33] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-mining ALLOW
[14:58:33] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 7 boss7 auraskills-xp-gain-sorcery ALLOW
[14:58:37] [Server thread/INFO]: ____VIP____ issued server command: /butcher
[14:58:41] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[14:58:55] [Server thread/INFO]: ____VIP____ issued server command: /npc create vampire
[14:59:01] [Server thread/INFO]: ____VIP____ issued server command: /npc rename &4&lVampire Lord
[14:59:07] [Server thread/INFO]: ____VIP____ issued server command: /npc skin Vampire Lord
[14:59:14] [Server thread/INFO]: ____VIP____ issued server command: /npc skin -l
[14:59:27] [Server thread/INFO]: ____VIP____ issued server command: /trait sentinel
[14:59:49] [Server thread/INFO]: ____VIP____ issued server command: /give ____VIP____ barrier
[14:59:49] [Server thread/ERROR]: null
com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown item 'minecraft:' at position 0: <--[HERE]
[15:00:44] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:01:05] [Server thread/INFO]: ____VIP____ issued server command: //copy
[15:01:08] [Server thread/INFO]: ____VIP____ issued server command: //rotate 180
[15:01:12] [Server thread/INFO]: ____VIP____ issued server command: //paste
[15:02:44] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[15:02:45] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 boss7
[15:02:45] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 boss7
[15:02:46] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 boss7
[15:02:49] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 5 boss7
[15:02:51] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 5 boss7 entry DENY
[15:03:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[15:04:07] [Craft Scheduler Thread - 16/INFO]: [BeautyQuests] Datas saved ~ periodic save
[15:04:31] [Server thread/INFO]: ____VIP____ issued server command: /shop
[15:04:34] [Server thread/INFO]: Shop >> ____VIP____ bought 33 x Netherite Ingot(Ingredients.page1.items.8) for $1,650,000.00 with the buy screen.
[15:06:28] [Server thread/INFO]: ____VIP____ has made the advancement [Crafting a New Look]
[15:06:36] [Server thread/INFO]: ____VIP____ issued server command: /shop
[15:06:43] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:06:43] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:06:43] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:06:43] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:06:43] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:07:23] [Server thread/INFO]: ____VIP____ issued server command: /time lock
[15:07:32] [Server thread/INFO]: ____VIP____ issued server command: /rg flags
[15:07:33] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 2 boss7
[15:07:35] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 3 boss7
[15:07:36] [Server thread/INFO]: ____VIP____ issued server command: /rg flags -w "world" -p 4 boss7
[15:07:42] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 4 boss7 time-lock 1800
[15:07:45] [Server thread/INFO]: ____VIP____ issued server command: /rg flag -w "world" -h 4 boss7 weather-lock clear
[15:07:50] [Server thread/INFO]: ____VIP____ issued server command: /day
[15:07:55] [Server thread/INFO]: ____VIP____ issued server command: /npc equip
[15:08:11] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[15:08:11] [Server thread/INFO]: ____VIP____ issued server command: /npc skin vampire
[15:08:26] [Server thread/INFO]: ____VIP____ issued server command: /enchant sharpness 5
[15:08:28] [Server thread/INFO]: ____VIP____ issued server command: /npc equip
[15:09:01] [Server thread/INFO]: ____VIP____ issued server command: /sentinel health 350
[15:09:07] [Server thread/INFO]: ____VIP____ issued server command: /sentinel armor 0.58
[15:09:12] [Server thread/INFO]: ____VIP____ issued server command: /sentinel addtarget players
[15:09:15] [Server thread/INFO]: ____VIP____ issued server command: /sentinel speed 3
[15:09:23] [Server thread/INFO]: ____VIP____ issued server command: /sentinel range 8
[15:09:28] [Server thread/INFO]: ____VIP____ issued server command: /sentinel chaserange 6
[15:09:31] [Server thread/INFO]: ____VIP____ issued server command: /sentinel removeignore owner
[15:09:34] [Server thread/INFO]: ____VIP____ issued server command: /sentinel addignore npcs
[15:09:41] [Server thread/INFO]: ____VIP____ issued server command: /sentinel attackrate 1.2
[15:09:47] [Server thread/INFO]: ____VIP____ issued server command: /sentinel respawntime 8
[15:09:52] [Server thread/INFO]: ____VIP____ issued server command: /sentinel damage 60
[15:09:57] [Server thread/INFO]: ____VIP____ issued server command: /sentinel deathxp
[15:10:02] [Server thread/INFO]: ____VIP____ issued server command: /sentinel deathxp 15000
[15:10:08] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --color RED
[15:10:12] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --style SEGMENTED_12
[15:10:15] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --track health
[15:10:25] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --title &4&lVampireLord
[15:10:32] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --range 20
[15:10:44] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --range 35
[15:10:50] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --range 45
[15:10:58] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --range 50
[15:11:06] [Server thread/INFO]: ____VIP____ issued server command: /npc bossbar --range 49
[15:11:23] [Server thread/INFO]: ____VIP____ issued server command: /ec
[15:12:24] [Server thread/INFO]: [Armor: Summoned new Diamond Helmet]
[15:12:24] [Server thread/INFO]: [Armor: Summoned new Diamond Chestplate]
[15:12:25] [Server thread/INFO]: [Armor: Summoned new Diamond Leggings]
[15:12:25] [Server thread/INFO]: [Armor: Summoned new Diamond Boots]
[15:12:35] [Server thread/INFO]: ____VIP____ issued server command: /ec
[15:13:17] [Server thread/INFO]: ____VIP____ issued server command: /shop
[15:13:21] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:13:21] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:13:21] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:13:21] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Silence Armor Trim Smithing Template(Other.page2.items.23) for $90,000.00 with the buy screen.
[15:13:25] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Rib Armor Trim Smithing Template(Other.page2.items.26) for $90,000.00 with the buy screen.
[15:13:26] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Rib Armor Trim Smithing Template(Other.page2.items.26) for $90,000.00 with the buy screen.
[15:13:26] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Rib Armor Trim Smithing Template(Other.page2.items.26) for $90,000.00 with the buy screen.
[15:13:52] [Server thread/INFO]: ____VIP____ issued server command: /sentinel drops
[15:14:01] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance
[15:14:04] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 1 3
[15:14:07] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 2 3
[15:14:09] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 3 3
[15:14:11] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 4 3
[15:14:38] [Server thread/INFO]: ____VIP____ issued server command: /sentinel spawnpoint
[15:14:56] [Server thread/INFO]: ____VIP____ issued server command: //wand
[15:15:08] [Server thread/INFO]: ____VIP____ issued server command: /up 50
[15:15:14] [Server thread/INFO]: ____VIP____ issued server command: /up 30
[15:15:16] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:15:28] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:15:34] [Server thread/INFO]: ____VIP____ issued server command: /flyspeed 7
[15:15:45] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:16:07] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:16:22] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:16:33] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:16:44] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:16:54] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:17:08] [Server thread/INFO]: ____VIP____ issued server command: /warp Boss#7
[15:17:16] [Server thread/INFO]: ____VIP____ issued server command: /flyspeed 1
[15:17:20] [Server thread/INFO]: ____VIP____ issued server command: /flyspeed 1
[15:19:07] [Craft Scheduler Thread - 20/INFO]: [BeautyQuests] Datas saved ~ periodic save
[15:19:37] [Server thread/INFO]: [GriefPrevention] ____VIP____ placed a sign @ world: x592, z-1125;A
[15:19:43] [Server thread/INFO]: ____VIP____ issued server command: //wand
[15:19:55] [Server thread/INFO]: ____VIP____ issued server command: //copy
[15:19:56] [Server thread/INFO]: ____VIP____ issued server command: //rotate 90
[15:20:07] [Server thread/INFO]: ____VIP____ issued server command: //paste
[15:20:38] [Server thread/INFO]: ____VIP____ issued server command: //paste
[15:20:40] [Server thread/INFO]: ____VIP____ issued server command: //rotate 90
[15:20:48] [Server thread/INFO]: ____VIP____ issued server command: /speed10
[15:20:50] [Server thread/INFO]: ____VIP____ issued server command: /speed 10
[15:21:10] [Server thread/INFO]: ____VIP____ issued server command: //paste
[15:21:20] [Server thread/INFO]: ____VIP____ issued server command: //rotate 90
[15:21:23] [Server thread/INFO]: ____VIP____ issued server command: //paste
[15:21:31] [Server thread/INFO]: ____VIP____ issued server command: //set barrier
[15:21:33] [Server thread/INFO]: ____VIP____ issued server command: //paste
[15:21:39] [Server thread/INFO]: ____VIP____ issued server command: //undo
[15:21:40] [Server thread/INFO]: ____VIP____ issued server command: //undo
[15:21:50] [Server thread/INFO]: ____VIP____ issued server command: //paste
[15:22:03] [Server thread/INFO]: ____VIP____ issued server command: /speed 5
[15:22:23] [Server thread/INFO]: ____VIP____ issued server command: /npc create --type SKELETON Skeleton
[15:22:35] [Server thread/INFO]: ____VIP____ issued server command: /npc rename &oUndead
[15:22:44] [Server thread/INFO]: ____VIP____ issued server command: /trait sentinel
[15:22:58] [Server thread/INFO]: ____VIP____ issued server command: /sentinel spawnpoint
[15:23:08] [Server thread/INFO]: ____VIP____ issued server command: /enchant sharpness 5
[15:23:15] [Server thread/INFO]: ____VIP____ issued server command: /npc equip
[15:23:31] [Server thread/INFO]: ____VIP____ issued server command: /sentinel health 700
[15:23:35] [Server thread/INFO]: ____VIP____ issued server command: /sentinel armor 0.6
[15:23:38] [Server thread/INFO]: ____VIP____ issued server command: /sentinel addtarget players
[15:23:42] [Server thread/INFO]: ____VIP____ issued server command: /sentinel speed 2
[15:23:46] [Server thread/INFO]: ____VIP____ issued server command: /sentinel range 5
[15:23:49] [Server thread/INFO]: ____VIP____ issued server command: /sentinel chaserange 4
[15:23:53] [Server thread/INFO]: ____VIP____ issued server command: /sentinel removeignore owner
[15:23:56] [Server thread/INFO]: ____VIP____ issued server command: /sentinel addignore npcs
[15:24:00] [Server thread/INFO]: ____VIP____ issued server command: /sentinel attackrate 1.2
[15:24:03] [Server thread/INFO]: ____VIP____ issued server command: /sentinel respawntime 1
[15:24:12] [Server thread/INFO]: ____VIP____ issued server command: /sentinel damage 80
[15:24:27] [Server thread/INFO]: ____VIP____ issued server command: /sentinel deathxp 4000
[15:24:37] [Server thread/INFO]: ____VIP____ issued server command: /shop
[15:25:26] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Divine Helm(Custom.page1.items.40) for $500,000,000.00 with the buy screen.
[15:25:28] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Divine Chestplate(Custom.page1.items.41) for $500,000,000.00 with the buy screen.
[15:25:36] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Divine Leggings(Custom.page1.items.42) for $500,000,000.00 with the buy screen.
[15:25:37] [Server thread/INFO]: Shop >> ____VIP____ bought 1 x Divine Boots(Custom.page1.items.43) for $500,000,000.00 with the buy screen.
[15:25:39] [Server thread/INFO]: ____VIP____ issued server command: /sentinel drops
[15:25:54] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance
[15:25:59] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 1 1
[15:26:01] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 2 1
[15:26:02] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 3 1
[15:26:03] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 4 1
[15:26:15] [Server thread/INFO]: ____VIP____ issued server command: /sentinel dropchance 5 16
[15:26:28] [Server thread/INFO]: ____VIP____ issued server command: /npc copy
[15:26:30] [Server thread/INFO]: ____VIP____ issued server command: /npc select
[15:26:44] [Server thread/INFO]: ____VIP____ issued server command: /npc tph
[15:26:54] [Server thread/INFO]: ____VIP____ issued server command: /npc copy
[15:27:05] [Server thread/INFO]: ____VIP____ issued server command: /npc select
[15:27:10] [Server thread/INFO]: ____VIP____ issued server command: /npc sell
[15:27:13] [Server thread/INFO]: ____VIP____ issued server command: /npc select
[15:27:18] [Server thread/INFO]: ____VIP____ issued server command: /npc tph
[15:27:31] [Server thread/INFO]: ____VIP____ issued server command: /npc select
[15:27:34] [Server thread/INFO]: ____VIP____ issued server command: /npc tph
[15:27:37] [Server thread/INFO]: ____VIP____ issued server command: /sentinel spawnpoint
[15:27:39] [Server thread/INFO]: ____VIP____ issued server command: /npc select
[15:27:46] [Server thread/INFO]: ____VIP____ issued server command: /npc tph
[15:27:51] [Server thread/INFO]: ____VIP____ issued server command: /sentinel spawnpoint
[15:28:01] [Server thread/INFO]: ____VIP____ issued server command: /npc select
[15:28:03] [Server thread/INFO]: ____VIP____ issued server command: /sentinel spawnpoint
[15:28:11] [Server thread/INFO]: ____VIP____ issued server command: /npc copy
[15:28:15] [Server thread/INFO]: ____VIP____ issued server command: /sentinel spawnpoint
[15:28:21] [Server thread/INFO]: ____VIP____ issued server command: /npc copy
[15:28:24] [Server thread/INFO]: ____VIP____ issued server command: /sentinel spawnpoint
[15:28:35] [Server thread/INFO]: ____VIP____ issued server command: /npc copy
[15:28:38] [Server thread/INFO]: ____VIP____ issued server command: /sentinel spawnpoint
[15:28:45] [Server thread/INFO]: ____VIP____ issued server command: /gm survival
[15:29:04] [Server thread/INFO]: ____VIP____ issued server command: /npc select
[15:29:07] [Server thread/INFO]: ____VIP____ issued server command: /sentinel damage
[15:29:09] [Server thread/INFO]: ____VIP____ issued server command: /sentinel damage 100
[15:29:13] [Server thread/INFO]: Named entity EntitySkeletonNPC['Undead'/40275, l='ServerLevel[world]', x=611.68, y=160.00, z=-1132.16] died: Undead was slain by ____VIP____
[15:29:18] [Server thread/INFO]: ____VIP____ issued server command: /gm 1
[15:29:24] [Server thread/INFO]: ____VIP____ issued server command: /gm survival
[15:29:34] [Server thread/INFO]: ____VIP____ issued server command: /sentinel accuracy
[15:30:24] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weaponredirect
[15:30:34] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weapondamage
[15:30:38] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weapondamage 40
[15:30:44] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weapondamage diamond_sword
[15:30:52] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weapondamage
[15:31:09] [Server thread/INFO]: Named entity EntitySkeletonNPC['Undead'/40498, l='ServerLevel[world]', x=609.62, y=160.00, z=-1131.72] died: Undead was slain by ____VIP____
[15:31:16] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weapondamage
[15:31:20] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weapondamage diamond_sword 50
[15:31:26] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weapondamage diamond_sword 100
[15:31:31] [Server thread/INFO]: Named entity EntitySkeletonNPC['Undead'/40824, l='ServerLevel[world]', x=609.59, y=160.00, z=-1130.21] died: Undead was slain by ____VIP____
[15:31:42] [Server thread/INFO]: ____VIP____ issued server command: /sentinel weaponredirect
[15:32:05] [Server thread/INFO]: ____VIP____ issued server command: /gm 1
[15:32:10] [Server thread/INFO]: ____VIP____ issued server command: /npc select
[15:32:12] [Server thread/INFO]: ____VIP____ issued server command: /sentinel knockback
[15:32:20] [Server thread/INFO]: ____VIP____ issued server command: /npc knockback
[15:34:08] [Craft Scheduler Thread - 20/INFO]: [BeautyQuests] Datas saved ~ periodic save