Paste #64002: Denizen Debug Logs From blAetheriar 3oPre Alpha

Date: 2020/01/12 16:21:32 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


Java Version: 1.8.0_222
Up-time: 2d 9h
CraftBukkit Version: git-Paper-41 (MC: 1.15.1)
Denizen Version: Core: 1.60-SNAPSHOT (Build 488), CraftBukkit: 1.1.2-SNAPSHOT (build 4474-DEV)
Active Plugins (36): CoreProtect: 2.17.5, dynmap: 3.0-beta-9-250, PluginConstructorAPI: 1.0.51, 
WorldEdit: 7.1.0-SNAPSHOT;4787-aeb8935, Builder: 4.0.4, PlaceholderAPI: 2.9.2, 
SkinnerLibs: 1.0-SNAPSHOT, WorldBorder: 1.9.10 (beta), SurvivalMechanics: 1.37, 
Multiverse-Core: 2.5-b719, ProtocolLib: 4.5.0, WorldGuard: 7.0.0;02b731f, NightVision: 2.0, 
LibsDisguises: 9.8.9, VoxelSniper: 5.172.0-SNAPSHOT, PermissionsEx: 1.23.4, 
GSit: [2.9.0.0], Vault: 1.7.2-b107, ServerRestorer: 1.0.23, NoLeafDecay: 1.0, 
Cannons: 2.5.5, Essentials: 2.17.1.0, Herochat: 6.0.1-SNAPSHOT-bb34, UltimateTimber: 1.0.7, 
EpicRename: 3.5, Movecraft: 7.0.0_beta_2, MCJukebox: 2.6.5, Brewery: 2.0.1, 
Citizens: 2.0.26-SNAPSHOT (build 1793), Sentinel: 1.9.9-SNAPSHOT (build 305), 
DiscordSRV: 1.18.4, Skinner: 4.2.0, EssentialsSpawn: 2.17.1.0, Denizen: 1.1.2-SNAPSHOT (build 4474-DEV), 
Depenizen: 2.0.0 (build 584), dDiscordBot: 0.6 (build 61)
Loaded Worlds (12): world, world_the_end, liberte, buildworld, eventworld, skyworld_v2, myrbuildworld, 
world_nether, new_buildworld, ascendedcity, myraeon, aetheria
Online Players (5): Insilvon(Insilvon), Deryn(_NicoNicoNii_), Captain_Francis_Grieves(Twisted_Fractal), 
Mav_Woah(AshNCinder), Zarasil(Silver___)
Offline Players: 35
Mode: online

00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:23 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:23 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:23 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:23 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:23 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:23 [INFO] +- Foreach loop 8 ---------+ 
00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:23 [INFO] +> Executing 'IF': use_braces='true' 
00:21:23 [INFO]  Filled tag <[station]> with '1772,4,-1581,buildworld'. 
00:21:23 [INFO]  Filled tag <server.flag[Telegraph_1772,4,-1581,buildworld_Channel]> with '5'. 
00:21:23 [INFO]  Filled tag <[channel]> with '1'. 
00:21:23 [INFO]  Comparable='Decimal(5.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:23 [INFO]  No part of the if command passed, no block will run. 
00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:23 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:23 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:23 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:23 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:23 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:23 [INFO] +- Foreach loop 9 ---------+ 
00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:23 [INFO] +> Executing 'IF': use_braces='true' 
00:21:23 [INFO]  Filled tag <[station]> with '1744,4,-1579,buildworld'. 
00:21:23 [INFO]  Filled tag <server.flag[Telegraph_1744,4,-1579,buildworld_Channel]> with '1'. 
00:21:23 [INFO]  Filled tag <[channel]> with '1'. 
00:21:23 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:23 [INFO]  If command passed, running block. 
00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:23 [INFO]  Filled tag <[station]> with '1744,4,-1579,buildworld'. 
00:21:23 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@1744,4,-1579,buildworld)' 
00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:23 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='5' 
00:21:23 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 83) NARRATE "<&a>*The red light on the Telegraph box begins 
                   to blink!*" "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:23 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '83' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:23 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '83' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:23 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:23 [INFO]  Filled tag <&a> with ''. 
00:21:23 [INFO] +> Executing 'NARRATE': Narrating='*The red light on the Telegraph box begins to blink!*'  Targets='' 
00:21:24 [INFO]  Running script event 'PlayerBreaksBlock', event='player breaks block' for script 'KERNEL' 
00:21:24 [INFO]  Starting InstantQueue 'KERNEL_PushingAspectsSeats' with player 'AshNCinder'... 
00:21:24 [INFO] +- Queue 'KERNEL_PushingAspectsSeats' Executing: (line 89) INJECT "LockpickBreakCheckIfLocked" ---------+ 
00:21:24 [INFO] +> Executing 'INJECT': script='s@LOCKPICKBREAKCHECKIFLOCKED (TASK)' 
00:21:24 [INFO] +- Queue 'KERNEL_PushingAspectsSeats' Executing: (line 128) DEFINE "location:<context.location.block>" ---------+ 
00:21:24 [INFO]  Filled tag <context.location.block> with 'l@74, 83, -91, ascendedcity'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='KERNEL_PushingAspectsSeats'  action='(location[0]:SET:l@74,83,-91,ascendedcity)' 
00:21:24 [INFO] +- Queue 'KERNEL_PushingAspectsSeats' Executing: (line 129) IF "<server.has_flag[<[location]>_Key]>" ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[location]> with 'l@74, 83, -91, ascendedcity'. 
00:21:24 [INFO]  Filled tag <server.has_flag[l@74,83,-91,ascendedcity_Key]> with 'false'. 
00:21:24 [INFO]  No part of the if command passed, no block will run. 
00:21:24 [INFO]  Completing queue 'KERNEL_PushingAspectsSeats' in 2ms. 
00:21:24 [INFO]  Running script event 'PlayerBreaksBlock', event='player breaks block' for script 'CUSTOMBLOCKSCONTROLLER' 
00:21:24 [INFO]  Starting InstantQueue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' with player 'AshNCinder'... 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 23) DEFINE "chunkID:<context.location.chunk>" 
                   ---------+ 
00:21:24 [INFO]  Filled tag <context.location.chunk> with 'ch@4,-6,ascendedcity'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine'  action='(chunkID[0]:SET:ch@4,-6,ascendedcity)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 24) DEFINE "locale:<context.location.block>" 
                   ---------+ 
00:21:24 [INFO]  Filled tag <context.location.block> with 'l@74, 83, -91, ascendedcity'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine'  
                   action='(locale[0]:SET:l@74,83,-91,ascendedcity)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 25) DEFINE 
                   "itemDrop:<proc[CustomItemCheck].context[<[chunkID]>|<[locale]>]>" ---------+ 
00:21:24 [INFO]  Filled tag <[chunkID]> with 'ch@4,-6,ascendedcity'. 
00:21:24 [INFO]  Filled tag <[locale]> with 'l@74, 83, -91, ascendedcity'. 
00:21:24 [INFO]  Adding definition 'chunkID' as ch@4,-6,ascendedcity 
00:21:24 [INFO]  Adding definition 'locale' as l@74,83,-91,ascendedcity 
00:21:24 [INFO]  Starting InstantQueue 'CUSTOMITEMCHECK_GlucoseWaterClassified' with player 'AshNCinder'... 
00:21:24 [INFO] +- Queue 'CUSTOMITEMCHECK_GlucoseWaterClassified' Executing: (line 102) IF "<server.has_file[/ChunkData/<[chunkID]>.yml]>" 
                   ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[chunkID]> with 'ch@4,-6,ascendedcity'. 
