Paste #12002: Denizen Debug Logs From The Hub is up and running!

Date: 2014/12/11 23:49:24 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


Java Version: 1.8.0_25
Up-time: 9m 58s
CraftBukkit Version: git-Spigot-8985e19 (MC: 1.8)
Active Plugins (46): AsyncWorldEditInjector: 2.0.1, LazyRoad: 0.8.1, LoreLocks: 2.2.2.3, WorldEdit: 6.0;3342-78f975b9, 
BungeeSuitePortals: 0.5b-9, Modifyworld: 1.19.7, SkyWriter: 1.1, Yamler: 2.2.3-SNAPSHOTb-72, 
ProtocolLib: 3.6.3-SNAPSHOT, WorldGuard: 6.0.0-SNAPSHOT, SignEdit: 3.3.2, Teleports: 0.50b-22, 
ImageOnMap: 2.7, VoxelSniper: 5.170.0-SNAPSHOT-jnks326-git1a17ed8, PermissionsEx: 1.23, 
BetterShutdown: 1.0, LazyRoadInGameDesigner: 0.3.3, SQLibrary: 7.1, CreeperHeal: 6.7.2, 
mcMMO: 1.5.00-b3547, Bans: 0.50b-8, Vault: 1.5.0-b28, Warps: 0.17-SNAPSHOTb-11, 
Homes: 0.50b-6, Lores: 1.4.1, MagicSpells: 3.3-release, HyperConomy: 0.975, 
HawkEye: 1.6.0, PlayEffect: 0.3.2, GiantTrees: 1.1, CloudChatBukkit: 3.3.0, 
BungeeSuiteSpawn: 0.5b-8, Jail: 2.6.5-b3, Citizens: 2.0.14-SNAPSHOT (build 1194), 
BlocksHub: 0.5b, Blacksmith: 1.1, Denizen: 0.9.6-SNAPSHOT (build 37), Alchemist: 1.1, 
CompatNoCheatPlus: 6.5.0-RC-sMD5NET-b68, Sentry: 1.8.2, Stablemaster: 1.11, 
NoCheatPlus: 3.12.0-SNAPSHOT-sMD5NET-b773, Depenizen: 0.2.1 (build 230), AsyncWorldEdit: 2.0.1, 
dIRCBot: 0.2 (build 1), Builder: 0.9.1
Loaded Worlds (1): Hub
Online Players (1): Chemical_Datas(Chemical_Datas)

01:49:25 [INFO] +> [Denizen] Processing outside scripts... 
01:49:25 [INFO] +> [Denizen] Processing unnamed script... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Block Interact 
                   Prompts\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod 
                   BowModification\Commands.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod 
                   BowModification\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod 
                   BowModification\Headshot.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod C4\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chat Modifications\On Chat 
                   Name Notification.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chat Modifications\On Chat 
                   Player Noise.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chat Modifications\On Chat 
                   Range Hearing.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chat Modifications\On Chat 
                   Word Replacment.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chat 
                   Modifications\Procedures.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chat 
                   Modifications\Tasks.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chest Locking\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chest Locking\Items.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Chest 
                   Locking\Procedures.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Citizens Denizen 
                   Autosave\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Citizens Denizen 
                   Autosave\Tasks.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Cuboid 
                   Protection\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod CUI Display\CUI Display 
                   Event.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Custom Names Kits 
                   Commands\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Damage Displays\Damage 
                   Display.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Epic Glass\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Epic Glass\Tasks.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Fire Control\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Fishing 
                   Contest\FishingContestCommands.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Global 
                   Changelog\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Hardcore Player Join Max 
                   Health 40\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Invisibility 
                   Sneak\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Items - Craftable\Vanilla 
                   Craftable Items.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Items - 
                   Legendary\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Items - 
                   Legendary\Items\Legendary Item Examples.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Lightning 
                   Modifications\Lightning Strike Range Multiplier.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Lore 
                   Modification\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Magic Spells 
                   Intregration\Intregration.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Manager 
                   Chests\DataBase.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Manager 
                   Chests\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Manager Drops\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Minez Healing\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Player Join Events Greet 
                   Protect Hub\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Player Powers\Class 
                   Acrobat.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Player Powers\Class 
                   Telekenitic.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Player Powers\Powers - 
                   Controller Event Dispatcher.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Player Powers\Powers - 
                   Energy Events Handler.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Plugin 
                   Interfaces\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod SAIA\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod SAIA\Formats.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Server Err 
                   Notifications\Event Server Error Reporting.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Server Sign 
                   Handling\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Server Time 
                   Syncronation\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Server Time 
                   Syncronation\Tasks.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Teleport 
                   Particles\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Torch 
                   Modifications\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Void Teleport\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Mod Vote Tracker\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Player Death 
                   Manaquins\Events.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Commands\Server Command 
                   Collection.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Databases\Database Item 
                   Composition.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Databases\Database Item 
                   Interaction.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Databases\World Event - 
                   Database Auto Fill.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Debugging\Debug 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Debugging\Server 
                   Debugger.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Format 
                   Scripts\Formating.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Ingame 
                   Scripting\Assignment Custom Item Creation I.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Ingame 
                   Scripting\Assignment Custom Item Creation II.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Ingame 
                   Scripting\Assignment Key Value Determination.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Ingame 
                   Scripting\Assignment KVD Striped.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Item Scripts\Alchemy 
                   Items.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Item Scripts\Blacksmith 
                   Items.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Item Scripts\Item Lore 
                   Stats Mappings.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Account Protection.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Alice Chat Bot.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Hannah Example.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Home Steader.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Hunter.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Message Manager.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Music Player.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Nick Name.yml'... 
