Paste #136123: Unnamed Server Log Paste

Date: 2025/09/08 17:18:43 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[00:10:00] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.8+9-LTS; Eclipse Adoptium Temurin-21.0.8+9) on Linux 6.12.41+deb13-amd64 (amd64)
[00:10:00] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) for Minecraft 1.21.4
[00:10:00] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[00:10:00] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/CommandTimers.jar'...
[00:10:00] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CommandTimers.jar' in 104ms.
[00:10:01] [ServerMain/INFO]: [PluginInitializerManager] Initialized 20 plugins
[00:10:01] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - FancyHolograms (2.7.0), FancyNpcs (2.7.1)
[00:10:01] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (18):
 - Citizens (2.0.37-SNAPSHOT (build 3727)), CitizensPlaceholderAPI (1.3), CommandTimers (1.0), ConditionalEvents (4.67.1), CrazyVouchers (4.1.1), DecentHolograms (2.9.7), EasyPlaceholders (2.5-BETA-4), Essentials (2.20.1), FastAsyncWorldEdit (2.13.2-SNAPSHOT-1167;3d3124d), HoloBroadcast (4.1.0), LuckPerms (5.5.11), PlaceholderAPI (2.11.7-DEV-null), ServerVariables (2.8.1), Vault (2.15.1), ViaBackwards (5.4.2), ViaVersion (5.4.2), VoidGen (2.3.0), svarcreator (1.0.1)