00:21:24 [INFO]  Filled tag <server.has_file[/ChunkData/ch@4,-6,ascendedcity.yml]> with 'false'. 
00:21:24 [INFO]  No part of the if command passed, no block will run. 
00:21:24 [INFO] +- Queue 'CUSTOMITEMCHECK_GlucoseWaterClassified' Executing: (line 109) DETERMINE "null" ---------+ 
00:21:24 [INFO] +> Executing 'DETERMINE': outcome='null'  passively='false'  Queue='q@CUSTOMITEMCHECK_GlucoseWaterClassified' 
00:21:24 [INFO]  Completing queue 'CUSTOMITEMCHECK_GlucoseWaterClassified' in 1ms. 
00:21:24 [INFO]  Filled tag <proc[CustomItemCheck].context[ch@4,-6,ascendedcity|l@74,83,-91,ascendedcity]> with 'null'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine'  action='(itemDrop[0]:SET:null)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 28) INJECT "CustomRegionOnPlayerBreaksBlock" 
                   ---------+ 
00:21:24 [INFO] +> Executing 'INJECT': script='s@CUSTOMREGIONONPLAYERBREAKSBLOCK (TASK)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 125) DEFINE "cuboids:<context.location.cuboids>" 
                   ---------+ 
00:21:24 [INFO]  Filled tag <context.location.cuboids> with 'li@'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine'  action='(cuboids[0]:SET:li@)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 126) IF 
                   "<context.location.cuboids.contains_text[AlchemyStation]>" ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <context.location.cuboids.contains_text[AlchemyStation]> with 'false'. 
00:21:24 [INFO]  No part of the if command passed, no block will run. 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 129) IF 
                   "<context.location.cuboids.contains_text[TransmutationCircle]>" ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <context.location.cuboids.contains_text[TransmutationCircle]> with 'false'. 
00:21:24 [INFO]  No part of the if command passed, no block will run. 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 31) INJECT "MachineOnPlayerBreaksBlock" ---------+ 
00:21:24 [INFO] +> Executing 'INJECT': script='s@MACHINEONPLAYERBREAKSBLOCK (TASK)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 84) DEFINE "cubes:<context.location.cuboids>" 
                   ---------+ 
00:21:24 [INFO]  Filled tag <context.location.cuboids> with 'li@'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine'  action='(cubes[0]:SET:li@)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 85) DEFINE "theCuboid" 
                   "<context.location.cuboids.filter[notable_name.starts_with[testmachine]].get[1]||null>" ---------+ 
00:21:24 [INFO]  Filled tag <context.location.cuboids.filter[notable_name.starts_with[testmachine]].get[1]||null> with 'null'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine'  definition='thecuboid'  value='null' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 86) RUN "MachineCheck" 
                   "def:<[cubes]>|<[theCuboid]>" ---------+ 
00:21:24 [INFO]  Filled tag <[cubes]> with 'li@'. 
00:21:24 [INFO]  Filled tag <[theCuboid]> with 'null'. 
00:21:24 [INFO] +> Executing 'RUN': script='s@MACHINECHECK (TASK)'  definitions='li@|null' 
00:21:24 [INFO]  Adding definition 'cubes' as 
00:21:24 [INFO]  Adding definition 'theCuboid' as null 
00:21:24 [INFO]  Starting TimedQueue 'MACHINECHECK_HoldingHotObligations' with player 'AshNCinder'... 
00:21:24 [INFO] +- Queue 'MACHINECHECK_HoldingHotObligations' Executing: (line 90) IF "<[cubes].contains_text[testmachine]>" ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[cubes].contains_text[testmachine]> with 'false'. 
00:21:24 [INFO]  No part of the if command passed, no block will run. 
00:21:24 [INFO]  Completing queue 'MACHINECHECK_HoldingHotObligations' in 0ms. 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 34) INJECT "TelegraphOnPlayerBreaksBlock" 
                   ---------+ 
00:21:24 [INFO] +> Executing 'INJECT': script='s@TELEGRAPHONPLAYERBREAKSBLOCK (TASK)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 130) IF "<[itemDrop].contains_text[Telegraph]>" 
                   ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[itemDrop].contains_text[Telegraph]> with 'false'. 
00:21:24 [INFO]  No part of the if command passed, no block will run. 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 37) INJECT "CandleOnPlayerBreaksBlock" ---------+ 
00:21:24 [INFO] +> Executing 'INJECT': script='s@CANDLEONPLAYERBREAKSBLOCK (TASK)' 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 113) IF "<[itemDrop].contains_text[Candle]>" 
                   ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[itemDrop].contains_text[Candle]> with 'false'. 
00:21:24 [INFO]  No part of the if command passed, no block will run. 
00:21:24 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' Executing: (line 40) IF "<[itemDrop]>" "!=" "null" ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[itemDrop]> with 'null'. 
00:21:24 [INFO]  Logic='NEGATIVE', Comparable='Element(null)', Operator='EQUALS', ComparedTo='Element(null)' --> OUTCOME='false' 
00:21:24 [INFO]  No part of the if command passed, no block will run. 
00:21:24 [INFO]  Completing queue 'CUSTOMBLOCKSCONTROLLER_MedicationMoralDetermine' in 7ms. 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:24 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:24 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:24 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:24 [INFO] +- Foreach loop 10 ---------+ 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[station]> with '1744,4,-1579,buildworld'. 
00:21:24 [INFO]  Filled tag <server.flag[Telegraph_1744,4,-1579,buildworld_Channel]> with '1'. 
00:21:24 [INFO]  Filled tag <[channel]> with '1'. 
00:21:24 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:24 [INFO]  If command passed, running block. 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:24 [INFO]  Filled tag <[station]> with '1744,4,-1579,buildworld'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@1744,4,-1579,buildworld)' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:24 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='4' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 82) NARRATE "<&a>*The box begins to hum<&co> a 
                   transmission?*" "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '82' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '82' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:24 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:24 [INFO]  Filled tag <&a> with ''. 