01:49:25 [INFO]  ERROR! Woah! Error parsing \Server Npc Scripts\Assignment 
                   Nick Name.yml! 
01:49:25 [INFO]  ERROR! Internal exception was thrown! 
01:49:25 [SEVERE] mapping values are not allowed here
 in 'string', line 5, column 18:
    Nick Name Manager:
                     ^

01:49:25 [SEVERE] org.yaml.snakeyaml.scanner.ScannerImpl.fetchValue(ScannerImpl.java:871)
01:49:25 [SEVERE] org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:360)
01:49:25 [SEVERE] org.yaml.snakeyaml.scanner.ScannerImpl.peekToken(ScannerImpl.java:249)
01:49:25 [SEVERE] org.yaml.snakeyaml.parser.ParserImpl$ParseDocumentEnd.produce(ParserImpl.java:253)
01:49:25 [SEVERE] org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:158)
01:49:25 [SEVERE] org.yaml.snakeyaml.parser.ParserImpl.getEvent(ParserImpl.java:168)
01:49:25 [SEVERE] org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:124)
01:49:25 [SEVERE] org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105)
01:49:25 [SEVERE] org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:120)
01:49:25 [SEVERE] org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:481)
01:49:25 [SEVERE] org.yaml.snakeyaml.Yaml.load(Yaml.java:400)
01:49:25 [SEVERE] net.aufdemrand.denizencore.utilities.YamlConfiguration.load(YamlConfiguration.java:19)
01:49:25 [SEVERE] net.aufdemrand.denizencore.scripts.ScriptHelper.loadConfig(ScriptHelper.java:130)
01:49:25 [SEVERE] net.aufdemrand.denizencore.scripts.ScriptHelper._concatenateCoreScripts(ScriptHelper.java:178)
01:49:25 [SEVERE] net.aufdemrand.denizencore.scripts.ScriptHelper.reloadScripts(ScriptHelper.java:22)
01:49:25 [SEVERE] net.aufdemrand.denizencore.DenizenCore.loadScripts(DenizenCore.java:78)
01:49:25 [SEVERE] net.aufdemrand.denizencore.DenizenCore.reloadScripts(DenizenCore.java:91)
01:49:25 [SEVERE] net.aufdemrand.denizen.DenizenCommandHandler.reload(DenizenCommandHandler.java:393)
01:49:25 [SEVERE] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
01:49:25 [SEVERE] sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
01:49:25 [SEVERE] sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
01:49:25 [SEVERE] java.lang.reflect.Method.invoke(Unknown Source)
01:49:25 [SEVERE] net.aufdemrand.denizen.utilities.command.CommandManager.executeMethod(CommandManager.java:135)
01:49:25 [SEVERE] net.aufdemrand.denizen.utilities.command.CommandManager.execute(CommandManager.java:71)
01:49:25 [SEVERE] net.aufdemrand.denizen.utilities.command.CommandManager.executeSafe(CommandManager.java:159)
01:49:25 [SEVERE] net.aufdemrand.denizen.Denizen.onCommand(Denizen.java:663)
01:49:25 [SEVERE] org.bukkit.command.PluginCommand.execute(PluginCommand.java:44)
01:49:25 [SEVERE] org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:181)
01:49:25 [SEVERE] org.bukkit.craftbukkit.v1_8_R1.CraftServer.dispatchCommand(CraftServer.java:643)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.PlayerConnection.handleCommand(PlayerConnection.java:1105)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.PlayerConnection.a(PlayerConnection.java:940)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.PacketPlayInChat.a(PacketPlayInChat.java:26)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.PacketPlayInChat.a(PacketPlayInChat.java:53)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.PacketHandleTask.run(SourceFile:13)
01:49:25 [SEVERE] java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
01:49:25 [SEVERE] java.util.concurrent.FutureTask.run(Unknown Source)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.MinecraftServer.z(MinecraftServer.java:684)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.DedicatedServer.z(DedicatedServer.java:316)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.MinecraftServer.y(MinecraftServer.java:625)
01:49:25 [SEVERE] net.minecraft.server.v1_8_R1.MinecraftServer.run(MinecraftServer.java:528)
01:49:25 [SEVERE] java.lang.Thread.run(Unknown Source)
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Peace Keeper.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Player Definitions.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Scheduled Npc.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Search Animate Blocks.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Searcher of Blocks.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Sentry.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Skin Changer.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Assignment 
                   Wandering Npc.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Events Npc 
                   Command Signs.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Npc - State 
                   Modifiers.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Npc Ai 
                   Experiments.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Npc General 
                   Library.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Npc Spawning 
                   Manager.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Npc Stats 
                   Ideas.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Npc World 
                   Informant.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Npc World 
                   Interact.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc 
                   Scripts\TagMiniGame.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Tasks - 
                   Action Sets.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Tasks - Base 
                   Sets.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Tasks - Find 
                   Furniture.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Tasks - Npc 
                   Command Signs.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Tasks - Npc 
                   Conditions World Interface.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Npc Scripts\Tasks - 
                   Schedulers.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Awards 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Boss Bar 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility 
                   Scripts\Comparative Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Flag 
                   Database Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\General 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Injector 
                   Transformer Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Json 
                   Tellraw Ideas.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\L-Systems 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\List 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Math 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Nameplate 
                   Action Sets.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Nameplate 
                   Utilities (Depreciated).yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Nameplate 
                   Utilities - Menu Database Sorta.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Nameplate 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Object 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility 
                   Scripts\ScoreBoard Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Script 
                   Procedure Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Server 
                   Time Conversions.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Sorting 
                   Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Sql 
                   Manger ~Anthony~.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Timed 
                   Task Call.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Vanilla 
                   Chat Click Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server Utility Scripts\Zone 
                   Block Utilities.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server World Scripts\Block Place 
                   Notifications.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server World Scripts\Hub 
                   Scheduled Task Queue.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server World Scripts\On Join 
                   Announcment Bar.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server World Scripts\On Join 
                   Data Collection.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\Server World Scripts\Player 
                   Controller Event Dispatcher.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\User 
                   Scripts\Travecat1\Assignment Account Protection.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\User 
                   Scripts\Travecat1\Assignment Trav Example.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\User 
                   Scripts\Travecat1\NPCTalk.yml'... 