[00:10:02] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[00:10:02] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[00:10:02] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 102.1ms
[00:10:03] [ServerMain/INFO]: Loaded 1370 recipes
[00:10:03] [ServerMain/INFO]: Loaded 1481 advancements
[00:10:03] [Server thread/INFO]: Starting minecraft server version 1.21.4
[00:10:03] [Server thread/INFO]: Loading properties
[00:10:03] [Server thread/INFO]: This server is running Paper version 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[00:10:03] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[00:10:03] [Server thread/INFO]: Server Ping Player Sample Count: 12
[00:10:03] [Server thread/INFO]: Using 4 threads for Netty based IO
[00:10:03] [Server thread/INFO]: [MoonriseCommon] Paper is using 6 worker threads, 1 I/O threads
[00:10:03] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[00:10:03] [Server thread/INFO]: Default game type: SURVIVAL
[00:10:03] [Server thread/INFO]: Generating keypair
[00:10:03] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25521
[00:10:03] [Server thread/INFO]: Using epoll channel type
[00:10:03] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[00:10:03] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[00:10:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[00:10:04] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[00:10:06] [Server thread/WARN]: Legacy plugin CommandTimers v1.0 does not specify an api-version.
[00:10:06] [Server thread/WARN]: Legacy plugin CitizensPlaceholderAPI v1.3 does not specify an api-version.
[00:10:06] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.4.2
[00:10:06] [Server thread/INFO]: [ViaVersion] ViaVersion 5.4.2 is now loaded. Registering protocol transformers and injecting...
[00:10:06] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[00:10:06] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[00:10:07] [Server thread/INFO]: [ViaBackwards] Loading translations...
[00:10:07] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[00:10:07] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.7-DEV-null
[00:10:07] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.11
[00:10:07] [Server thread/INFO]: [LuckPerms] Loading configuration...
[00:10:07] [Server thread/INFO]: [Vault] Loading server plugin Vault v2.15.1
[00:10:07] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3727)
[00:10:07] [Server thread/INFO]: [FancyNpcs] Loading server plugin FancyNpcs v2.7.1
[00:10:07] [Server thread/INFO]: [svarcreator] Loading server plugin svarcreator v1.0.1
[00:10:07] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v4.1.1
[00:10:07] [Server thread/INFO]: [CommandTimers] Loading server plugin CommandTimers v1.0
[00:10:07] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.3.0
[00:10:07] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.67.1
[00:10:07] [Server thread/INFO]: [ServerVariables] Loading server plugin ServerVariables v2.8.1
[00:10:07] [Server thread/INFO]: [EasyPlaceholders] Loading server plugin EasyPlaceholders v2.5-BETA-4
[00:10:07] [Server thread/INFO]: [CitizensPlaceholderAPI] Loading server plugin CitizensPlaceholderAPI v1.3
[00:10:07] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.7
[00:10:07] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.2-SNAPSHOT-1167;3d3124d
[00:10:07] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[00:10:07] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@3ec842bc]
[00:10:07] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[00:10:07] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.4.2
[00:10:07] [Server thread/INFO]: [HoloBroadcast] Loading server plugin HoloBroadcast v4.1.0
[00:10:07] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.7.0
[00:10:07] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully loaded FancyHolograms version 2.7.0
[00:10:07] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[00:10:07] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.11
[00:10:07] [Server thread/INFO]:         __    
[00:10:07] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.11
[00:10:07] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[00:10:07] [Server thread/INFO]: 
[00:10:08] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[00:10:08] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[00:10:08] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[00:10:08] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 516ms)
[00:10:08] [Server thread/INFO]: [Vault] Enabling Vault v2.15.1
[00:10:08] [Server thread/INFO]: [Vault] Enabled Version 2.15.1
[00:10:08] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[00:10:08] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.3.0
[00:10:08] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_1_21_3
[00:10:08] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.2-SNAPSHOT-1167;3d3124d
[00:10:08] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[00:10:08] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[00:10:08] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[00:10:08] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[00:10:08] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
[00:10:08] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[00:10:08] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[00:10:08] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[00:10:08] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[00:10:08] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[00:10:08] [Server thread/INFO]: Preparing level "world"
[00:10:09] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[00:10:09] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 2 build(s) out of date.
You are running build 1167, the latest version is build 1169.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[00:10:09] [Server thread/INFO]: Preparing spawn area: 0%
[00:10:09] [Server thread/INFO]: Preparing spawn area: 1%
[00:10:09] [Server thread/INFO]: Time elapsed: 624 ms
[00:10:09] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[00:10:09] [Server thread/INFO]: Preparing spawn area: 0%
[00:10:09] [Server thread/INFO]: Time elapsed: 183 ms
[00:10:09] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[00:10:09] [Server thread/INFO]: Preparing spawn area: 0%
[00:10:10] [Server thread/INFO]: Time elapsed: 46 ms
[00:10:10] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.4.2
[00:10:10] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[00:10:10] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.7-DEV-null
[00:10:10] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[00:10:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vaultunlocked [2.13.1]
[00:10:10] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3727)
[00:10:10] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[00:10:10] [Server thread/INFO]: [Citizens] Loaded 1 templates.
[00:10:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[00:10:10] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[00:10:10] [Server thread/INFO]: [FancyNpcs] Enabling FancyNpcs v2.7.1
[00:10:10] [Server thread/WARN]: [org.mineskin.MineSkinClient] Creating MineSkinClient without API key
[00:10:10] [FancyLogger/INFO]: [FancyNpcs] (Server thread) INFO: FancyNpcs (2.7.1) has been enabled.
[00:10:10] [Server thread/INFO]: [svarcreator] Enabling svarcreator v1.0.1
[00:10:10] [Server thread/INFO]: [svarcreator] The ServerVariables Creator has been enabled!
[00:10:10] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v4.1.1
[00:10:10] [Server thread/INFO]: [CommandTimers] Enabling CommandTimers v1.0*
[00:10:10] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.67.1
[00:10:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.67.1]
[00:10:10] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.67.1
[00:10:10] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[00:10:10] [Server thread/INFO]: [ServerVariables] Enabling ServerVariables v2.8.1
[00:10:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: servervariables [2.8.1]
[00:10:10] [Server thread/INFO]: [ServerVariables] Has been enabled! Version: 2.8.1
[00:10:10] [Server thread/INFO]: [ServerVariables] Thanks for using my plugin!   ~Ajneb97
[00:10:10] [Server thread/INFO]: [EasyPlaceholders] Enabling EasyPlaceholders v2.5-BETA-4
[00:10:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: easyph [2.5-BETA-4]
[00:10:10] [Server thread/INFO]: [EasyPlaceholders] EasyPlaceholders has been enabled!
[00:10:10] [Server thread/INFO]: [CitizensPlaceholderAPI] Enabling CitizensPlaceholderAPI v1.3*
[00:10:10] [Server thread/INFO]: [CitizensPlaceholderAPI] Enabled
[00:10:10] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.7
[00:10:10] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R3 (1.21.4).
[00:10:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[00:10:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[00:10:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[00:10:10] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[00:10:10] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[00:10:10] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[00:10:11] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[00:10:11] [Server thread/INFO]: [Essentials] No kits found to migrate.
[00:10:11] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[00:10:11] [Server thread/INFO]: [Essentials] Using locale en_US
[00:10:11] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[00:10:11] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[00:10:11] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[00:10:11] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.4.2
[00:10:11] [Server thread/INFO]: [HoloBroadcast] Enabling HoloBroadcast v4.1.0
[00:10:11] [Server thread/INFO]: [HoloBroadcast] Using PlaceholderAPI
[00:10:11] [Server thread/WARN]: This server version isn't compatible with BungeeCord plugin messaging. If you think this is an error, please contact us on Discord!
[00:10:11] [Server thread/INFO]: [HoloBroadcast] Loaded 3 scheduled tasks!
[00:10:11] [Server thread/INFO]: HoloBroadcast v4.1.0 by _Rolyn and DevKrazy.
[00:10:11] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.7.0
[00:10:11] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully enabled FancyHolograms version 2.7.0
[00:10:11] [Server thread/INFO]: [spark] Starting background profiler...
[00:10:11] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[00:10:11] [Server thread/INFO]: Done preparing level "world" (2.571s)
[00:10:11] [Server thread/INFO]: Running delayed init tasks
[00:10:11] [Craft Scheduler Thread - 1 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[00:10:11] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[00:10:11] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[00:10:11] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v2.15.1)!
[00:10:11] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: [DecentHolograms] Loaded 63 holograms!
[00:10:11] [Server thread/INFO]: [Citizens] Loaded 87 NPCs.
[00:10:11] [Server thread/INFO]: Done (11.815s)! For help, type "help"
[00:10:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: utils [1.0.9]
[00:10:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[00:10:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: randomnumber [1.1.0]
[00:10:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: random [2.1.0]
[00:10:11] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion utils. Identifier is already in use.
[00:10:11] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion utils due to an unknown issue.
[00:10:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: replace [2.0.0]
[00:10:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[00:10:11] [Server thread/INFO]: 6 placeholder hook(s) registered!
[00:10:12] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] There is a new EssentialsX version available for download: 2.21.2.
[00:10:12] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html?branch=stable
[00:10:13] [User Authenticator #0/INFO]: UUID of player tetrik0 is b7dd2e49-afc3-46a0-a173-9d4b3236c4d8
[00:10:14] [Server thread/INFO]: tetrik0 joined the game
[00:10:14] [Server thread/INFO]: tetrik0[/104.28.239.78:48232] logged in with entity id 428 at ([world]63.407661719034465, 117.0, 88.02973099677055)
[00:10:16] [Server thread/INFO]: tetrik0 issued server command: /pl
[00:10:19] [Server thread/INFO]: tetrik0 issued server command: /commandtimers
[00:10:27] [User Authenticator #0/INFO]: UUID of player Maderico is a949ccfd-0d37-42fa-ad43-7c8948ee3e19
[00:10:27] [Server thread/INFO]: Maderico joined the game
[00:10:27] [Server thread/INFO]: Maderico[/89.39.24.226:50504] logged in with entity id 498 at ([world]-111.81531025289254, 113.0, 105.69999998807907)
[00:10:29] [Server thread/INFO]: tetrik0 issued server command: /commandtimers every 60 eco give pepe
[00:10:33] [Server thread/INFO]: tetrik0 issued server command: /commandtimers every 1s eco give pepe
[00:10:34] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:34] [Server thread/INFO]: Command Help: /eco
[00:10:34] [Server thread/INFO]: Description: Manages the server economy.
[00:10:34] [Server thread/INFO]: Usage(s);
[00:10:34] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:34] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:34] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:34] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:35] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:35] [Server thread/INFO]: Command Help: /eco
[00:10:35] [Server thread/INFO]: Description: Manages the server economy.
[00:10:35] [Server thread/INFO]: Usage(s);
[00:10:35] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:35] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:35] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:35] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:36] [Server thread/INFO]: Command Help: /eco
[00:10:36] [Server thread/INFO]: Description: Manages the server economy.
[00:10:36] [Server thread/INFO]: Usage(s);
[00:10:36] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:36] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:36] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:36] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:37] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:37] [Server thread/INFO]: Command Help: /eco
[00:10:37] [Server thread/INFO]: Description: Manages the server economy.
[00:10:37] [Server thread/INFO]: Usage(s);
[00:10:37] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:37] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:37] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:37] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:38] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:38] [Server thread/INFO]: Command Help: /eco
[00:10:38] [Server thread/INFO]: Description: Manages the server economy.
[00:10:38] [Server thread/INFO]: Usage(s);
[00:10:38] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:38] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:38] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:38] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:39] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:39] [Server thread/INFO]: Command Help: /eco
[00:10:39] [Server thread/INFO]: Description: Manages the server economy.
[00:10:39] [Server thread/INFO]: Usage(s);
[00:10:39] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:39] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:39] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:39] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:40] [Server thread/INFO]: Command Help: /eco
[00:10:40] [Server thread/INFO]: Description: Manages the server economy.
[00:10:40] [Server thread/INFO]: Usage(s);
[00:10:40] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:40] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:40] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:40] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:41] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:41] [Server thread/INFO]: Command Help: /eco
[00:10:41] [Server thread/INFO]: Description: Manages the server economy.
[00:10:41] [Server thread/INFO]: Usage(s);
[00:10:41] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:41] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:41] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:41] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:42] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:42] [Server thread/INFO]: Command Help: /eco
[00:10:42] [Server thread/INFO]: Description: Manages the server economy.
[00:10:42] [Server thread/INFO]: Usage(s);
[00:10:42] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:42] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:42] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:42] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:43] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:43] [Server thread/INFO]: Command Help: /eco
[00:10:43] [Server thread/INFO]: Description: Manages the server economy.
[00:10:43] [Server thread/INFO]: Usage(s);
[00:10:43] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:43] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:43] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:43] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:44] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:44] [Server thread/INFO]: Command Help: /eco
[00:10:44] [Server thread/INFO]: Description: Manages the server economy.
[00:10:44] [Server thread/INFO]: Usage(s);
[00:10:44] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:44] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:44] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:44] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:45] [Server thread/INFO]: Command Help: /eco
[00:10:45] [Server thread/INFO]: Description: Manages the server economy.
[00:10:45] [Server thread/INFO]: Usage(s);
[00:10:45] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:45] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:45] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:45] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:46] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:46] [Server thread/INFO]: Command Help: /eco
[00:10:46] [Server thread/INFO]: Description: Manages the server economy.
[00:10:46] [Server thread/INFO]: Usage(s);
[00:10:46] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:46] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:46] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:46] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:47] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:47] [Server thread/INFO]: Command Help: /eco
[00:10:47] [Server thread/INFO]: Description: Manages the server economy.
[00:10:47] [Server thread/INFO]: Usage(s);
[00:10:47] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:47] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:47] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:47] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:48] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:48] [Server thread/INFO]: Command Help: /eco
[00:10:48] [Server thread/INFO]: Description: Manages the server economy.
[00:10:48] [Server thread/INFO]: Usage(s);
[00:10:48] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:48] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:48] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:48] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:48] [Server thread/INFO]: Maderico issued server command: /ct
[00:10:49] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:49] [Server thread/INFO]: Command Help: /eco
[00:10:49] [Server thread/INFO]: Description: Manages the server economy.
[00:10:49] [Server thread/INFO]: Usage(s);
[00:10:49] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:49] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:49] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:49] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:50] [Server thread/INFO]: Maderico issued server command: /ct list
[00:10:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:50] [Server thread/INFO]: Command Help: /eco
[00:10:50] [Server thread/INFO]: Description: Manages the server economy.
[00:10:50] [Server thread/INFO]: Usage(s);
[00:10:50] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:50] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:50] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:50] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:51] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:51] [Server thread/INFO]: Command Help: /eco
[00:10:51] [Server thread/INFO]: Description: Manages the server economy.
[00:10:51] [Server thread/INFO]: Usage(s);
[00:10:51] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:51] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:51] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:51] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:52] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:52] [Server thread/INFO]: Command Help: /eco
[00:10:52] [Server thread/INFO]: Description: Manages the server economy.
[00:10:52] [Server thread/INFO]: Usage(s);
[00:10:52] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:52] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:52] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:52] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:52] [Server thread/INFO]: tetrik0 issued server command: /commandtimers disable
[00:10:54] [Server thread/INFO]: Maderico issued server command: /ct remove
[00:10:57] [Server thread/INFO]: tetrik0 issued server command: /commandtimers enable
[00:10:58] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:58] [Server thread/INFO]: Command Help: /eco
[00:10:58] [Server thread/INFO]: Description: Manages the server economy.
[00:10:58] [Server thread/INFO]: Usage(s);
[00:10:58] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:58] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:58] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:58] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:59] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give pepe
[00:10:59] [Server thread/INFO]: Command Help: /eco
[00:10:59] [Server thread/INFO]: Description: Manages the server economy.
[00:10:59] [Server thread/INFO]: Usage(s);
[00:10:59] [Server thread/INFO]: /eco give <player> <amount> - Gives the specified player the specified amount of money
[00:10:59] [Server thread/INFO]: /eco take <player> <amount> - Takes the specified amount of money from the specified player
[00:10:59] [Server thread/INFO]: /eco set <player> <amount> - Sets the specified player's balance to the specified amount of money
[00:10:59] [Server thread/INFO]: /eco reset <player> <amount> - Resets the specified player's balance to the server's starting balance
[00:10:59] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove
[00:10:59] [Server thread/INFO]: Maderico issued server command: /commandtimers remove every 1s--eco-give-pepe
[00:11:03] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove every 1s--eco-give-pepe
[00:11:04] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove every 1s--eco-give-pepe
[00:11:05] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove every 1s--eco-give-pepe
[00:11:05] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove every 1s--eco-give-pepe
[00:11:05] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove every 1s--eco-give-pepe
[00:11:06] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove every 1s--eco-give-pepe
[00:11:07] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove
[00:11:42] [Server thread/INFO]: tetrik0 issued server command: /crazyvoucher reload
[00:11:57] [Server thread/INFO]: [ServerVariables] Variable randomnumber set to 362430259 for player tetrik0.
[00:11:57] [Server thread/INFO]: [ConditionalEvents] Event randomnumber successfully executed for player tetrik0.
[00:11:57] [Server thread/INFO]: Created npc-362430259 (ID 88).
[00:11:57] [Server thread/INFO]: [SVC] Created variable v362430259 successfully!
[00:11:57] [Server thread/INFO]: [SVC] Remember to run /svar reload to apply changes!
[00:11:57] [Server thread/INFO]: [svarcreator] Added new entry to plugins/ServerVariables/variables/svc-generated.yml
[00:11:57] [Server thread/INFO]: [ServerVariables] Plugin reloaded!
[00:11:57] [Server thread/INFO]: CommandTimers >> You made a timer to run svar add v362430259 every 1s.
[00:11:57] [Server thread/INFO]: [DecentHolograms] Hologram has been created!
[00:11:58] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:11:59] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:00] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:01] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:02] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:03] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:04] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:05] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:06] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:07] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:08] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:09] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:10] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:11] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:12] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:13] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:14] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:15] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:16] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:17] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:18] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:19] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:20] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:21] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:22] [Server thread/INFO]: tetrik0 issued server command: /crazyvoucher reload
[00:12:22] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:23] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove
[00:12:23] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:24] [Server thread/INFO]: [ServerVariables] You need to use: /svar add <variable> <value> (optional)<player> (optional)silent:true
[00:12:24] [Server thread/INFO]: tetrik0 issued server command: /commandtimers remove every 1s--svar-add-v362430259
[00:12:30] [Server thread/INFO]: tetrik0 issued server command: /crazyvoucher reload
[00:12:32] [Server thread/INFO]: [ServerVariables] Variable randomnumber set to 317553921 for player tetrik0.
[00:12:32] [Server thread/INFO]: [ConditionalEvents] Event randomnumber successfully executed for player tetrik0.
[00:12:32] [Server thread/INFO]: Created npc-317553921 (ID 89).
[00:12:32] [Server thread/INFO]: [SVC] Created variable v317553921 successfully!
[00:12:32] [Server thread/INFO]: [SVC] Remember to run /svar reload to apply changes!
[00:12:32] [Server thread/INFO]: [svarcreator] Added new entry to plugins/ServerVariables/variables/svc-generated.yml
[00:12:32] [Server thread/INFO]: [ServerVariables] Plugin reloaded!
[00:12:32] [Server thread/INFO]: CommandTimers >> You made a timer to run svar add v317553921 100 every 1s.
[00:12:32] [Server thread/INFO]: [DecentHolograms] Hologram has been created!
[00:12:33] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:33] [Craft Scheduler Thread - 1 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>

<head>
    <meta content='text/html; charset=utf-8' http-equiv='content-type' />
    <style type='text/css'>
        body {
            font-family: Arial;
            margin-left: 40px;
        }

        img {
            border: 0 none;
        }

        #content {
            margin-left: auto;
            margin-right: auto
        }

        #message h1 {
            font-size: 24px;
            font-weight: normal;
            color: #000000;
            margin: 34px 0px 0px 0px
        }

        #message h2 {
            font-size: 20px;
            font-weight: normal;
            color: #000000;
            margin: 34px 0px 0px 0px
        }

        #message p {
            font-size: 16px;
            color: #000000;
            margin: 8px 0px 0px 0px
        }

        #message hr {
            margin: 15px 0px
        }

        #errorref {
            font-size: 11px;
            color: #737373;
            margin-top: 41px
        }
    </style>
    <title>Service unavailable</title>