00:21:24 [INFO]  Filled tag <&co> with ':'. 
00:21:24 [INFO] +> Executing 'NARRATE': Narrating='*The box begins to hum: a transmission?*'  Targets='' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:24 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:24 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:24 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:24 [INFO] +- Foreach loop 11 ---------+ 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[station]> with '1763,4,-1588,buildworld'. 
00:21:24 [INFO]  Filled tag <server.flag[Telegraph_1763,4,-1588,buildworld_Channel]> with '1'. 
00:21:24 [INFO]  Filled tag <[channel]> with '1'. 
00:21:24 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:24 [INFO]  If command passed, running block. 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:24 [INFO]  Filled tag <[station]> with '1763,4,-1588,buildworld'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@1763,4,-1588,buildworld)' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:24 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='1' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 79) NARRATE "<&a>*The Telegraph Line whirrs to life.*" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '79' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '79' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:24 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:24 [INFO]  Filled tag <&a> with ''. 
00:21:24 [INFO] +> Executing 'NARRATE': Narrating='*The Telegraph Line whirrs to life.*'  Targets='' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:24 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:24 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:24 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:24 [INFO] +- Foreach loop 12 ---------+ 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:24 [INFO] +> Executing 'IF': use_braces='true' 
00:21:24 [INFO]  Filled tag <[station]> with '1758,4,-1589,buildworld'. 
00:21:24 [INFO]  Filled tag <server.flag[Telegraph_1758,4,-1589,buildworld_Channel]> with '1'. 
00:21:24 [INFO]  Filled tag <[channel]> with '1'. 
00:21:24 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:24 [INFO]  If command passed, running block. 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:24 [INFO]  Filled tag <[station]> with '1758,4,-1589,buildworld'. 
00:21:24 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@1758,4,-1589,buildworld)' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:24 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='3' 
00:21:24 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 81) NARRATE "<&a>*--Bzzt!--*" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '81' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:24 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '81' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:24 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:24 [INFO]  Filled tag <&a> with ''. 
00:21:24 [INFO] +> Executing 'NARRATE': Narrating='*--Bzzt!--*'  Targets='' 
00:21:25 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:25 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:25 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:25 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:25 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:25 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:25 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:25 [INFO] +- Foreach loop 13 ---------+ 
00:21:25 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <[station]> with '1744,4,-1579,buildworld'. 
00:21:25 [INFO]  Filled tag <server.flag[Telegraph_1744,4,-1579,buildworld_Channel]> with '1'. 
00:21:25 [INFO]  Filled tag <[channel]> with '1'. 
00:21:25 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:25 [INFO]  If command passed, running block. 
00:21:25 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:25 [INFO]  Filled tag <[station]> with '1744,4,-1579,buildworld'. 
00:21:25 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@1744,4,-1579,buildworld)' 
00:21:25 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:25 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='2' 
00:21:25 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 80) NARRATE "<&a>*--Whirr--*" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:25 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '80' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:25 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '80' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:25 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:25 [INFO]  Filled tag <&a> with ''. 
00:21:25 [INFO] +> Executing 'NARRATE': Narrating='*--Whirr--*'  Targets='' 
00:21:25 [INFO]  Running script event 'PlayerBreaksBlock', event='player breaks block' for script 'KERNEL' 
00:21:25 [INFO]  Starting InstantQueue 'KERNEL_BenefitsInvolvementOh' with player 'AshNCinder'... 
00:21:25 [INFO] +- Queue 'KERNEL_BenefitsInvolvementOh' Executing: (line 89) INJECT "LockpickBreakCheckIfLocked" ---------+ 
00:21:25 [INFO] +> Executing 'INJECT': script='s@LOCKPICKBREAKCHECKIFLOCKED (TASK)' 
00:21:25 [INFO] +- Queue 'KERNEL_BenefitsInvolvementOh' Executing: (line 128) DEFINE "location:<context.location.block>" ---------+ 
00:21:25 [INFO]  Filled tag <context.location.block> with 'l@75, 83, -91, ascendedcity'. 
00:21:25 [INFO] +> Executing 'DEFINE': queue='KERNEL_BenefitsInvolvementOh'  action='(location[0]:SET:l@75,83,-91,ascendedcity)' 
00:21:25 [INFO] +- Queue 'KERNEL_BenefitsInvolvementOh' Executing: (line 129) IF "<server.has_flag[<[location]>_Key]>" ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <[location]> with 'l@75, 83, -91, ascendedcity'. 
00:21:25 [INFO]  Filled tag <server.has_flag[l@75,83,-91,ascendedcity_Key]> with 'false'. 
00:21:25 [INFO]  No part of the if command passed, no block will run. 
00:21:25 [INFO]  Completing queue 'KERNEL_BenefitsInvolvementOh' in 0ms. 
00:21:25 [INFO]  Running script event 'PlayerBreaksBlock', event='player breaks block' for script 'CUSTOMBLOCKSCONTROLLER' 
00:21:25 [INFO]  Starting InstantQueue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' with player 'AshNCinder'... 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 23) DEFINE "chunkID:<context.location.chunk>" 
                   ---------+ 
00:21:25 [INFO]  Filled tag <context.location.chunk> with 'ch@4,-6,ascendedcity'. 
00:21:25 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely'  action='(chunkID[0]:SET:ch@4,-6,ascendedcity)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 24) DEFINE "locale:<context.location.block>" 
                   ---------+ 
00:21:25 [INFO]  Filled tag <context.location.block> with 'l@75, 83, -91, ascendedcity'. 
00:21:25 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely'  
                   action='(locale[0]:SET:l@75,83,-91,ascendedcity)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 25) DEFINE 
                   "itemDrop:<proc[CustomItemCheck].context[<[chunkID]>|<[locale]>]>" ---------+ 
00:21:25 [INFO]  Filled tag <[chunkID]> with 'ch@4,-6,ascendedcity'. 
00:21:25 [INFO]  Filled tag <[locale]> with 'l@75, 83, -91, ascendedcity'. 
00:21:25 [INFO]  Adding definition 'chunkID' as ch@4,-6,ascendedcity 
00:21:25 [INFO]  Adding definition 'locale' as l@75,83,-91,ascendedcity 
00:21:25 [INFO]  Starting InstantQueue 'CUSTOMITEMCHECK_AcdbentityRonDetector' with player 'AshNCinder'... 
00:21:25 [INFO] +- Queue 'CUSTOMITEMCHECK_AcdbentityRonDetector' Executing: (line 102) IF "<server.has_file[/ChunkData/<[chunkID]>.yml]>" 
                   ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <[chunkID]> with 'ch@4,-6,ascendedcity'. 
00:21:25 [INFO]  Filled tag <server.has_file[/ChunkData/ch@4,-6,ascendedcity.yml]> with 'false'. 
00:21:25 [INFO]  No part of the if command passed, no block will run. 
00:21:25 [INFO] +- Queue 'CUSTOMITEMCHECK_AcdbentityRonDetector' Executing: (line 109) DETERMINE "null" ---------+ 
00:21:25 [INFO] +> Executing 'DETERMINE': outcome='null'  passively='false'  Queue='q@CUSTOMITEMCHECK_AcdbentityRonDetector' 
00:21:25 [INFO]  Completing queue 'CUSTOMITEMCHECK_AcdbentityRonDetector' in 0ms. 
00:21:25 [INFO]  Filled tag <proc[CustomItemCheck].context[ch@4,-6,ascendedcity|l@75,83,-91,ascendedcity]> with 'null'. 
00:21:25 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely'  action='(itemDrop[0]:SET:null)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 28) INJECT "CustomRegionOnPlayerBreaksBlock" 
                   ---------+ 
00:21:25 [INFO] +> Executing 'INJECT': script='s@CUSTOMREGIONONPLAYERBREAKSBLOCK (TASK)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 125) DEFINE "cuboids:<context.location.cuboids>" 
                   ---------+ 
00:21:25 [INFO]  Filled tag <context.location.cuboids> with 'li@'. 
00:21:25 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely'  action='(cuboids[0]:SET:li@)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 126) IF 
                   "<context.location.cuboids.contains_text[AlchemyStation]>" ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <context.location.cuboids.contains_text[AlchemyStation]> with 'false'. 
00:21:25 [INFO]  No part of the if command passed, no block will run. 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 129) IF 
                   "<context.location.cuboids.contains_text[TransmutationCircle]>" ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <context.location.cuboids.contains_text[TransmutationCircle]> with 'false'. 
00:21:25 [INFO]  No part of the if command passed, no block will run. 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 31) INJECT "MachineOnPlayerBreaksBlock" ---------+ 
00:21:25 [INFO] +> Executing 'INJECT': script='s@MACHINEONPLAYERBREAKSBLOCK (TASK)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 84) DEFINE "cubes:<context.location.cuboids>" 
                   ---------+ 
00:21:25 [INFO]  Filled tag <context.location.cuboids> with 'li@'. 
00:21:25 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely'  action='(cubes[0]:SET:li@)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 85) DEFINE "theCuboid" 
                   "<context.location.cuboids.filter[notable_name.starts_with[testmachine]].get[1]||null>" ---------+ 