01:49:25 [INFO] +> [Denizen] Processing '\User Scripts\Travecat1\Trave 
                   Enter Script.yml'... 
01:49:25 [INFO]  OKAY! All scripts loaded! 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DYNAMICEXECUTE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENTITY EVENT NOTIFY as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONVERT MONTHS TO 
                   SECONDS as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENERGY PACKET 
                   REPRESENTATION as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML INJECTOR 
                   TRANSFORMER as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER DEFINITION 
                   INTERACT as type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script __RETURN__ as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JSUBCHOICESELECTOR as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLASH DISPLAY as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ANIMATE INTERACT as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CITIZENS DENIZENS 
                   AUTOSAVE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LISTEN as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CSERIESHELPER as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SPOTTED_MOB as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MESSAGE MANAGER as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET LINE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TEST CHAT LINKS as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TIMED HAS MOVED as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BLOCK LINE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EFFECT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RESUME QUEUE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HEIGHT TO AGE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEBUG FORMAT as type 
                   FORMAT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HUNTER as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script COMMANDS as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOCKED BY PASSWORD ENTRY 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LEVEL 1 LOCKED CHEST as 
                   type INVENTORY 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WORD INDEX as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script C4DETTRIGGER as type 
                   ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script UPDATE SIDE TEXT as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STRIP PREFIX as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONVERT WEEKS TO SECONDS 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET CUBOID PROPERTY as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SHOW SIDE TEXT as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DETERMINE WORD 
                   REPLACEMENT as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DENIZEN as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONVERT DAYS TO SECONDS 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOOK LOCK COST ALLOW 
                   CHECK as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ITEM AWARD DEFAULTS as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SOUND as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BUILD PASSENGER LIST as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script 78945631237387383 as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NEIGHBOUR BLOCKS as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CUBE SURROUNDING 
                   LOCATION as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CLASS ACROBAT as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script START QUEUEING TARGETS 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script POP RIGHT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCRIPT TITLE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script INGAS EXOTIC SWORD as 
                   type ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HAS MOVED as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RUN SCRIPT WHILE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script COAL LOCK as type ITEM 