</head>

<body>
    <div id='content'>
        <div id='message'>
            <h2>The request is blocked.</h2>
        </div>
        <div id='errorref'>
            <span>20250909T001233Z-177958b6665wmlc8hC1MIAqcw00000000n3g00000000bnwy            </span>
        </div>
    </div>
</body>
</html>

[00:12:34] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:35] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:36] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:37] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:38] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:39] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:40] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:41] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:42] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:43] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:44] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:45] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:46] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:47] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:48] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:49] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:50] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:51] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:52] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:53] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:54] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:55] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:56] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:57] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:58] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:12:59] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:00] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:01] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:02] [Server thread/INFO]: tetrik0 issued server command: /svar add v%servervariables_value_randomnumber% 100
[00:13:02] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:03] [Server thread/INFO]: Maderico issued server command: /svar set v362430259 100
[00:13:03] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:04] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:05] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:06] [Server thread/INFO]: Maderico issued server command: /svar set v362430259 100 Maderico
[00:13:06] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:07] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:08] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:08] [Server thread/INFO]: tetrik0 issued server command: /svar add v317553921 100
[00:13:09] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:10] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:11] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:12] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:13] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:14] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:15] [Server thread/INFO]: tetrik0 issued server command: /svar add v317553921 100 Maderico
[00:13:15] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:16] [Async Chat Thread - #2/INFO]: <Maderico> %player_name% Maderico
[00:13:16] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:17] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:18] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:19] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:20] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:21] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:22] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:23] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:24] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:25] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:26] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:27] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:28] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:28] [Server thread/INFO]: tetrik0 issued server command: /crazyvoucher reload
[00:13:29] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:30] [Server thread/INFO]: [ServerVariables] Variable randomnumber set to 165338888 for player tetrik0.
[00:13:30] [Server thread/INFO]: [ConditionalEvents] Event randomnumber successfully executed for player tetrik0.
[00:13:30] [Server thread/INFO]: Created npc-165338888 (ID 90).
[00:13:30] [Server thread/INFO]: [SVC] Created variable v165338888 successfully!
[00:13:30] [Server thread/INFO]: [SVC] Remember to run /svar reload to apply changes!
[00:13:30] [Server thread/INFO]: [svarcreator] Added new entry to plugins/ServerVariables/variables/svc-generated.yml
[00:13:30] [Server thread/INFO]: [ServerVariables] Plugin reloaded!
[00:13:30] [Server thread/INFO]: CommandTimers >> You made a timer to run svar add v165338888 100 tetrik0 every 1s.
[00:13:30] [Server thread/INFO]: [DecentHolograms] Hologram has been created!
[00:13:30] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:30] [Server thread/INFO]: Maderico issued server command: /svar set v362430259 0 Maderico
[00:13:31] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 100 for player tetrik0.
[00:13:31] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:32] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 200 for player tetrik0.
[00:13:32] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:33] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 300 for player tetrik0.
[00:13:33] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:34] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 400 for player tetrik0.
[00:13:34] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:35] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 500 for player tetrik0.
[00:13:35] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:36] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 600 for player tetrik0.
[00:13:36] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:37] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 700 for player tetrik0.
[00:13:37] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:38] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 800 for player tetrik0.
[00:13:38] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:39] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 900 for player tetrik0.
[00:13:39] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:40] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1000 for player tetrik0.
[00:13:40] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:41] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1100 for player tetrik0.
[00:13:41] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:42] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1200 for player tetrik0.
[00:13:42] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:43] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1300 for player tetrik0.
[00:13:43] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:44] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1400 for player tetrik0.
[00:13:44] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:45] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1500 for player tetrik0.
[00:13:45] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:46] [Server thread/INFO]: [ServerVariables] Variable randomnumber set to 37075539 for player tetrik0.
[00:13:46] [Server thread/INFO]: [ConditionalEvents] Event randomnumber successfully executed for player tetrik0.
[00:13:46] [Server thread/INFO]: Created npc-37075539 (ID 91).
[00:13:46] [Server thread/INFO]: [SVC] Created variable v37075539 successfully!
[00:13:46] [Server thread/INFO]: [SVC] Remember to run /svar reload to apply changes!
[00:13:46] [Server thread/INFO]: [svarcreator] Added new entry to plugins/ServerVariables/variables/svc-generated.yml
[00:13:46] [Server thread/INFO]: [ServerVariables] Plugin reloaded!
[00:13:46] [Server thread/INFO]: CommandTimers >> You made a timer to run svar add v37075539 100 tetrik0 every 1s.
[00:13:46] [Server thread/INFO]: [DecentHolograms] Hologram has been created!
[00:13:46] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1600 for player tetrik0.
[00:13:46] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:46] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 100 for player tetrik0.
[00:13:47] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1700 for player tetrik0.
[00:13:47] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:47] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 200 for player tetrik0.
[00:13:48] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1800 for player tetrik0.
[00:13:48] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:48] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 300 for player tetrik0.
[00:13:49] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 1900 for player tetrik0.
[00:13:49] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:49] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 400 for player tetrik0.
[00:13:50] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2000 for player tetrik0.
[00:13:50] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:50] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 500 for player tetrik0.
[00:13:51] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2100 for player tetrik0.
[00:13:51] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:51] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 600 for player tetrik0.
[00:13:52] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2200 for player tetrik0.
[00:13:52] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:52] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 700 for player tetrik0.
[00:13:53] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2300 for player tetrik0.
[00:13:53] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:53] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 800 for player tetrik0.
[00:13:54] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2400 for player tetrik0.
[00:13:54] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:54] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 900 for player tetrik0.
[00:13:55] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2500 for player tetrik0.
[00:13:55] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:56] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1000 for player tetrik0.
[00:13:56] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2600 for player tetrik0.
[00:13:56] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:57] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1100 for player tetrik0.
[00:13:57] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2700 for player tetrik0.
[00:13:57] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:57] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1200 for player tetrik0.
[00:13:58] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2800 for player tetrik0.
[00:13:58] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:58] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1300 for player tetrik0.
[00:13:59] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 2900 for player tetrik0.
[00:13:59] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:13:59] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1400 for player tetrik0.
[00:14:00] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3000 for player tetrik0.
[00:14:00] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:00] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1500 for player tetrik0.
[00:14:01] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3100 for player tetrik0.
[00:14:01] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:01] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1600 for player tetrik0.
[00:14:02] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3200 for player tetrik0.
[00:14:02] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:02] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1700 for player tetrik0.
[00:14:03] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3300 for player tetrik0.
[00:14:03] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:03] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1800 for player tetrik0.
[00:14:04] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3400 for player tetrik0.
[00:14:04] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:04] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 1900 for player tetrik0.
[00:14:05] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3500 for player tetrik0.
[00:14:05] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:05] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2000 for player tetrik0.
[00:14:06] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3600 for player tetrik0.
[00:14:06] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:06] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2100 for player tetrik0.
[00:14:07] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3700 for player tetrik0.
[00:14:07] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:07] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2200 for player tetrik0.
[00:14:08] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3800 for player tetrik0.
[00:14:08] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:08] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2300 for player tetrik0.
[00:14:09] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 3900 for player tetrik0.
[00:14:09] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:10] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2400 for player tetrik0.
[00:14:10] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4000 for player tetrik0.
[00:14:10] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:10] [Server thread/INFO]: Maderico lost connection: Disconnected
[00:14:10] [Server thread/INFO]: Maderico left the game
[00:14:10] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2500 for player tetrik0.
[00:14:11] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4100 for player tetrik0.
[00:14:11] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:11] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2600 for player tetrik0.
[00:14:12] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4200 for player tetrik0.
[00:14:12] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:12] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2700 for player tetrik0.
[00:14:13] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4300 for player tetrik0.
[00:14:13] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:13] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2800 for player tetrik0.
[00:14:14] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4400 for player tetrik0.
[00:14:14] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:14] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 2900 for player tetrik0.
[00:14:15] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4500 for player tetrik0.
[00:14:15] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:15] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3000 for player tetrik0.
[00:14:16] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4600 for player tetrik0.
[00:14:16] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:16] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3100 for player tetrik0.
[00:14:17] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4700 for player tetrik0.
[00:14:17] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:17] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3200 for player tetrik0.
[00:14:18] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4800 for player tetrik0.
[00:14:18] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:18] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3300 for player tetrik0.
[00:14:19] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 4900 for player tetrik0.
[00:14:19] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:19] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3400 for player tetrik0.
[00:14:20] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5000 for player tetrik0.
[00:14:20] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:20] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3500 for player tetrik0.
[00:14:21] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5100 for player tetrik0.
[00:14:21] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:21] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3600 for player tetrik0.
[00:14:22] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5200 for player tetrik0.
[00:14:22] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:22] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3700 for player tetrik0.
[00:14:23] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5300 for player tetrik0.
[00:14:23] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:24] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3800 for player tetrik0.
[00:14:24] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5400 for player tetrik0.
[00:14:24] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:24] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 3900 for player tetrik0.
[00:14:25] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5500 for player tetrik0.
[00:14:25] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:26] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4000 for player tetrik0.
[00:14:26] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5600 for player tetrik0.
[00:14:26] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:26] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4100 for player tetrik0.
[00:14:27] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5700 for player tetrik0.
[00:14:27] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:27] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4200 for player tetrik0.
[00:14:28] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5800 for player tetrik0.
[00:14:28] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:28] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4300 for player tetrik0.
[00:14:29] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 5900 for player tetrik0.
[00:14:29] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:29] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4400 for player tetrik0.
[00:14:30] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6000 for player tetrik0.
[00:14:30] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:30] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4500 for player tetrik0.
[00:14:31] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6100 for player tetrik0.
[00:14:31] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:31] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4600 for player tetrik0.
[00:14:32] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6200 for player tetrik0.
[00:14:32] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:32] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4700 for player tetrik0.
[00:14:33] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6300 for player tetrik0.
[00:14:33] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:33] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4800 for player tetrik0.
[00:14:34] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6400 for player tetrik0.
[00:14:34] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:34] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 4900 for player tetrik0.
[00:14:35] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6500 for player tetrik0.
[00:14:35] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:35] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5000 for player tetrik0.
[00:14:36] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6600 for player tetrik0.
[00:14:36] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:36] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5100 for player tetrik0.
[00:14:37] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6700 for player tetrik0.
[00:14:37] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:37] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5200 for player tetrik0.
[00:14:38] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6800 for player tetrik0.
[00:14:38] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:39] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5300 for player tetrik0.
[00:14:39] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 6900 for player tetrik0.
[00:14:39] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:39] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5400 for player tetrik0.
[00:14:40] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7000 for player tetrik0.
[00:14:40] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:40] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5500 for player tetrik0.
[00:14:41] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7100 for player tetrik0.
[00:14:41] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:41] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5600 for player tetrik0.
[00:14:42] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7200 for player tetrik0.
[00:14:42] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:42] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5700 for player tetrik0.
[00:14:43] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7300 for player tetrik0.
[00:14:43] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:43] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5800 for player tetrik0.
[00:14:44] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7400 for player tetrik0.
[00:14:44] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:44] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 5900 for player tetrik0.
[00:14:45] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7500 for player tetrik0.
[00:14:45] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:45] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6000 for player tetrik0.
[00:14:46] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7600 for player tetrik0.
[00:14:46] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:46] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6100 for player tetrik0.
[00:14:47] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7700 for player tetrik0.
[00:14:47] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:47] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6200 for player tetrik0.
[00:14:48] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7800 for player tetrik0.
[00:14:48] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:48] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6300 for player tetrik0.
[00:14:49] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 7900 for player tetrik0.
[00:14:49] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:49] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6400 for player tetrik0.
[00:14:50] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8000 for player tetrik0.
[00:14:50] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:50] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6500 for player tetrik0.
[00:14:51] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8100 for player tetrik0.
[00:14:51] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:51] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6600 for player tetrik0.
[00:14:52] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8200 for player tetrik0.
[00:14:52] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:52] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6700 for player tetrik0.
[00:14:53] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8300 for player tetrik0.
[00:14:53] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:53] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6800 for player tetrik0.
[00:14:54] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8400 for player tetrik0.
[00:14:54] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:54] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 6900 for player tetrik0.
[00:14:55] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8500 for player tetrik0.
[00:14:55] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:55] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7000 for player tetrik0.
[00:14:56] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8600 for player tetrik0.
[00:14:56] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:56] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7100 for player tetrik0.
[00:14:57] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8700 for player tetrik0.
[00:14:57] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:57] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7200 for player tetrik0.
[00:14:58] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8800 for player tetrik0.
[00:14:58] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:58] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7300 for player tetrik0.
[00:14:59] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 8900 for player tetrik0.
[00:14:59] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:14:59] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7400 for player tetrik0.
[00:15:00] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9000 for player tetrik0.
[00:15:00] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:00] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7500 for player tetrik0.
[00:15:01] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9100 for player tetrik0.
[00:15:01] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:01] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7600 for player tetrik0.
[00:15:02] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9200 for player tetrik0.
[00:15:02] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:03] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7700 for player tetrik0.
[00:15:03] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9300 for player tetrik0.
[00:15:03] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:03] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7800 for player tetrik0.
[00:15:04] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9400 for player tetrik0.
[00:15:04] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:04] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 7900 for player tetrik0.
[00:15:05] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9500 for player tetrik0.
[00:15:05] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:05] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8000 for player tetrik0.
[00:15:06] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9600 for player tetrik0.
[00:15:06] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:06] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8100 for player tetrik0.
[00:15:07] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9700 for player tetrik0.
[00:15:07] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:07] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8200 for player tetrik0.
[00:15:08] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9800 for player tetrik0.
[00:15:08] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:08] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8300 for player tetrik0.
[00:15:09] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 9900 for player tetrik0.
[00:15:09] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:09] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8400 for player tetrik0.
[00:15:10] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10000 for player tetrik0.
[00:15:10] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:10] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8500 for player tetrik0.
[00:15:11] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10100 for player tetrik0.
[00:15:11] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:11] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8600 for player tetrik0.
[00:15:12] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10200 for player tetrik0.
[00:15:12] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:12] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8700 for player tetrik0.
[00:15:13] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10300 for player tetrik0.
[00:15:13] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:13] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8800 for player tetrik0.
[00:15:14] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10400 for player tetrik0.
[00:15:14] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:14] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 8900 for player tetrik0.
[00:15:15] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10500 for player tetrik0.
[00:15:15] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:15] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9000 for player tetrik0.
[00:15:16] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10600 for player tetrik0.
[00:15:16] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:17] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9100 for player tetrik0.
[00:15:17] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10700 for player tetrik0.
[00:15:17] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:17] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9200 for player tetrik0.
[00:15:18] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10800 for player tetrik0.
[00:15:18] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:18] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9300 for player tetrik0.
[00:15:19] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 10900 for player tetrik0.
[00:15:19] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:19] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9400 for player tetrik0.
[00:15:20] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11000 for player tetrik0.
[00:15:20] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:20] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9500 for player tetrik0.
[00:15:21] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11100 for player tetrik0.
[00:15:21] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:21] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9600 for player tetrik0.
[00:15:22] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11200 for player tetrik0.
[00:15:22] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:22] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9700 for player tetrik0.
[00:15:23] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11300 for player tetrik0.
[00:15:23] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:23] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9800 for player tetrik0.
[00:15:24] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11400 for player tetrik0.
[00:15:24] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:24] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 9900 for player tetrik0.
[00:15:25] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11500 for player tetrik0.
[00:15:25] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:25] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10000 for player tetrik0.
[00:15:26] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11600 for player tetrik0.
[00:15:26] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:26] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10100 for player tetrik0.
[00:15:27] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11700 for player tetrik0.
[00:15:27] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:27] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10200 for player tetrik0.
[00:15:28] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11800 for player tetrik0.
[00:15:28] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:29] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10300 for player tetrik0.
[00:15:29] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 11900 for player tetrik0.
[00:15:29] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:29] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10400 for player tetrik0.
[00:15:30] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12000 for player tetrik0.
[00:15:30] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:30] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10500 for player tetrik0.
[00:15:31] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12100 for player tetrik0.
[00:15:31] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:31] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10600 for player tetrik0.
[00:15:32] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12200 for player tetrik0.
[00:15:32] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:32] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10700 for player tetrik0.
[00:15:33] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12300 for player tetrik0.
[00:15:33] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:33] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10800 for player tetrik0.
[00:15:34] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12400 for player tetrik0.
[00:15:34] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:34] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 10900 for player tetrik0.
[00:15:35] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12500 for player tetrik0.
[00:15:35] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:35] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11000 for player tetrik0.
[00:15:36] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12600 for player tetrik0.
[00:15:36] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:36] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11100 for player tetrik0.
[00:15:37] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12700 for player tetrik0.
[00:15:37] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:37] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11200 for player tetrik0.
[00:15:38] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12800 for player tetrik0.
[00:15:38] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:38] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11300 for player tetrik0.
[00:15:39] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 12900 for player tetrik0.
[00:15:39] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:39] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11400 for player tetrik0.
[00:15:40] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13000 for player tetrik0.
[00:15:40] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:40] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11500 for player tetrik0.
[00:15:41] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13100 for player tetrik0.
[00:15:41] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:41] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11600 for player tetrik0.
[00:15:42] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13200 for player tetrik0.
[00:15:42] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:42] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11700 for player tetrik0.
[00:15:43] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13300 for player tetrik0.
[00:15:43] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:43] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11800 for player tetrik0.
[00:15:44] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13400 for player tetrik0.
[00:15:44] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:44] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 11900 for player tetrik0.
[00:15:45] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13500 for player tetrik0.
[00:15:45] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:45] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12000 for player tetrik0.
[00:15:46] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13600 for player tetrik0.
[00:15:46] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:46] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12100 for player tetrik0.
[00:15:47] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13700 for player tetrik0.
[00:15:47] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:47] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12200 for player tetrik0.
[00:15:48] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13800 for player tetrik0.
[00:15:48] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:48] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12300 for player tetrik0.
[00:15:49] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 13900 for player tetrik0.
[00:15:49] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:49] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12400 for player tetrik0.
[00:15:50] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14000 for player tetrik0.
[00:15:50] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:50] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12500 for player tetrik0.
[00:15:51] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14100 for player tetrik0.
[00:15:51] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:51] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12600 for player tetrik0.
[00:15:52] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14200 for player tetrik0.
[00:15:52] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:52] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12700 for player tetrik0.
[00:15:53] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14300 for player tetrik0.
[00:15:53] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:54] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12800 for player tetrik0.
[00:15:54] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14400 for player tetrik0.
[00:15:54] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:54] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 12900 for player tetrik0.
[00:15:55] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14500 for player tetrik0.
[00:15:55] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:55] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13000 for player tetrik0.
[00:15:56] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14600 for player tetrik0.
[00:15:56] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:56] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13100 for player tetrik0.
[00:15:57] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14700 for player tetrik0.
[00:15:57] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:57] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13200 for player tetrik0.
[00:15:58] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14800 for player tetrik0.
[00:15:58] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:58] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13300 for player tetrik0.
[00:15:59] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 14900 for player tetrik0.
[00:15:59] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:15:59] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13400 for player tetrik0.
[00:16:00] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15000 for player tetrik0.
[00:16:00] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:00] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13500 for player tetrik0.
[00:16:01] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15100 for player tetrik0.
[00:16:01] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:01] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13600 for player tetrik0.
[00:16:02] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15200 for player tetrik0.
[00:16:02] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:02] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13700 for player tetrik0.
[00:16:03] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15300 for player tetrik0.
[00:16:03] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:03] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13800 for player tetrik0.
[00:16:04] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15400 for player tetrik0.
[00:16:04] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:04] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 13900 for player tetrik0.
[00:16:05] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15500 for player tetrik0.
[00:16:05] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:05] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:05] [Server thread/INFO]: [ServerVariables] That variable has these possible values: true, false
[00:16:05] [Server thread/INFO]: [ServerVariables] Variable basico set to on for player tetrik0.
[00:16:05] [Server thread/INFO]: › Name contains illegal characters. Only [A-Z, a-z, 0-9, _, -, /] characters are allowed.
[00:16:05] [Server thread/INFO]: [DecentHolograms] Invalid name '%servervariables_value_c1%', only use alphanumerical characters, underscore and dash.
[00:16:05] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14000 for player tetrik0.
[00:16:06] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15600 for player tetrik0.
[00:16:06] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:06] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:06] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14100 for player tetrik0.
[00:16:07] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15700 for player tetrik0.
[00:16:07] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:07] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14200 for player tetrik0.
[00:16:08] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15800 for player tetrik0.
[00:16:08] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:08] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:08] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14300 for player tetrik0.
[00:16:09] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 15900 for player tetrik0.
[00:16:09] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:09] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14400 for player tetrik0.
[00:16:10] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16000 for player tetrik0.
[00:16:10] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:10] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14500 for player tetrik0.
[00:16:11] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16100 for player tetrik0.
[00:16:11] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:11] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:11] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14600 for player tetrik0.
[00:16:12] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16200 for player tetrik0.
[00:16:12] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:12] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14700 for player tetrik0.
[00:16:13] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16300 for player tetrik0.
[00:16:13] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:13] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:13] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14800 for player tetrik0.
[00:16:14] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16400 for player tetrik0.
[00:16:14] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:14] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 14900 for player tetrik0.
[00:16:15] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16500 for player tetrik0.
[00:16:15] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:15] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15000 for player tetrik0.
[00:16:16] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16600 for player tetrik0.
[00:16:16] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:16] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:16] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15100 for player tetrik0.
[00:16:17] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16700 for player tetrik0.
[00:16:17] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:17] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15200 for player tetrik0.
[00:16:18] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16800 for player tetrik0.
[00:16:18] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:18] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:18] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15300 for player tetrik0.
[00:16:19] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 16900 for player tetrik0.
[00:16:19] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:19] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15400 for player tetrik0.
[00:16:20] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17000 for player tetrik0.
[00:16:20] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:20] [User Authenticator #1/INFO]: UUID of player Maderico is a949ccfd-0d37-42fa-ad43-7c8948ee3e19
[00:16:20] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15500 for player tetrik0.
[00:16:21] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17100 for player tetrik0.
[00:16:21] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:21] [Server thread/INFO]: Maderico joined the game
[00:16:21] [Server thread/INFO]: Maderico[/89.39.24.226:39244] logged in with entity id 853 at ([world]55.51175442773149, 117.0, 77.79857061158151)
[00:16:21] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:21] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15600 for player tetrik0.
[00:16:22] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17200 for player tetrik0.
[00:16:22] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:22] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15700 for player tetrik0.
[00:16:23] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17300 for player tetrik0.
[00:16:23] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:23] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:24] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15800 for player tetrik0.
[00:16:24] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17400 for player tetrik0.
[00:16:24] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:24] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 15900 for player tetrik0.
[00:16:25] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17500 for player tetrik0.
[00:16:25] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:25] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16000 for player tetrik0.
[00:16:26] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17600 for player tetrik0.
[00:16:26] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:26] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:26] [Server thread/INFO]: Maderico issued server command: /ct list
[00:16:26] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16100 for player tetrik0.
[00:16:27] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17700 for player tetrik0.
[00:16:27] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:27] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16200 for player tetrik0.
[00:16:28] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17800 for player tetrik0.
[00:16:28] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:28] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:28] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16300 for player tetrik0.
[00:16:29] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 17900 for player tetrik0.
[00:16:29] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:29] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16400 for player tetrik0.
[00:16:30] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18000 for player tetrik0.
[00:16:30] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:30] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16500 for player tetrik0.
[00:16:31] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18100 for player tetrik0.
[00:16:31] [Server thread/INFO]: Maderico issued server command: /ct remove
[00:16:31] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:31] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:31] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16600 for player tetrik0.
[00:16:32] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18200 for player tetrik0.
[00:16:32] [Server thread/INFO]: [ServerVariables] You can't set a PLAYER variable to the server.
[00:16:32] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16700 for player tetrik0.
[00:16:33] [Server thread/INFO]: Maderico issued server command: /commandtimers remove every 1s--svar-add-v317553921-100
[00:16:33] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18300 for player tetrik0.
[00:16:33] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:33] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16800 for player tetrik0.
[00:16:34] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18400 for player tetrik0.
[00:16:34] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 16900 for player tetrik0.
[00:16:35] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18500 for player tetrik0.
[00:16:35] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17000 for player tetrik0.
[00:16:36] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18600 for player tetrik0.
[00:16:36] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:36] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17100 for player tetrik0.
[00:16:37] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18700 for player tetrik0.
[00:16:37] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17200 for player tetrik0.
[00:16:38] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18800 for player tetrik0.
[00:16:38] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:38] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17300 for player tetrik0.
[00:16:39] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 18900 for player tetrik0.
[00:16:39] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17400 for player tetrik0.
[00:16:40] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19000 for player tetrik0.
[00:16:40] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17500 for player tetrik0.
[00:16:41] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19100 for player tetrik0.
[00:16:41] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:41] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17600 for player tetrik0.
[00:16:42] [Server thread/INFO]: Maderico issued server command: /ct remove
[00:16:42] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19200 for player tetrik0.
[00:16:42] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17700 for player tetrik0.
[00:16:43] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19300 for player tetrik0.
[00:16:43] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:43] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17800 for player tetrik0.
[00:16:44] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19400 for player tetrik0.
[00:16:44] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 17900 for player tetrik0.
[00:16:45] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19500 for player tetrik0.
[00:16:45] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18000 for player tetrik0.
[00:16:46] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19600 for player tetrik0.
[00:16:46] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:46] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18100 for player tetrik0.
[00:16:47] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19700 for player tetrik0.
[00:16:47] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18200 for player tetrik0.
[00:16:48] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19800 for player tetrik0.
[00:16:48] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:48] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18300 for player tetrik0.
[00:16:49] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 19900 for player tetrik0.
[00:16:49] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18400 for player tetrik0.
[00:16:50] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20000 for player tetrik0.
[00:16:50] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18500 for player tetrik0.
[00:16:51] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20100 for player tetrik0.
[00:16:51] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:51] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18600 for player tetrik0.
[00:16:52] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20200 for player tetrik0.
[00:16:52] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18700 for player tetrik0.
[00:16:53] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20300 for player tetrik0.
[00:16:53] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:53] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18800 for player tetrik0.
[00:16:54] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20400 for player tetrik0.
[00:16:54] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 18900 for player tetrik0.
[00:16:55] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20500 for player tetrik0.
[00:16:55] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19000 for player tetrik0.
[00:16:56] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20600 for player tetrik0.
[00:16:56] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:56] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19100 for player tetrik0.
[00:16:57] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20700 for player tetrik0.
[00:16:57] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19200 for player tetrik0.
[00:16:58] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20800 for player tetrik0.
[00:16:58] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:16:58] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19300 for player tetrik0.
[00:16:59] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 20900 for player tetrik0.
[00:16:59] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19400 for player tetrik0.
[00:17:00] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21000 for player tetrik0.
[00:17:00] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19500 for player tetrik0.
[00:17:01] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21100 for player tetrik0.
[00:17:01] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:01] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19600 for player tetrik0.
[00:17:02] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21200 for player tetrik0.
[00:17:02] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19700 for player tetrik0.
[00:17:03] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21300 for player tetrik0.
[00:17:03] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:03] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19800 for player tetrik0.
[00:17:04] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21400 for player tetrik0.
[00:17:04] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 19900 for player tetrik0.
[00:17:05] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21500 for player tetrik0.
[00:17:05] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20000 for player tetrik0.
[00:17:06] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21600 for player tetrik0.
[00:17:06] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:06] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20100 for player tetrik0.
[00:17:07] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21700 for player tetrik0.
[00:17:07] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20200 for player tetrik0.
[00:17:08] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21800 for player tetrik0.
[00:17:08] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:08] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20300 for player tetrik0.
[00:17:09] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 21900 for player tetrik0.
[00:17:09] [Server thread/INFO]: Maderico issued server command: /svarcreator:svarc gui
[00:17:09] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20400 for player tetrik0.
[00:17:10] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22000 for player tetrik0.
[00:17:10] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20500 for player tetrik0.
[00:17:11] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22100 for player tetrik0.
[00:17:11] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:11] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20600 for player tetrik0.
[00:17:12] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22200 for player tetrik0.
[00:17:12] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20700 for player tetrik0.
[00:17:13] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22300 for player tetrik0.
[00:17:13] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:13] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20800 for player tetrik0.
[00:17:14] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22400 for player tetrik0.
[00:17:14] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 20900 for player tetrik0.
[00:17:15] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22500 for player tetrik0.
[00:17:15] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21000 for player tetrik0.
[00:17:16] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22600 for player tetrik0.
[00:17:16] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:16] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21100 for player tetrik0.
[00:17:17] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22700 for player tetrik0.
[00:17:17] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21200 for player tetrik0.
[00:17:18] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22800 for player tetrik0.
[00:17:18] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:18] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21300 for player tetrik0.
[00:17:19] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 22900 for player tetrik0.
[00:17:19] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21400 for player tetrik0.
[00:17:20] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23000 for player tetrik0.
[00:17:20] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21500 for player tetrik0.
[00:17:21] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23100 for player tetrik0.
[00:17:21] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:22] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21600 for player tetrik0.
[00:17:22] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23200 for player tetrik0.
[00:17:23] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21700 for player tetrik0.
[00:17:23] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23300 for player tetrik0.
[00:17:23] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:23] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21800 for player tetrik0.
[00:17:24] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23400 for player tetrik0.
[00:17:24] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 21900 for player tetrik0.
[00:17:25] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23500 for player tetrik0.
[00:17:25] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22000 for player tetrik0.
[00:17:26] [Server thread/INFO]: [Essentials] Created a User for npc-37075539 (60a8f68f-a801-2846-8ac8-132e518ad2ad) for non Bukkit type: net.citizensnpcs.nms.v1_21_R3.entity.EntityHumanNPC$PlayerNPC
[00:17:26] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23600 for player tetrik0.
[00:17:26] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:26] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22100 for player tetrik0.
[00:17:27] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23700 for player tetrik0.
[00:17:27] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22200 for player tetrik0.
[00:17:28] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23800 for player tetrik0.
[00:17:28] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:28] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22300 for player tetrik0.
[00:17:29] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 23900 for player tetrik0.
[00:17:29] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22400 for player tetrik0.
[00:17:30] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24000 for player tetrik0.
[00:17:30] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22500 for player tetrik0.
[00:17:31] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24100 for player tetrik0.
[00:17:31] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:31] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22600 for player tetrik0.
[00:17:32] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24200 for player tetrik0.
[00:17:32] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22700 for player tetrik0.
[00:17:33] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24300 for player tetrik0.
[00:17:33] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:33] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22800 for player tetrik0.
[00:17:34] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24400 for player tetrik0.
[00:17:35] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 22900 for player tetrik0.
[00:17:35] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24500 for player tetrik0.
[00:17:36] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23000 for player tetrik0.
[00:17:36] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24600 for player tetrik0.
[00:17:36] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:36] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23100 for player tetrik0.
[00:17:37] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24700 for player tetrik0.
[00:17:37] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23200 for player tetrik0.
[00:17:38] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24800 for player tetrik0.
[00:17:38] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:38] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23300 for player tetrik0.
[00:17:39] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 24900 for player tetrik0.
[00:17:39] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23400 for player tetrik0.
[00:17:40] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25000 for player tetrik0.
[00:17:40] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23500 for player tetrik0.
[00:17:41] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25100 for player tetrik0.
[00:17:41] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:41] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23600 for player tetrik0.
[00:17:42] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25200 for player tetrik0.
[00:17:42] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23700 for player tetrik0.
[00:17:43] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25300 for player tetrik0.
[00:17:43] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:43] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23800 for player tetrik0.
[00:17:44] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25400 for player tetrik0.
[00:17:44] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 23900 for player tetrik0.
[00:17:45] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25500 for player tetrik0.
[00:17:45] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24000 for player tetrik0.
[00:17:46] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25600 for player tetrik0.
[00:17:46] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:46] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24100 for player tetrik0.
[00:17:47] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25700 for player tetrik0.
[00:17:47] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24200 for player tetrik0.
[00:17:48] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25800 for player tetrik0.
[00:17:48] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:48] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24300 for player tetrik0.
[00:17:49] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 25900 for player tetrik0.
[00:17:49] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24400 for player tetrik0.
[00:17:50] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26000 for player tetrik0.
[00:17:50] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24500 for player tetrik0.
[00:17:51] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26100 for player tetrik0.
[00:17:51] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:51] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24600 for player tetrik0.
[00:17:52] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26200 for player tetrik0.
[00:17:52] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24700 for player tetrik0.
[00:17:53] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26300 for player tetrik0.
[00:17:53] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:53] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24800 for player tetrik0.
[00:17:54] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26400 for player tetrik0.
[00:17:54] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 24900 for player tetrik0.
[00:17:55] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26500 for player tetrik0.
[00:17:55] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25000 for player tetrik0.
[00:17:56] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26600 for player tetrik0.
[00:17:56] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:56] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25100 for player tetrik0.
[00:17:57] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26700 for player tetrik0.
[00:17:57] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25200 for player tetrik0.
[00:17:58] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26800 for player tetrik0.
[00:17:58] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:17:58] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25300 for player tetrik0.
[00:17:59] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 26900 for player tetrik0.
[00:17:59] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25400 for player tetrik0.
[00:18:00] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 27000 for player tetrik0.
[00:18:00] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25500 for player tetrik0.
[00:18:01] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 27100 for player tetrik0.
[00:18:01] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:18:01] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25600 for player tetrik0.
[00:18:02] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 27200 for player tetrik0.
[00:18:02] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25700 for player tetrik0.
[00:18:03] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 27300 for player tetrik0.
[00:18:03] [Server thread/INFO]: [ServerVariables] That variable doesn't exists.
[00:18:03] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25800 for player tetrik0.
[00:18:04] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 27400 for player tetrik0.
[00:18:04] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 25900 for player tetrik0.
[00:18:05] [Server thread/INFO]: [ServerVariables] Variable v165338888 set to 27500 for player tetrik0.
[00:18:05] [Server thread/INFO]: [ServerVariables] Variable v37075539 set to 26000 for player tetrik0.