00:21:25 [INFO]  Filled tag <context.location.cuboids.filter[notable_name.starts_with[testmachine]].get[1]||null> with 'null'. 
00:21:25 [INFO] +> Executing 'DEFINE': queue='CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely'  definition='thecuboid'  value='null' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 86) RUN "MachineCheck" "def:<[cubes]>|<[theCuboid]>" 
                   ---------+ 
00:21:25 [INFO]  Filled tag <[cubes]> with 'li@'. 
00:21:25 [INFO]  Filled tag <[theCuboid]> with 'null'. 
00:21:25 [INFO] +> Executing 'RUN': script='s@MACHINECHECK (TASK)'  definitions='li@|null' 
00:21:25 [INFO]  Adding definition 'cubes' as 
00:21:25 [INFO]  Adding definition 'theCuboid' as null 
00:21:25 [INFO]  Starting TimedQueue 'MACHINECHECK_WrappedJunkMagnificent' with player 'AshNCinder'... 
00:21:25 [INFO] +- Queue 'MACHINECHECK_WrappedJunkMagnificent' Executing: (line 90) IF "<[cubes].contains_text[testmachine]>" ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <[cubes].contains_text[testmachine]> with 'false'. 
00:21:25 [INFO]  No part of the if command passed, no block will run. 
00:21:25 [INFO]  Completing queue 'MACHINECHECK_WrappedJunkMagnificent' in 0ms. 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 34) INJECT "TelegraphOnPlayerBreaksBlock" ---------+ 
00:21:25 [INFO] +> Executing 'INJECT': script='s@TELEGRAPHONPLAYERBREAKSBLOCK (TASK)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 130) IF "<[itemDrop].contains_text[Telegraph]>" 
                   ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <[itemDrop].contains_text[Telegraph]> with 'false'. 
00:21:25 [INFO]  No part of the if command passed, no block will run. 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 37) INJECT "CandleOnPlayerBreaksBlock" ---------+ 
00:21:25 [INFO] +> Executing 'INJECT': script='s@CANDLEONPLAYERBREAKSBLOCK (TASK)' 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 113) IF "<[itemDrop].contains_text[Candle]>" 
                   ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <[itemDrop].contains_text[Candle]> with 'false'. 
00:21:25 [INFO]  No part of the if command passed, no block will run. 
00:21:25 [INFO] +- Queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' Executing: (line 40) IF "<[itemDrop]>" "!=" "null" ---------+ 
00:21:25 [INFO] +> Executing 'IF': use_braces='true' 
00:21:25 [INFO]  Filled tag <[itemDrop]> with 'null'. 
00:21:25 [INFO]  Logic='NEGATIVE', Comparable='Element(null)', Operator='EQUALS', ComparedTo='Element(null)' --> OUTCOME='false' 
00:21:25 [INFO]  No part of the if command passed, no block will run. 
00:21:25 [INFO]  Completing queue 'CUSTOMBLOCKSCONTROLLER_CeramicAthleticsLikely' in 2ms. 
00:21:26 [INFO]  Running script event 'PlayerLogin', event='player logs in' for script 'KERNEL' 
00:21:26 [INFO]  Starting InstantQueue 'KERNEL_StudioUponY' with player 'Silver___'... 
00:21:26 [INFO] +- Queue 'KERNEL_StudioUponY' Executing: (line 29) WAIT "1s" ---------+ 
00:21:26 [INFO] +> Executing 'WAIT': queue='q@KERNEL_StudioUponY'  delay='d@1.0s (1s)' 
00:21:26 [INFO]  Forcing queue KERNEL_StudioUponY into a timed queue... 
00:21:26 [INFO]  Completing queue 'KERNEL_StudioUponY' in 0ms. 
00:21:26 [INFO]  Starting TimedQueue 'KERNEL_StudioUponY' with player 'Silver___'... 
00:21:26 [INFO]  Running script event 'PlayerLogin', event='player logs in' for script 'AVENGERSASSEMBLE' 
00:21:26 [INFO]  Starting InstantQueue 'AVENGERSASSEMBLE_NcManuallySoa' with player 'Silver___'... 
00:21:26 [INFO] +- Queue 'AVENGERSASSEMBLE_NcManuallySoa' Executing: (line 15) INJECT "AssembleOnPlayerLogsIn" ---------+ 
00:21:26 [INFO] +> Executing 'INJECT': script='s@ASSEMBLEONPLAYERLOGSIN (TASK)' 
00:21:26 [INFO] +- Queue 'AVENGERSASSEMBLE_NcManuallySoa' Executing: (line 181) IF "<server.has_flag[<player.name>_assembleTimeout]>" 
                   ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <player.name> with 'Silver___'. 
00:21:26 [INFO]  Filled tag <server.has_flag[Silver____assembleTimeout]> with 'false'. 
00:21:26 [INFO]  No part of the if command passed, no block will run. 
00:21:26 [INFO]  Completing queue 'AVENGERSASSEMBLE_NcManuallySoa' in 0ms. 
00:21:26 [INFO]  Running script event 'PlayerJoins', event='player joins' for script 'KERNEL' 
00:21:26 [INFO]  Starting InstantQueue 'KERNEL_LgRequiresNewton' with player 'Silver___'... 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 32) INJECT "SkinSave" ---------+ 
00:21:26 [INFO] +> Executing 'INJECT': script='s@SKINSAVE (TASK)' 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 33) INJECT "PlayerControllerOnJoin" ---------+ 
00:21:26 [INFO] +> Executing 'INJECT': script='s@PLAYERCONTROLLERONJOIN (TASK)' 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 18) WAIT "0.1s" ---------+ 
00:21:26 [INFO] +> Executing 'WAIT': queue='q@KERNEL_LgRequiresNewton'  delay='d@0.1s (0.1s)' 
00:21:26 [INFO]  Forcing queue KERNEL_LgRequiresNewton into a timed queue... 
00:21:26 [INFO]  Completing queue 'KERNEL_LgRequiresNewton' in 1ms. 
00:21:26 [INFO]  Starting TimedQueue 'KERNEL_LgRequiresNewton' with player 'Silver___'... 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 19) IF "!<player.has_flag[Character]>" ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <player.has_flag[Character]> with 'true'. 
00:21:26 [INFO]  No part of the if command passed, no block will run. 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 24) IF "!<player.has_flag[CharacterGUI]>" ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <player.has_flag[CharacterGUI]> with 'true'. 
00:21:26 [INFO]  No part of the if command passed, no block will run. 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 27) IF "!<server.has_file[CharacterSheets/<player.uuid>/base.yml]>" 
                   ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <player.uuid> with '46588dce-dd0e-49d4-a4b5-9f33f47eff8b'. 
00:21:26 [INFO]  Filled tag <server.has_file[CharacterSheets/46588dce-dd0e-49d4-a4b5-9f33f47eff8b/base.yml]> with 'true'. 
00:21:26 [INFO]  No part of the if command passed, running ELSE block. 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 38) NARRATE "All loaded!" "format:CharacterFormat" ---------+ 
00:21:26 [INFO] +> Executing 'NARRATE': Narrating='All loaded!'  Targets='[p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b (Silver___)]'  
                   format='s@CHARACTERFORMAT (FORMAT)' 