01:49:25 [INFO]  Filled tag <black> with ''. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script THRESHOLD RANDOM SUCCESS 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TRANSFORM LIST as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SERIAL TASK EXECUTE as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SET TAG LOCATION as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TAG COMMANDS as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script COMPLETED A NAVIGATION 
                   TARGET as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOSS BAR SCROLL as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SET CONSTANT as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOCATION EFFECT 
                   DETERMINATE as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CLEAR SIDE TEXT as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NAMEPLATE ATTRACTOR as 
                   type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WORK TASK SCHEDULER as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script UNIQUE NAME THATS DOSNT 
                   CLASH WITH OTHER 'ROOTS' OR WHATEVER 68464321681654 as 
                   type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SYNC LORE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCRIPT TYPE 
                   DETERMINATION as type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCRIPTED TIME CHANGER as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFYBLOCK as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ON DEATH BODY GENERATION 
                   EVENT as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEFAULT BOOK LOCK as 
                   type BOOK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHATBOT TESTING as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EXPIRE TEMP YAML DATA as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC STATS DEFAULTS as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REPEATED TASK CALL as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOCATION HAS PROPERTY as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCOREBOARD DEFAULTS as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script UPDATE ITEM IN ITEMS 
                   DATABASE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML DATA EXPIRED as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PERSONAL TASK SCHEDULER 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SYNC ITEM as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TACTICS_ELSE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER CHAT RANGE 
                   MODIFICATIONS as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ADD KEYSTRING as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CSBL as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TOGGLE FLAG as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SHOW NPC TASK QUEUE as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET SCHEMATIC as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SIGN HANDLING as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HOURS24 TO HOURS12 as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script 
                   IS_WITHIN_NEXT_NAVIGATION_TARGET as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SENTRY LOGIC TICK as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LAZER as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DIAMONDHORSEARMOR as 
                   type ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEPRECIATED SUMMON 
                   DISPLAY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCRIPTING MANAGER as 
                   type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NEXT ITEM as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REMAINING ITERATOR as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script VOID SPAWN TELEPORTATION 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SET WANDER LOCATION as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCHEDULED TASK FOR 
                   SERVER TIME as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC INTERACTS WITH A 
                   ENTITY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DATABASE_FORMATTING as 
                   type FORMAT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHARGE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PASSWORD MANAGER SYSTEM 
                   as type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HEALING MECHANIC as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RENAME as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONDITIONAL REPEATED 
                   TASK CALL as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MOD SCRIPTED FIRE 
                   PROTECTION as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REDIRECT_FLYING_ENTITY 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DIAMOND ARMOR as type 
                   ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FIND NEARBY DISPLAY as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CLAIM LOCATION as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DESPAWN as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HEADSHOT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NO CONTROL ACTION FOR 
                   EVENT as type FORMAT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SLEEP NEARBY as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENTITY GET TARGET BLOCK 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DISABLE LOGIN 
                   REQUIREMENT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MOD BOW MODIFICATION 
                   COMMANDS as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script COMPRESS ARGUMENTS as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TESTITEM as type ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYEFFECT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MEETS BLACK WHITE LIST 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ACTION as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DSADDLE as type ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TEST PATH as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WORLD NPC STAT TICK as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC INTERACTS WITH A 
                   BLOCK as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TICK NPC STATS as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ESSENTIALS as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOCATION SOUND 
                   DETERMINATE as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script AUTO SYNC as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EVALUATOR as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TCAT TEST as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LEGENDARY_SWORD as type 
                   ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOOK LOCK as type ITEM 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <magic> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <magic> with ''. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  ERROR! Invalid or missing player for tag <player.name>! 
01:49:25 [INFO]  Filled tag <player.name> with 'player.name'. 
01:49:25 [INFO]  ERROR! Tag <player.name> is invalid! 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <server.list_ops.random.name> with 
                   'Chemical_Datas'. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <&co> with ':'. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <&co> with ':'. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <server.list_ops.random.name> with 
                   'Travecat1'. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <&co> with ':'. 
01:49:25 [INFO]  Filled tag <red> with ''. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <white> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  ERROR! Invalid or missing player for tag <player.name>! 
01:49:25 [INFO]  Filled tag <player.name> with 'player.name'. 
01:49:25 [INFO]  ERROR! Tag <player.name> is invalid! 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <server.list_ops.random.name> with 
                   'Rag1ngW1f3'. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STATS FRAMEWORK as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TOGGLED as type FORMAT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STATS TICK as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TSTR as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RANDOM LOCATION AROUND 
                   POINT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEFINITION as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script POINTS ON LINESEGMENT as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DAMAGEDISPLAY as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHEST as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DURATION CONVERSION 
                   TESTING as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHAT INPUT FORMATTING as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHEST LOCKING as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOCATION AVAILABLE as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONVERT HOURS TO SECONDS 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REMEMBER TASK CALL as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC INCREMENT STAT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONFIGURABLE ESCAPING as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WALK TO as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENGAGE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SIT ON as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script 
                   IS_WITHIN_LAST_NAVIGATION_TARGET as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script _UTIL_DTIME_COMMAND as 
                   type COMMAND 