00:21:26 [INFO]  Filled tag <&b> with ''. 
00:21:26 [INFO]  Filled tag <&co> with ':'. 
00:21:26 [INFO]  Filled tag <&f> with ''. 
00:21:26 [INFO]  Filled tag <element[All loaded&exc].unescaped> with 'All loaded!'. 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 39) IF "!<player.has_flag[CurrentCharacter]>" ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <player.has_flag[CurrentCharacter]> with 'true'. 
00:21:26 [INFO]  No part of the if command passed, no block will run. 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 34) INJECT "LetterOnJoin" ---------+ 
00:21:26 [INFO] +> Executing 'INJECT': script='s@LETTERONJOIN (TASK)' 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 7) DEFINE "character:<proc[GetCharacterName].context[<player>]>" 
                   ---------+ 
00:21:26 [INFO]  Filled tag <player> with 'p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b (Silver___)'. 
00:21:26 [INFO]  Adding definition 'player' as p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b 
00:21:26 [INFO]  Starting InstantQueue 'GETCHARACTERNAME_FeofRioConcentration' with player 'Silver___'... 
00:21:26 [INFO] +- Queue 'GETCHARACTERNAME_FeofRioConcentration' Executing: (line 256) DEFINE 
                   "name:<proc[GetCharacterYAML].context[<[player]>|Info.Character_Name]>" ---------+ 
00:21:26 [INFO]  Filled tag <[player]> with 'p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b (Silver___)'. 
00:21:26 [INFO]  Adding definition 'player' as p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b 
00:21:26 [INFO]  Adding definition 'key' as Info.Character_Name 
00:21:26 [INFO]  Starting InstantQueue 'GETCHARACTERYAML_FlashHeathCompletion' with player 'Silver___'... 
00:21:26 [INFO] +- Queue 'GETCHARACTERYAML_FlashHeathCompletion' Executing: (line 283) DEFINE "character:<[player].flag[CurrentCharacter]>" 
                   ---------+ 
00:21:26 [INFO]  Filled tag <[player].flag[CurrentCharacter]> with 'li@ 1'. 
00:21:26 [INFO] +> Executing 'DEFINE': queue='GETCHARACTERYAML_FlashHeathCompletion'  action='(character[0]:SET:1)' 
00:21:26 [INFO] +- Queue 'GETCHARACTERYAML_FlashHeathCompletion' Executing: (line 284) YAML 
                   "load:/CharacterSheets/<[player].uuid>/<[character]>.yml" "id:<[character]>" ---------+ 
00:21:26 [INFO]  Filled tag <[player].uuid> with '46588dce-dd0e-49d4-a4b5-9f33f47eff8b'. 
00:21:26 [INFO]  Filled tag <[character]> with '1'. 
00:21:26 [INFO]  Filled tag <[character]> with '1'. 
00:21:26 [INFO] +> Executing 'YAML': id='1'  action='LOAD'  filename='/CharacterSheets/46588dce-dd0e-49d4-a4b5-9f33f47eff8b/1.yml'  value='' 
00:21:26 [INFO] +- Queue 'GETCHARACTERYAML_FlashHeathCompletion' Executing: (line 285) DEFINE "result:<yaml[<[character]>].read[<[key]>]>" 
                   ---------+ 
00:21:26 [INFO]  Filled tag <[character]> with '1'. 
00:21:26 [INFO]  Filled tag <[key]> with 'Info.Character_Name'. 
00:21:26 [INFO]  Filled tag <yaml[1].read[Info.Character_Name]> with 'ZarasilMkani'. 
00:21:26 [INFO] +> Executing 'DEFINE': queue='GETCHARACTERYAML_FlashHeathCompletion'  action='(result[0]:SET:ZarasilMkani)' 
00:21:26 [INFO] +- Queue 'GETCHARACTERYAML_FlashHeathCompletion' Executing: (line 286) YAML "unload" "id:<[character]>" ---------+ 
00:21:26 [INFO]  Filled tag <[character]> with '1'. 
00:21:26 [INFO] +> Executing 'YAML': id='1'  action='UNLOAD'  value='' 
00:21:26 [INFO] +- Queue 'GETCHARACTERYAML_FlashHeathCompletion' Executing: (line 287) DETERMINE "<[result]>" ---------+ 
00:21:26 [INFO]  Filled tag <[result]> with 'ZarasilMkani'. 
00:21:26 [INFO] +> Executing 'DETERMINE': outcome='ZarasilMkani'  passively='false'  Queue='q@GETCHARACTERYAML_FlashHeathCompletion' 
00:21:26 [INFO]  Completing queue 'GETCHARACTERYAML_FlashHeathCompletion' in 0ms. 
00:21:26 [INFO]  Filled tag <proc[GetCharacterYAML].context[p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b|Info.Character_Name]> with 'ZarasilMkani'. 
00:21:26 [INFO] +> Executing 'DEFINE': queue='GETCHARACTERNAME_FeofRioConcentration'  action='(name[0]:SET:ZarasilMkani)' 
00:21:26 [INFO] +- Queue 'GETCHARACTERNAME_FeofRioConcentration' Executing: (line 257) IF "<[name]>" "==" 
                   "yaml[<&lt>[character]<&gt>].read[<&lt>[key]<&gt>]" ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <[name]> with 'ZarasilMkani'. 
00:21:26 [INFO]  Filled tag <&lt> with '<'. 
00:21:26 [INFO]  Filled tag <&gt> with '>'. 
00:21:26 [INFO]  Filled tag <&lt> with '<'. 
00:21:26 [INFO]  Filled tag <&gt> with '>'. 
00:21:26 [INFO]  Comparable='Element(ZarasilMkani)', Operator='EQUALS', ComparedTo='Element(yaml[<[character]>].read[<[key]>])' --> 
                   OUTCOME='false' 
00:21:26 [INFO]  No part of the if command passed, running ELSE block. 
00:21:26 [INFO] +- Queue 'GETCHARACTERNAME_FeofRioConcentration' Executing: (line 260) DETERMINE "<[name]>" ---------+ 
00:21:26 [INFO]  Filled tag <[name]> with 'ZarasilMkani'. 
00:21:26 [INFO] +> Executing 'DETERMINE': outcome='ZarasilMkani'  passively='false'  Queue='q@GETCHARACTERNAME_FeofRioConcentration' 
00:21:26 [INFO]  Completing queue 'GETCHARACTERNAME_FeofRioConcentration' in 1ms. 
00:21:26 [INFO]  Filled tag <proc[GetCharacterName].context[p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b]> with 'ZarasilMkani'. 
00:21:26 [INFO] +> Executing 'DEFINE': queue='KERNEL_LgRequiresNewton'  action='(character[0]:SET:ZarasilMkani)' 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 8) IF "!<player.has_flag[<[character]>_Letter]>" "&&" 
                   "<player.has_flag[character]>" ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <[character]> with 'ZarasilMkani'. 
00:21:26 [INFO]  Filled tag <player.has_flag[ZarasilMkani_Letter]> with 'true'. 
00:21:26 [INFO]  No part of the if command passed, no block will run. 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 11) DEFINE "inventory:in@<[character]>_Mailbox" ---------+ 
00:21:26 [INFO]  Filled tag <[character]> with 'ZarasilMkani'. 
00:21:26 [INFO] +> Executing 'DEFINE': queue='KERNEL_LgRequiresNewton'  action='(inventory[0]:SET:in@ZarasilMkani_Mailbox)' 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 12) IF "<[inventory].first_empty>" "!=" "1" ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <[inventory].first_empty> with '1'. 
00:21:26 [INFO]  Logic='NEGATIVE', Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:26 [INFO]  No part of the if command passed, running ELSE block. 
00:21:26 [INFO] +- Queue 'KERNEL_LgRequiresNewton' Executing: (line 15) NARRATE "You have no new letters." "format:LetterFormat" ---------+ 
00:21:26 [INFO] +> Executing 'NARRATE': Narrating='You have no new letters.'  Targets='[p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b (Silver___)]'  
                   format='s@LETTERFORMAT (FORMAT)' 
00:21:26 [INFO]  Filled tag <&a> with ''. 
00:21:26 [INFO]  Filled tag <&co> with ':'. 
00:21:26 [INFO]  Filled tag <&f> with ''. 
00:21:26 [INFO]  Filled tag <element[You have no new letters&dot].unescaped> with 'You have no new letters.'. 
00:21:26 [INFO]  Completing queue 'KERNEL_LgRequiresNewton' in 139ms. 
00:21:26 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:26 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:26 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:26 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:26 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:26 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:26 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:26 [INFO] +- Foreach loop 14 ---------+ 
00:21:26 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:26 [INFO] +> Executing 'IF': use_braces='true' 
00:21:26 [INFO]  Filled tag <[station]> with '-762,4,-28,new_buildworld'. 
00:21:26 [INFO]  Filled tag <server.flag[Telegraph_-762,4,-28,new_buildworld_Channel]> with '1'. 
00:21:26 [INFO]  Filled tag <[channel]> with '1'. 
00:21:26 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:26 [INFO]  If command passed, running block. 
00:21:26 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:26 [INFO]  Filled tag <[station]> with '-762,4,-28,new_buildworld'. 
00:21:26 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@-762,4,-28,new_buildworld)' 
00:21:26 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:26 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='5' 
00:21:26 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 83) NARRATE "<&a>*The red light on the Telegraph box begins 
                   to blink!*" "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:26 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '83' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:26 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '83' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:26 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:26 [INFO]  Filled tag <&a> with ''. 
00:21:26 [INFO] +> Executing 'NARRATE': Narrating='*The red light on the Telegraph box begins to blink!*'  Targets='' 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:27 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:27 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:27 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:27 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:27 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:27 [INFO] +- Foreach loop 15 ---------+ 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:27 [INFO] +> Executing 'IF': use_braces='true' 
00:21:27 [INFO]  Filled tag <[station]> with '-762,4,-28,new_buildworld'. 
00:21:27 [INFO]  Filled tag <server.flag[Telegraph_-762,4,-28,new_buildworld_Channel]> with '1'. 
00:21:27 [INFO]  Filled tag <[channel]> with '1'. 
00:21:27 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:27 [INFO]  If command passed, running block. 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:27 [INFO]  Filled tag <[station]> with '-762,4,-28,new_buildworld'. 
00:21:27 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@-762,4,-28,new_buildworld)' 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:27 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='1' 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 79) NARRATE "<&a>*The Telegraph Line whirrs to life.*" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:27 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '79' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:27 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '79' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:27 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:27 [INFO]  Filled tag <&a> with ''. 
00:21:27 [INFO] +> Executing 'NARRATE': Narrating='*The Telegraph Line whirrs to life.*'  Targets='' 
00:21:27 [INFO] +- Queue 'KERNEL_StudioUponY' Executing: (line 30) INJECT "QuestOnPlayerLogin" ---------+ 
00:21:27 [INFO] +> Executing 'INJECT': script='s@QUESTONPLAYERLOGIN (TASK)' 
00:21:27 [INFO] +- Queue 'KERNEL_StudioUponY' Executing: (line 64) WAIT "1s" ---------+ 
00:21:27 [INFO] +> Executing 'WAIT': queue='q@KERNEL_StudioUponY'  delay='d@1.0s (1s)' 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:27 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:27 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:27 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:27 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:27 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:27 [INFO] +- Foreach loop 16 ---------+ 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:27 [INFO] +> Executing 'IF': use_braces='true' 
00:21:27 [INFO]  Filled tag <[station]> with '1745,4,-1619,buildworld'. 
00:21:27 [INFO]  Filled tag <server.flag[Telegraph_1745,4,-1619,buildworld_Channel]> with '1'. 
00:21:27 [INFO]  Filled tag <[channel]> with '1'. 
00:21:27 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:27 [INFO]  If command passed, running block. 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:27 [INFO]  Filled tag <[station]> with '1745,4,-1619,buildworld'. 
00:21:27 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@1745,4,-1619,buildworld)' 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:27 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='2' 
00:21:27 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 80) NARRATE "<&a>*--Whirr--*" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:27 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '80' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:27 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '80' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:27 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:27 [INFO]  Filled tag <&a> with ''. 
00:21:27 [INFO] +> Executing 'NARRATE': Narrating='*--Whirr--*'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 17 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '1750,4,-1634,buildworld'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_1750,4,-1634,buildworld_Channel]> with '7'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(7.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 18 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '1745,4,-1619,buildworld'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_1745,4,-1619,buildworld_Channel]> with '1'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:28 [INFO]  If command passed, running block. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:28 [INFO]  Filled tag <[station]> with '1745,4,-1619,buildworld'. 
00:21:28 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@1745,4,-1619,buildworld)' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:28 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='4' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 82) NARRATE "<&a>*The box begins to hum<&co> a 
                   transmission?*" "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '82' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '82' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <&a> with ''. 
00:21:28 [INFO]  Filled tag <&co> with ':'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='*The box begins to hum: a transmission?*'  Targets='' 
00:21:28 [INFO] +- Queue 'KERNEL_StudioUponY' Executing: (line 65) INJECT "QuestLoginScript" ---------+ 
00:21:28 [INFO] +> Executing 'INJECT': script='s@QUESTLOGINSCRIPT (TASK)' 
00:21:28 [INFO] +- Queue 'KERNEL_StudioUponY' Executing: (line 178) DEFINE "character:<proc[GetCharacterName].context[<player>]||null>" 
                   ---------+ 
00:21:28 [INFO]  Filled tag <player> with 'p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b (Silver___)'. 
00:21:28 [INFO]  Adding definition 'player' as p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b 
00:21:28 [INFO]  Starting InstantQueue 'GETCHARACTERNAME_SbjctArmeniaEcuador' with player 'Silver___'... 
00:21:28 [INFO] +- Queue 'GETCHARACTERNAME_SbjctArmeniaEcuador' Executing: (line 256) DEFINE 
                   "name:<proc[GetCharacterYAML].context[<[player]>|Info.Character_Name]>" ---------+ 
00:21:28 [INFO]  Filled tag <[player]> with 'p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b (Silver___)'. 
00:21:28 [INFO]  Adding definition 'player' as p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b 
00:21:28 [INFO]  Adding definition 'key' as Info.Character_Name 
00:21:28 [INFO]  Starting InstantQueue 'GETCHARACTERYAML_PoorContainedGsm' with player 'Silver___'... 
00:21:28 [INFO] +- Queue 'GETCHARACTERYAML_PoorContainedGsm' Executing: (line 283) DEFINE "character:<[player].flag[CurrentCharacter]>" 
                   ---------+ 
00:21:28 [INFO]  Filled tag <[player].flag[CurrentCharacter]> with 'li@ 1'. 
00:21:28 [INFO] +> Executing 'DEFINE': queue='GETCHARACTERYAML_PoorContainedGsm'  action='(character[0]:SET:1)' 
00:21:28 [INFO] +- Queue 'GETCHARACTERYAML_PoorContainedGsm' Executing: (line 284) YAML 
                   "load:/CharacterSheets/<[player].uuid>/<[character]>.yml" "id:<[character]>" ---------+ 