01:49:25 [INFO]  Filled tag <&lt> with '<'. 
01:49:25 [INFO]  Filled tag <&gt> with '>'. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONVERT YEARS TO SECONDS 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STOP MINIGAME as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WAIT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WANDER NEARBY as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TELLRAW_TEST as type 
                   COMMAND 
01:49:25 [INFO]  Filled tag <&nl> with '
'. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REASON TO TURN INVISIBLE 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CLASS3SERIESWEAPON as 
                   type ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ADD_CHANGELOG_ENTRY as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FIND UTILITIES as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script START CONTEST as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MAX HEALTH ADJUSTMENT 
                   FOR HARDCORE WORLD as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script INDEX IN RANGE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DNAMETAG as type ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LORE MODIFICATION EVENT 
                   DETECTION as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ANIMATE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EQUIP TARGET ARGS as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MUSIC TEST as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script AI TEST as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SENTRY INTERACT SCRIPT 
                   as type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script _UTIL_GL as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script POWERS EVENT CONSTRUCTOR 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TAG NPC HANDLER as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JOIN DATA COLLECTION as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NAVIGATE TO as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JOIN MINIGAME as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JSONTEST as type YAML 
                   DATA 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG APPEND LEFT as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WINNER OF MINIGAME as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MCMF as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEBUG WRAPPER as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WAKE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DRINK EFFECT as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EVENT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SAI RESPONSE 
                   DETERMINATION as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WANDER SCHEDULER as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EVENT AWARD EXPERIENCE 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOSS BAR as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHANGELOG as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TEST CHAT LINKS_ as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEBUG DISPATCHER as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ADD KNOWLEDGE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFY INDEX as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG POP LEFT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script OBJECT as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEFINE AT_HOME TACTIC as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EQUIP ARGS as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WALK NEAR as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC_HUNGER_SCRIPT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEFINE NAVIGATION TACTIC 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SORT_TEST as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ISNPCCOMMANDSIGN as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SWITCH as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCHEDULE TASK FOR TIME 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SPELL as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC DELAYED TASK EXECUTE 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER TELEPORT 
                   ENDER_SIGNAL PARTICLES as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HEAD as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEPRECIATED SHOOT TEST 
                   SCRIPT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET LOCAL MOBS as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script OBJECT DATABASE ON START 
                   SETUP as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC VAGRANT as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SEARCH MANAGER as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DRINK SOMETHING as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOOK LOCK EVENTS as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SHOW SIDE TEXT GROUP as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC EVENT LISTENER as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DISPLAY DEFAULTS EVENTS 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ANCHOR as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YIELD ITERATOR 
                   INCREMENTATION as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LIST APPEND LEFT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SHOW NPC TASK STATUS as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BUILD CONNECTED BLOCK 
                   LIST as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script QUICK CHANGE DRESSER as 
                   type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MOVE BLOCK LIST as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEBUG as type FORMAT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IRONHORSEARMOR as type 
                   ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SIGN PROCESSOR as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFY SIGN LINE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LIST APPEND RIGHT as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOCK TYPE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HAWKEYE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script VOTE TRACKER as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MOVE SCHEMATIC as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET CHEST DATABASE ENTRY 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS_THIRSTY as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS_FATIGUED as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CLICKER as type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STRING CONTAINS REGEX as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MESSAGE SYSTEM as type 
                   INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ITEM ON HEAD SCRIPT 
                   EVENT INJECTOR as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script INDEX IN as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER NPC COMMAND SIGN 
                   HANDLING as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script INTRESTED OBJECTS as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RUN AWAY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ACROBAT WARMUP EFFECT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ILS MAPPING as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TRAVES TEST ASSIGNMENT 
                   PRACTIVE EXAMPLE THATS GOTTA LONG NAME 654654654321968 as 
                   type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEFINE LIVING TACTIC as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ATTRACTOR DISPLAY TYPE 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REMOVE STRAY DISPLAY as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REMOVE DISPLAY as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOOK LOCK PASSWORD ALLOW 
                   CHECK as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script 
                   654846168143516354354168416321656565487 as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MATERIAL INTERACTION 
                   DEFAULTS as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SEARCH AND DESTROY as 
                   type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HAS_KEY_FOR as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LEAVE MINIGAME as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TEST MENU as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LEGENDARY_HELMET as type 
                   ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DETERMINE MAX POSSIBLE 
                   DISPLAY HEIGHT as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script COOLDOWN WARM HANDLER 
                   FOR PLAYER POWERS as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TESTJSON as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TLIST as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IRON LOCK as type ITEM 