00:21:28 [INFO]  Filled tag <[player].uuid> with '46588dce-dd0e-49d4-a4b5-9f33f47eff8b'. 
00:21:28 [INFO]  Filled tag <[character]> with '1'. 
00:21:28 [INFO]  Filled tag <[character]> with '1'. 
00:21:28 [INFO] +> Executing 'YAML': id='1'  action='LOAD'  filename='/CharacterSheets/46588dce-dd0e-49d4-a4b5-9f33f47eff8b/1.yml'  value='' 
00:21:28 [INFO] +- Queue 'GETCHARACTERYAML_PoorContainedGsm' Executing: (line 285) DEFINE "result:<yaml[<[character]>].read[<[key]>]>" 
                   ---------+ 
00:21:28 [INFO]  Filled tag <[character]> with '1'. 
00:21:28 [INFO]  Filled tag <[key]> with 'Info.Character_Name'. 
00:21:28 [INFO]  Filled tag <yaml[1].read[Info.Character_Name]> with 'ZarasilMkani'. 
00:21:28 [INFO] +> Executing 'DEFINE': queue='GETCHARACTERYAML_PoorContainedGsm'  action='(result[0]:SET:ZarasilMkani)' 
00:21:28 [INFO] +- Queue 'GETCHARACTERYAML_PoorContainedGsm' Executing: (line 286) YAML "unload" "id:<[character]>" ---------+ 
00:21:28 [INFO]  Filled tag <[character]> with '1'. 
00:21:28 [INFO] +> Executing 'YAML': id='1'  action='UNLOAD'  value='' 
00:21:28 [INFO] +- Queue 'GETCHARACTERYAML_PoorContainedGsm' Executing: (line 287) DETERMINE "<[result]>" ---------+ 
00:21:28 [INFO]  Filled tag <[result]> with 'ZarasilMkani'. 
00:21:28 [INFO] +> Executing 'DETERMINE': outcome='ZarasilMkani'  passively='false'  Queue='q@GETCHARACTERYAML_PoorContainedGsm' 
00:21:28 [INFO]  Completing queue 'GETCHARACTERYAML_PoorContainedGsm' in 0ms. 
00:21:28 [INFO]  Filled tag <proc[GetCharacterYAML].context[p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b|Info.Character_Name]> with 'ZarasilMkani'. 
00:21:28 [INFO] +> Executing 'DEFINE': queue='GETCHARACTERNAME_SbjctArmeniaEcuador'  action='(name[0]:SET:ZarasilMkani)' 
00:21:28 [INFO] +- Queue 'GETCHARACTERNAME_SbjctArmeniaEcuador' Executing: (line 257) IF "<[name]>" "==" 
                   "yaml[<&lt>[character]<&gt>].read[<&lt>[key]<&gt>]" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[name]> with 'ZarasilMkani'. 
00:21:28 [INFO]  Filled tag <&lt> with '<'. 
00:21:28 [INFO]  Filled tag <&gt> with '>'. 
00:21:28 [INFO]  Filled tag <&lt> with '<'. 
00:21:28 [INFO]  Filled tag <&gt> with '>'. 
00:21:28 [INFO]  Comparable='Element(ZarasilMkani)', Operator='EQUALS', ComparedTo='Element(yaml[<[character]>].read[<[key]>])' --> 
                   OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, running ELSE block. 
00:21:28 [INFO] +- Queue 'GETCHARACTERNAME_SbjctArmeniaEcuador' Executing: (line 260) DETERMINE "<[name]>" ---------+ 
00:21:28 [INFO]  Filled tag <[name]> with 'ZarasilMkani'. 
00:21:28 [INFO] +> Executing 'DETERMINE': outcome='ZarasilMkani'  passively='false'  Queue='q@GETCHARACTERNAME_SbjctArmeniaEcuador' 
00:21:28 [INFO]  Completing queue 'GETCHARACTERNAME_SbjctArmeniaEcuador' in 0ms. 
00:21:28 [INFO]  Filled tag <proc[GetCharacterName].context[p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b]||null> with 'ZarasilMkani'. 
00:21:28 [INFO] +> Executing 'DEFINE': queue='KERNEL_StudioUponY'  action='(character[0]:SET:ZarasilMkani)' 
00:21:28 [INFO] +- Queue 'KERNEL_StudioUponY' Executing: (line 179) IF "<[character]>" "==" "null" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[character]> with 'ZarasilMkani'. 
00:21:28 [INFO]  Comparable='Element(ZarasilMkani)', Operator='EQUALS', ComparedTo='Element(null)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'KERNEL_StudioUponY' Executing: (line 182) IF "!<player.has_flag[<[character]>_QuestJournal]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[character]> with 'ZarasilMkani'. 
00:21:28 [INFO]  Filled tag <player.has_flag[ZarasilMkani_QuestJournal]> with 'true'. 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'KERNEL_StudioUponY' Executing: (line 186) FLAG "player" "<[character]>_QuestJournalMenu:1" ---------+ 
00:21:28 [INFO]  Filled tag <[character]> with 'ZarasilMkani'. 
00:21:28 [INFO] +> Executing 'FLAG': flag_name='ZARASILMKANI_QUESTJOURNALMENU'  Action/Value='SET_VALUE(1)'  
                   flag_target='p@46588dce-dd0e-49d4-a4b5-9f33f47eff8b (Silver___)' 
00:21:28 [INFO]  Completing queue 'KERNEL_StudioUponY' in 2244ms. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 19 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '1750,4,-1634,buildworld'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_1750,4,-1634,buildworld_Channel]> with '7'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(7.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 20 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '1750,4,-1634,buildworld'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_1750,4,-1634,buildworld_Channel]> with '7'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(7.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 21 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '1744,4,-1618,buildworld'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_1744,4,-1618,buildworld_Channel]> with '7'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(7.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 22 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '1604,4,-1333,buildworld'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_1604,4,-1333,buildworld_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 23 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '1641,4,-1341,buildworld'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_1641,4,-1341,buildworld_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 24 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1129,70,-113,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1129,70,-113,aetheria_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 25 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1129,70,-113,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1129,70,-113,aetheria_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 26 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1141,66,-193,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1141,66,-193,aetheria_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 27 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1513,74,-34,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1513,74,-34,aetheria_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 28 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1513,74,-34,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1513,74,-34,aetheria_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 29 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1513,74,-34,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1513,74,-34,aetheria_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 30 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1513,74,-34,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1513,74,-34,aetheria_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 31 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1512,74,-32,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1512,74,-32,aetheria_Channel]> with '1'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:28 [INFO]  If command passed, running block. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:28 [INFO]  Filled tag <[station]> with '-1512,74,-32,aetheria'. 
00:21:28 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@-1512,74,-32,aetheria)' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:28 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='5' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 83) NARRATE "<&a>*The red light on the Telegraph box begins 
                   to blink!*" "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '83' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '83' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <&a> with ''. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='*The red light on the Telegraph box begins to blink!*'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 32 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-1512,74,-37,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-1512,74,-37,aetheria_Channel]> with '2'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(2.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='false' 
00:21:28 [INFO]  No part of the if command passed, no block will run. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:28 [INFO] +- Foreach loop 33 ---------+ 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:28 [INFO] +> Executing 'IF': use_braces='true' 
00:21:28 [INFO]  Filled tag <[station]> with '-388,114,-671,aetheria'. 
00:21:28 [INFO]  Filled tag <server.flag[Telegraph_-388,114,-671,aetheria_Channel]> with '1'. 
00:21:28 [INFO]  Filled tag <[channel]> with '1'. 
00:21:28 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:28 [INFO]  If command passed, running block. 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:28 [INFO]  Filled tag <[station]> with '-388,114,-671,aetheria'. 
00:21:28 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@-388,114,-671,aetheria)' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:28 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='5' 
00:21:28 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 83) NARRATE "<&a>*The red light on the Telegraph box begins 
                   to blink!*" "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '83' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:28 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '83' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:28 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:28 [INFO]  Filled tag <&a> with ''. 