01:49:25 [INFO]  Filled tag <gray> with ''. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG INDEX THAT CONTAINS 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script POTION OF HORROR as type 
                   ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PAUSE QUEUE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER OWNS CUBOID as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STRING SCROLL as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER CHOICE COMMAND as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LAPIS LOCK as type ITEM 
01:49:25 [INFO]  Filled tag <dark_blue> with ''. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS_TIRED as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GENERATE RELATIVE 
                   LOCATION LIST as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script INTER REACT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONTROLLER EVENT 
                   DETECTION2 as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENTITY DISPLAY LOCATION 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC TASK EXECUTE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TORCH MODIFICATIONS as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SENTRY as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS_HOMELESS as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script INVISIBILITY SNEAK as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SNIPERSHOT as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC TACTICS EXECUTOR as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEPRECIATED CLOSE 
                   DISPLAY as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GENERATE LOCATION LIST 
                   FROM RELATIVE POINT as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CLASS TELEKINETIC as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOSS BAR BASE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SOLVE ASA TRIANGLE as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ICONIZE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC INTERACT EVENT as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS BETWEEN NUMBERS as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GLOBAL CHAT CLEARING as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CSBL V2 as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHEST CAN HAVE LOOT 
                   ADDED as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SEARCH TEST as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SAI LISTENER as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML LOAD as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MOVE BLOCK LIST TESTER 
                   SCRIPT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script __WALK TO__ as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script C4 LOCATION DETONATION 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DETERMINE PAIR LOCATIONS 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ADD TASK as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC DRAIN STAT as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG OPERATOR as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML ASSIGN as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script APPEND RIGHT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REMEMBER LOCATION as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TOOL EVENT AWARD STATUS 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CUBE SURROUNDING as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML WRITING TEST as 
                   type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script UPDATE DISPLAY LINE as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFY WORDS as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IN ALLOWED GROUP as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FORMATTED as type FORMAT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LINE TO AGE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCRIPTOPTIONS as type 
                   FORMAT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ON JOIN PLAYER 
                   MANAGEMENT as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ARRIVED AT NAVIGATION 
                   TARGET as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HANNAHS GUARD 
                   NOTIFICATIONS as type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG REVERSE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TEMP YAML HANDLING as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JSONFIXER as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG POP INDEX as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script AWARD ENTITY FOR WORK 
                   PERFORMED as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JOIN CONTEST as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script _DEPEND GENERIC LOOP 
                   PROCESS as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GLASS TARGET EVENT 
                   LISTENER as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONTEXT MENU DISPLAY 
                   TIMEOUT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RED OR BLUE_ as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS_LOCKED as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script QUICKSORT BY DISTANCE V2 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DIAMOND LOCK as type 
                   ITEM 
01:49:25 [INFO]  Filled tag <aqua> with ''. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script OBJECT GET as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PARSE L-SYSTEM SYNTAX as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script UPDATE LOCKPICK MINIGAME 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script QUICKSORT BY DISTANCE V3 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENABLE LOGIN REQUIREMENT 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONNECTED BLOCKS as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER POWERS ENERGY 
                   EVENTS as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FIND SLEEPABLES as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEPRECIATED CLOSE 
                   PERSONAL DISPLAY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEBUG_TRACKER as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ANIMATE CHEST as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GATE KEEPER TALK as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STRIP ALL PREFIX as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG CHANGE VALUE as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SEARCH FOR MESSAGES as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS_WITHIN as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script INJECTED REPEATED TASK 
                   CALL as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ITEM CREATION MANAGER as 
                   type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS VISIBLE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TELEPORT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WINNER OF CONTEST as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER WORD REPLACEMENT 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOOK as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SEARCH AND DESTROY TEST 
                   as type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DELAY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEAD BODY ASSIGNMENT as 
                   type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCRIPT VALUE 
                   DETERMINATION as type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script L-SYSTEM REPLACE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONTROLLER EVENT 
                   DETECTION as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script START STATS TICK as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script COLOR CODES ANNOUNCMENT 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script UW SMITH SCHEDULER as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML CONSTRUCT NODE TREE 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS DATABASE CHEST as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG POP RIGHT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DETERMINE SELECTION 
                   INDEX as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER FLAGGED BONUSES 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DROP as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ANNOUNCE ARGUMENTS 
                   PASSED as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RANDOM INDEX IN RANGE as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DISPLAY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SPAWNABLE LOCATIONS IN 
                   CUBOID as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NUM_HOURS24 TO TICKS as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEPRECIATED SPAWN 
                   DISPLAY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script X5 as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GLASS BREAK EVENT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LIGHTNING STRIKE RANGE 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TRAVEL SCHEDULER as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER BOW HANDLING as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CUI DISPLAY EVENT as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script 
                   SQLMANAGER_CONNECTIONCHECK as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOAD TESTER as type 
                   COMMAND 
01:49:25 [INFO]  Filled tag <&lt> with '<'. 
01:49:25 [INFO]  Filled tag <&gt> with '>'. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS INT as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET INDEXES OF 
                   OCCURRENCE as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LEAVE CONTEST as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BIGC4 as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EAT EFFECT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS_ALIVE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JSON EXAMPLE FORMAT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NOTIFY DEBUG as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SQLMANAGER as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FLAG APPEND RIGHT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOOK LOCK PLAYER ALLOW 
                   CHECK as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RANDOM RANGE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BLOCK INTERACT DISPLAY 
                   TRIGGERS as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WRITING TEST as type 
                   INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WALK AND LOOK as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script AWARD ENTITY CLASS 
                   EXPERIENCE FOR WORK PERFORMED as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PASSWORD MANAGER as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REPEATED STRING as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JSONCHOICESELECTOR as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER BLOCK BREAK 
                   NOTIFICATIONS as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TRAVS NPC WALK CLOSE as 
                   type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFY LORE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML NODE DEFINITIONS as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML DEFINE KEY VALUES 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SCRIPTPARSER as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHUNKER_ASSIGNMENT as 
                   type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CUBOID PROTECTION EVENT 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BUILD QUEUE HNG LOCAL 
                   MOBTYPE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BREAK as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WALK NEAR ANCHOR as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SERVER CHAT CLEARING as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC COMMANDS as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER EVENT NOTIFY as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script QUICKSORT BY DISTANCE as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SIT NEARBY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SPAWNER TASK as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DJISTRAS STACK 
                   COMPONENT? as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC_HOMELESS_SCRIPT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ROTATE SCHEMATIC as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DISPLAY BASE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ACROBAT CHARGING EFFECT 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script KVW ASSIGNMENT as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BONUS HANDLING as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GOLD LOCK as type ITEM 
01:49:25 [INFO]  Filled tag <gold> with ''. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RESOLVABLE INDEX IN as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENTITY GET TARGET ENTITY 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FIND SITABLES as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONSTRUCT KEY VALUE as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ϻ�"PLAYER DEFINITION 
                   ASSIGN" as type ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RELEVANT SIGN SEARCH as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ADD PRIORITY TASK as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EAT as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script C4EXPLOSIVES as type 
                   ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SOLVED LOCKPICK MINIGAME 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CREATE SCROLL DISPLAY as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPCS WITHIN RANGE as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script POP LEFT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SQLMANAGER_OFFLINE as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENVIRONMENT EVENT NOTIFY 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SAI DATABASE MANAGER as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TREASURE CHEST HANDLING 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FROM TIME TO DURATION as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC WORLD INFORMANT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET AND ANNOUNCE PLAYER 
                   SPELL LIST as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC CAN SEE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script UPDATE BOOK IN BOOKS 
                   DATABASE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ANNOUNCEMENT BAR as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script KNOWLEDGE CONFIGURATION 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REMOVE as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYERS WITHIN RANGE as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WRITE KEY VALUE as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER IS OWNER as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CLEAR SIDE TEXT GROUP as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NO CONTROL EVENT 
                   NARRATION as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LETTERS WITHIN as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EAT SOMETHING as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script APPEND LEFT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script UW COOK SCHEDULER as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REVERSE INDEX IN RANGE 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script OUTSET CUBOID as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC CAN GET TO as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script START MINIGAME as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ENTEZ_HEADSHOT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script REDSTONE LOCK as type 
                   ITEM 