00:21:28 [INFO] +> Executing 'NARRATE': Narrating='*The red light on the Telegraph box begins to blink!*'  Targets='' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:29 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:29 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:29 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:29 [INFO] +- Foreach loop 34 ---------+ 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:29 [INFO] +> Executing 'IF': use_braces='true' 
00:21:29 [INFO]  Filled tag <[station]> with '1659,4,-1355,buildworld'. 
00:21:29 [INFO]  Filled tag <server.flag[Telegraph_1659,4,-1355,buildworld_Channel]> with '1'. 
00:21:29 [INFO]  Filled tag <[channel]> with '1'. 
00:21:29 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:29 [INFO]  If command passed, running block. 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:29 [INFO]  Filled tag <[station]> with '1659,4,-1355,buildworld'. 
00:21:29 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@1659,4,-1355,buildworld)' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:29 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='2' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 80) NARRATE "<&a>*--Whirr--*" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '80' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '80' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:29 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:29 [INFO]  Filled tag <&a> with ''. 
00:21:29 [INFO] +> Executing 'NARRATE': Narrating='*--Whirr--*'  Targets='' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:29 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@'. 
00:21:29 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:29 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:29 [INFO] +- Foreach loop 35 ---------+ 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:29 [INFO] +> Executing 'IF': use_braces='true' 
00:21:29 [INFO]  Filled tag <[station]> with '-210,4,-57,new_buildworld'. 
00:21:29 [INFO]  Filled tag <server.flag[Telegraph_-210,4,-57,new_buildworld_Channel]> with '1'. 
00:21:29 [INFO]  Filled tag <[channel]> with '1'. 
00:21:29 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:29 [INFO]  If command passed, running block. 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:29 [INFO]  Filled tag <[station]> with '-210,4,-57,new_buildworld'. 
00:21:29 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@-210,4,-57,new_buildworld)' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:29 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='1' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 79) NARRATE "<&a>*The Telegraph Line whirrs to life.*" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '79' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '79' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:29 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@ p@c217a64a-b283-4a63-87df-816cb9af850c (Twisted_Fractal)'. 
00:21:29 [INFO]  Filled tag <&a> with ''. 
00:21:29 [INFO] +> Executing 'NARRATE': Narrating='*The Telegraph Line whirrs to life.*'  Targets='[p@c217a64a-b283-4a63-87df-816cb9af850c 
                   (Twisted_Fractal)]' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:29 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@ p@c217a64a-b283-4a63-87df-816cb9af850c (Twisted_Fractal)'. 
00:21:29 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:29 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='[p@c217a64a-b283-4a63-87df-816cb9af850c (Twisted_Fractal)]' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:29 [INFO] +- Foreach loop 36 ---------+ 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:29 [INFO] +> Executing 'IF': use_braces='true' 
00:21:29 [INFO]  Filled tag <[station]> with '-210,4,-57,new_buildworld'. 
00:21:29 [INFO]  Filled tag <server.flag[Telegraph_-210,4,-57,new_buildworld_Channel]> with '1'. 
00:21:29 [INFO]  Filled tag <[channel]> with '1'. 
00:21:29 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:29 [INFO]  If command passed, running block. 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:29 [INFO]  Filled tag <[station]> with '-210,4,-57,new_buildworld'. 
00:21:29 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@-210,4,-57,new_buildworld)' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:29 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='3' 
00:21:29 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 81) NARRATE "<&a>*--Bzzt!--*" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '81' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:29 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '81' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:29 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@ p@c217a64a-b283-4a63-87df-816cb9af850c (Twisted_Fractal)'. 
00:21:29 [INFO]  Filled tag <&a> with ''. 
00:21:29 [INFO] +> Executing 'NARRATE': Narrating='*--Bzzt!--*'  Targets='[p@c217a64a-b283-4a63-87df-816cb9af850c (Twisted_Fractal)]' 
00:21:30 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:30 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:30 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:30 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@ p@c217a64a-b283-4a63-87df-816cb9af850c (Twisted_Fractal)'. 
00:21:30 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:30 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='[p@c217a64a-b283-4a63-87df-816cb9af850c (Twisted_Fractal)]' 
00:21:30 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:30 [INFO] +- Foreach loop 37 ---------+ 
00:21:30 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 76) IF "<server.flag[Telegraph_<[station]>_Channel]>" "==" 
                   "<[channel]>" ---------+ 
00:21:30 [INFO] +> Executing 'IF': use_braces='true' 
00:21:30 [INFO]  Filled tag <[station]> with '-226,4,-56,new_buildworld'. 
00:21:30 [INFO]  Filled tag <server.flag[Telegraph_-226,4,-56,new_buildworld_Channel]> with '1'. 
00:21:30 [INFO]  Filled tag <[channel]> with '1'. 
00:21:30 [INFO]  Comparable='Decimal(1.0)', Operator='EQUALS', ComparedTo='Decimal(1.0)' --> OUTCOME='true' 
00:21:30 [INFO]  If command passed, running block. 
00:21:30 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 77) DEFINE "locale:l@<[station]>" ---------+ 
00:21:30 [INFO]  Filled tag <[station]> with '-226,4,-56,new_buildworld'. 
00:21:30 [INFO] +> Executing 'DEFINE': queue='TELEGRAPHBROADCAST_TaiwanReminderPaths'  action='(locale[0]:SET:l@-226,4,-56,new_buildworld)' 
00:21:30 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 78) RANDOM ---------+ 
00:21:30 [INFO] +> Executing 'RANDOM': possibilities='5'  choice='4' 
00:21:30 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 82) NARRATE "<&a>*The box begins to hum<&co> a 
                   transmission?*" "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:30 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '82' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:30 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '82' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:30 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@ p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'. 
00:21:30 [INFO]  Filled tag <&a> with ''. 
00:21:30 [INFO]  Filled tag <&co> with ':'. 
00:21:30 [INFO] +> Executing 'NARRATE': Narrating='*The box begins to hum: a transmission?*'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 
                   (Insilvon)]' 
00:21:30 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 84) NARRATE "<[message]>" 
                   "targets:<[locale].find.players.within[<5.5>]>" ---------+ 
00:21:30 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: No tag-base handler for '5.5'. 
00:21:30 [INFO]  ERROR in script 'TELEGRAPHBROADCAST' in queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' while executing command 'NARRATE' in 
                   file 'scripts/Utilities/TelegraphScripts.dsc' on line '84' with player 'p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'!
     Error Message: Tag <5.5> is invalid! 
00:21:30 [INFO]  Filled tag <[locale].find.players.within[5.5]> with 'li@ p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)'. 
00:21:30 [INFO]  Filled tag <[message]> with '>---...'. 
00:21:30 [INFO] +> Executing 'NARRATE': Narrating='>---...'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]' 
00:21:30 [INFO] +- Queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' Executing: (line 0) FOREACH " CALLBACK" "as:station" ---------+ 
00:21:30 [INFO] +- Foreach loop complete ---------+ 
00:21:30 [INFO]  Completing queue 'TELEGRAPHBROADCAST_TaiwanReminderPaths' in 9458ms.