01:49:25 [INFO]  Filled tag <red> with ''. 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ITEM IN HAND SCRIPT 
                   EVENT INJECTOR as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER CHAT CLEARING as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOCKED DIFFICULTY as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONVERT TICKS TO SECONDS 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script KEYPAD MINIGAME as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SERVER SCHEDULED TASK 
                   QUEUE as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DISENGAGE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WRITE TO DATABASE as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET_FRAMED_BOOKS as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WIREDC4 as type ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BEACON LOCATION as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ANNOUNCE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script YAML SAVE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONVERT MILLISECONDS TO 
                   SECONDS as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GATHERING ITEM QUEUE as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ITEMS as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER CHAT NOTIFICATION 
                   as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script POP BLOCK as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STOP CONTEST as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GET LOCATION PROPERTY as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script GOLDHORSEARMOR as type 
                   ITEM 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ILS as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script OBJECT SET as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HASNPCCOMMANDSIGNATURE 
                   as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script JSON TEST DISPLAY as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DRINK as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script QUEUE SCHEDULER as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS_HUNGRY as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SERVER ERROR REPORTING 
                   EVENTS as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DEPRECIATED SHOOT 
                   DISPLAY as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONTEXT MENU as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CUSTOM PLAYER KITS as 
                   type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script L-SYSTEM GET AREA 
                   STRUCTURE as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC DECREMENT STAT as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script COMPARE as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script DISPATCHER TEST as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LOOP THROUGH as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SAI as type FORMAT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CONVERT MINUTES TO 
                   SECONDS as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NAMEPLATE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script LIMITED TASK CALL as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER DESIRES DEBUG as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BOOK LOCK GROUP ALLOW 
                   CHECK as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFY WORDS V2 as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ITEM IN HAND SCRIPT 
                   EVENT INJECTOR 2 as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WARMUP as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFY WORDS V4 as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFY WORDS V3 as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MODIFY WORDS V5 as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script HUNTING GATHERING 
                   PROCESS as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script FISHING CONTEST as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script AUTOSAVE as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TEST DISPLAY as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script TDM as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script STEST as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SLEEP ON as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script EQUIP as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NPC TACTICS SELECTOR as 
                   type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script NARRATE as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script MOVE DISPLAY as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script C4 ENTITY DETONATION as 
                   type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script CHANGE SKIN as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SPAWN as type PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script BUILD HUNTING TARGETS as 
                   type INTERACT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script RED OR BLUE as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script WRITE TIMED DATA as type 
                   TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script START LOCKPICK MINIGAME 
                   as type TASK 
01:49:25 [INFO] +> [ScriptRegistry] Adding script IS CUSTOM ITEM as type 
                   PROCEDURE 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ANTI-SWORD GUARD as type 
                   ASSIGNMENT 
01:49:25 [INFO] +> [ScriptRegistry] Adding script ERROR ANNOUNCER as type 
                   WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script PLAYER CHAT NOISE 
                   ACTIVATION as type WORLD 
01:49:25 [INFO] +> [ScriptRegistry] Adding script SQL_SELECT as type 
                   PROCEDURE 
01:49:25 [INFO] +> [EventManager] Scanning 71 world scripts... 
01:49:25 [INFO] +> [PlayerJumpSm...] Loaded Player Jump SmartEvent. 
01:49:25 [INFO] +> [EntityDamage...] Loaded Entity Damage SmartEvent. 
01:49:25 [INFO] +> [EntityDeathS...] Loaded Entity Death SmartEvent. 
01:49:25 [INFO] +> [BiomeEnterEx...] Loaded Biome Enter & Exit SmartEvent. 
01:49:25 [INFO] +> [CommandSmart...] Loaded Command SmartEvent. 
01:49:25 [INFO] +> [PlayerWalkSm...] Loaded PlayerWalk SmartEvent. 
01:49:25 [INFO] +> [PlayerStepsO...] Loaded Player Steps On SmartEvent. 
01:49:25 [INFO] +> [CuboidEnterE...] Loaded Cuboid Enter & Exit 
                   SmartEvent. 
01:49:25 [INFO] +> [AsyncChatSma...] Loaded Async Chat SmartEvent. 
01:49:25 [INFO] +> [ItemScrollSm...] Loaded Item Scroll SmartEvent. 
01:49:25 [INFO] +> [BlockFallsSm...] Loaded Block Falls SmartEvent. 
01:49:25 [INFO]  Filled tag <red> with ''. 
01:49:25 [INFO]  Filled tag <&lb> with '['. 
01:49:25 [INFO]  Filled tag <&rb> with ']'. 
01:49:25 [INFO]  Filled tag <yellow> with ''. 
01:49:25 [INFO]  Filled tag <&lb> with '['. 
01:49:25 [INFO]  Filled tag <player.world.name> with 'Hub'. 
01:49:25 [INFO]  Filled tag <&rb> with ']'. 
01:49:25 [INFO]  Filled tag <gold> with ''. 
01:49:25 [INFO]  Filled tag <magic> with ''. 
01:49:25 [INFO]  Filled tag <&lb> with '['. 
01:49:25 [INFO]  Filled tag <reset> with ''. 
01:49:25 [INFO]  Filled tag <gold> with ''. 
01:49:25 [INFO]  Filled tag <magic> with ''. 
01:49:25 [INFO]  Filled tag <&rb> with ']'. 
01:49:25 [INFO]  Filled tag <reset> with ''. 
01:49:25 [INFO]  Filled tag <blue> with ''. 
01:49:25 [INFO]  Adding definition %words% as Chemical_Datas there was an 
                   issue when reloading the scripts. 
01:49:25 [INFO]  Filled tag <proc[Iconize].context[Chemical_Datas there 
                   was an issue when reloading the scripts.]> with 
                   'Chemical_Datas there was an issue when reloading the 
                   scripts.'.